

/* Modern Reset */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Root Variables */
        :root {
            --primary-gold: #C49B3C;
            --primary-dark: #1A4B3A;
            --primary-red: #B22222;
            --accent-blue: #2C5F7C;
            --neutral-light: #F8F9FA;
            --neutral-medium: #E9ECEF;
            --neutral-dark: #212529;
            --text-primary: #2C3E50;
            --text-secondary: #5D6D7E;
            --gradient-primary: linear-gradient(135deg, #1A4B3A 0%, #2C5F7C 100%);
            --gradient-gold: linear-gradient(135deg, #C49B3C 0%, #E6C068 100%);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base Styles */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--neutral-light);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5em;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Enhanced Header with Hero Background */
        header {
            background: var(--gradient-primary);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
            padding: 12px 0;
            box-shadow: var(--shadow-medium);
            background-color:beige;
        }

        header.scrolled {
            background: var(--gradient-primary);
            box-shadow: var(--shadow-strong);
            padding: 8px 0;
        }

        .logo-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            margin-right: 12px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        .logo:hover img {
            transform: scale(1.05);
            box-shadow: var(--shadow-medium);
        }

        .company-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 18px;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        /* Enhanced Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }

        nav ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: white;
            text-decoration: none;
            padding: 12px 16px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
        }

        nav ul li a:hover,
        nav ul li a.active {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        nav ul li a i {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Hero Section */
        #home.hero {
            background: var(--gradient-primary);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            color: white;
            padding: 40px 0;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            line-height: 1.7;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            background: var(--gradient-gold);
            color: var(--primary-dark);
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo-container {
                flex-wrap: wrap;
            }

            .company-name {
                font-size: 16px;
            }

            .logo img {
                width: 40px;
                height: 40px;
                margin-right: 8px;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--gradient-primary);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: var(--shadow-medium);
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 8px;
            }

            nav ul li {
                width: 100%;
            }

            nav ul li a {
                width: 100%;
                justify-content: flex-start;
                padding: 16px 20px;
                font-size: 16px;
                border-radius: 12px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            #home.hero {
                padding-top: 120px;
            }
        }

        @media (max-width: 480px) {
            .company-name {
                font-size: 14px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            nav ul li a {
                font-size: 15px;
                padding: 14px 16px;
            }
        }
        /* Modern Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-gold: #C49B3C;
    --primary-dark: #1A4B3A;
    --primary-red: #B22222;
    --accent-blue: #2C5F7C;
    --neutral-light: #F8F9FA;
    --neutral-medium: #E9ECEF;
    --neutral-dark: #212529;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --gradient-primary: linear-gradient(135deg, #1A4B3A 0%, #2C5F7C 100%);
    --gradient-gold: linear-gradient(135deg, #C49B3C 0%, #E6C068 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--neutral-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 75, 58, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 12px 0;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-right: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Enhanced Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}/*

/* Hero Section Enhancement */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 88px;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.8;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    color: white;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
   
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

/* Background Articles */
.bckrgnd {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.bckrgnd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23C49B3C" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.bckrnd2 {
    background: linear-gradient(135deg, #1A4B3A 0%, #2C5F7C 50%, #1A4B3A 100%);
    position: relative;
}

.bck3 {
    background: var(--gradient-primary);
    position: relative;
}

/* Services Section Enhancement */
.services {
    padding: 120px 0;
    position: relative;
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/*  Services Grid with Flip Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 100px;
    justify-content: center;
    align-items: center;
}

/* Flip card */
.service-card {
    width: 300px;
    height: 400px;
    perspective: 1000px;
  
}

.service-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-card:hover .service-inner {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(26, 75, 58, 0.08);
}

.service-front {
    color: black;
    font-size: 20px;
    font-weight: bold;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.service-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-front h3 {
    margin-top: 15px;
    font-size: 18px;
}

.service-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 32px;
}

.service-back h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.service-back p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.95;
}

/* About Section Enhancement */
.about {
    padding: 120px 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.team-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 80px;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:last-child {
    margin-bottom: 0;
}

.member-profile {
    text-align: center;
}

.member-profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-medium);
}

.member-profile h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.member-profile .role {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--gradient-primary);
    color: white;
    padding: 48px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.testimonial-text h2 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
}

.testimonial-text ul {
    list-style: none;
    text-align: center;
}

.testimonial-text ul li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.testimonial-text ul li:last-child {
    border-bottom: none;
}

/* Contact Section Enhancement */
.contact {
    padding: 120px 0;
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="49" patternUnits="userSpaceOnUse"><polygon points="14,1 25,7 25,20 14,26 3,20 3,7" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    font-size: 20px;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
}

.info-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.info-text a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
}

