/*
Theme Name: My Custom Theme
Theme URI: http://yourdomain.com
Author: Your Name
Author URI: http://yourdomain.com
Description: A custom theme converted from HTML.
Version: 1.0
*/




/* Modern Color Scheme */
:root {
    --maroon: #800000;
    --maroon-dark: #600000;
    --maroon-light: #a00000;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #eeeeee;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
}

/* Modern Header Styles */
.modern-header {
    background-color: var(--maroon);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    opacity: 0.9;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Main Content Styles */
main {
    width: 90%;
    max-width: 1200px;
    margin: 3rem auto;
    min-height: 60vh;
}

h1, h2, h3 {
    color: var(--maroon);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

section {
    margin-bottom: 3rem;
}

/* Modern Button Styles */
.btn {
    display: inline-block;
    background-color: var(--maroon);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: var(--maroon);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Page Specific Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Page Specific Styles */
.about-content {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.values-list {
    margin-left: 1.5rem;
    line-height: 2;
}

/* Contact Page Specific Styles */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--maroon);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        padding: 2rem;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Subtle animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .about-hero, .contact-hero {
    animation: fadeIn 0.6s ease-out;
}


/* Contact Form Status Messages */
#form-status {
    margin-top: 1.5rem;
}

.success-message {
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #2e7d32;
}

.error-message {
    color: #c62828;
    background-color: #ffebee;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #c62828;
}

/* Form input focus styles */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.2);
}

/* Services Page Specific Styles */
.hero {
    background: linear-gradient(rgba(128, 0, 0, 0.8), rgba(128, 0, 0, 0.9));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--maroon);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }
}









/* Service Detail Page Styles */
.service-hero {
    background: linear-gradient(rgba(128, 0, 0, 0.8), rgba(128, 0, 0, 0.9));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.service-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.service-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.service-details {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-container {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: -3rem;
    position: relative;
}

.service-features {
    margin: 2.5rem 0;
}

.service-features ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: flex-start;
}

.service-features li:before {
    content: "•";
    color: var(--maroon);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
}

.service-cta {
    background-color: var(--off-white);
    border-left: 4px solid var(--maroon);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-radius: 4px;
}

.service-cta p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--maroon);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 1rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .service-container {
        padding: 1.5rem;
        margin-top: -1.5rem;
    }
    
    .service-cta p {
        font-size: 1.1rem;
    }
}