.contact-form h2 {
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--neutral-medium);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(196, 155, 60, 0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer Enhancement */
footer {
    background: var(--neutral-dark);
    color: white;
    padding: 80px 0 32px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--primary-gold);
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-container {
        gap: 16px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .logo img {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }
    
    nav ul {
        display: none;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 40px 24px;
        margin: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .team-member {
        padding: 32px 24px;
    }
    
    .member-profile img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .team-section .section-title {
        font-size: 1.8rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .service-card:hover .service-inner {
        transform: none;
    }
}

/* Focus indicators */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-container {
        flex-wrap: wrap;
    }

    .company-name {
        font-size: 16px;
    }

    .logo img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-primary);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 8px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    #home.hero {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    nav ul li a {
        font-size: 15px;
        padding: 14px 16px;
    }
}

/* Modern Reset */
       *, *::before, *::after {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }
       /* Root Variables */
       :root {
           --primary-gold: #C49B3C;
           --primary-dark: #1A4B3A;
           --primary-red: #B22222;
           --accent-blue: #2C5F7C;
           --neutral-light: #F8F9FA;
           --neutral-medium: #E9ECEF;
           --neutral-dark: #212529;
           --text-primary: #2C3E50;
           --text-secondary: #5D6D7E;
           --gradient-primary: linear-gradient(135deg, #1A4B3A 0%, #2C5F7C 100%);
           --gradient-gold: linear-gradient(135deg, #C49B3C 0%, #E6C068 100%);
           --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
           --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
           --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
           --border-radius: 16px;
           --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       }
       /* Base Styles */
       body {
           font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
           line-height: 1.6;
           color: var(--text-primary);
           background: var(--neutral-light);
           scroll-behavior: smooth;
           overflow-x: hidden;
       }
       /* Typography */
       h1, h2, h3, h4, h5, h6 {
           font-family: 'Playfair Display', serif;
           font-weight: 700;
           line-height: 1.2;
           margin-bottom: 0.5em;
       }
       /* Container */
       .container {
           max-width: 1400px;
           margin: 0 auto;
           padding: 0 24px;
       }
       /* Enhanced Header with Hero Background */
       header {
           background: var(--gradient-primary);
           position: fixed;
           top: 0;
           left: 0;
           right: 0;
           z-index: 1000;
           transition: var(--transition);
           padding: 12px 0;
           box-shadow: var(--shadow-medium);
       }
       header.scrolled {
           background: var(--gradient-primary);
           box-shadow: var(--shadow-strong);
           padding: 8px 0;
       }
       .logo-container {
           display: flex;
           justify-content: space-between;
           align-items: center;
           position: relative;
       }
       .logo {
           display: flex;
           align-items: center;
           text-decoration: none;
           transition: var(--transition);
       }
       .logo:hover {
           transform: translateY(-2px);
       }
       .logo img {
           width: 50px;
           height: 50px;
           border-radius: 12px;
           margin-right: 12px;
           box-shadow: var(--shadow-soft);
           transition: var(--transition);
       }
       .logo:hover img {
           transform: scale(1.05);
           box-shadow: var(--shadow-medium);
       }
       .company-name {
           font-family: 'Playfair Display', serif;
           font-size: 20px;
           font-weight: 800;
           color: white;
           letter-spacing: -0.5px;
           line-height: 1.1;
       }
       /* Mobile Menu Button */
       .mobile-menu-btn {
           display: none;
           background: rgba(255, 255, 255, 0.1);
           border: 2px solid rgba(255, 255, 255, 0.2);
           color: white;
           padding: 12px;
           border-radius: 8px;
           cursor: pointer;
           transition: var(--transition);
           font-size: 18px;
       }
       .mobile-menu-btn:hover {
           background: rgba(255, 255, 255, 0.2);
           transform: scale(1.05);
       }
       /* Enhanced Navigation */
       nav ul {
           display: flex;
           list-style: none;
           gap: 4px;
           align-items: center;
       }
       nav ul li a {
           display: flex;
           align-items: center;
           gap: 8px;
           font-size: 14px;
           font-weight: 600;
           color: white;
           text-decoration: none;
           padding: 12px 16px;
           border-radius: 8px;
           transition: var(--transition);
           position: relative;
       }
       nav ul li a:hover,
       nav ul li a.active {
           background: rgba(255, 255, 255, 0.15);
           transform: translateY(-2px);
           box-shadow: var(--shadow-soft);
       }
       nav ul li a i {
           font-size: 16px;
           opacity: 0.9;
       }
       /* Hero Section */
       #home.hero {
           background: var(--gradient-primary);
           min-height: 100vh;
           display: flex;
           align-items: center;
           position: relative;
           overflow: hidden;
           padding-top: 100px;
       }
       .hero img {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           object-fit: cover;
           opacity: 0.1;
           z-index: 1;
       }
       .hero-content {
           position: relative;
           z-index: 2;
           max-width: 600px;
           color: white;
           padding: 40px 0;
       }
       .hero-content h1 {
           font-size: 3.5rem;
           margin-bottom: 24px;
           text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
       }
       .hero-content p {
           font-size: 1.2rem;
           margin-bottom: 32px;
           line-height: 1.7;
           opacity: 0.95;
       }
       .btn {
           display: inline-block;
           background: var(--gradient-gold);
           color: var(--primary-dark);
           padding: 16px 32px;
           text-decoration: none;
           border-radius: 50px;
           font-weight: 700;
           font-size: 16px;
           transition: var(--transition);
           box-shadow: var(--shadow-medium);
       }
       .btn:hover {
           transform: translateY(-3px);
           box-shadow: var(--shadow-strong);
       }
       /* Mobile Responsive Styles */
       @media (max-width: 768px) {
           .container {
               padding: 0 16px;
           }
           .mobile-menu-btn {
               display: block;
           }
           .logo-container {
               flex-wrap: wrap;
           }
           .company-name {
               font-size: 16px;
           }
           .logo img {
               width: 40px;
               height: 40px;
               margin-right: 8px;
           }
           nav {
               position: absolute;
               top: 100%;
               left: 0;
               right: 0;
               background: var(--gradient-primary);
               transform: translateY(-100%);
               opacity: 0;
               visibility: hidden;
               transition: var(--transition);
               box-shadow: var(--shadow-medium);
           }
           nav.active {
               transform: translateY(0);
               opacity: 1;
               visibility: visible;
           }
           nav ul {
               flex-direction: column;
               padding: 20px;
               gap: 8px;
           }
           nav ul li {
               width: 100%;
           }
           nav ul li a {
               width: 100%;
               justify-content: flex-start;
               padding: 16px 20px;
               font-size: 16px;
               border-radius: 12px;
           }
           .hero-content h1 {
               font-size: 2.5rem;
           }
           .hero-content p {
               font-size: 1.1rem;
           }
           #home.hero {
               padding-top: 120px;
           }
       }
       @media (max-width: 480px) {
           .company-name {
               font-size: 14px;
           }
           .hero-content h1 {
               font-size: 2rem;
           }
           .hero-content p {
               font-size: 1rem;
           }
           nav ul li a {
               font-size: 15px;
               padding: 14px 16px;
           }
        }