    :root {
            --primary: #833627;
            --surface: #F6F1EB;
            --text: #013d24;
            --accent: #A88C60;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--surface);
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Navigation */
        .navbar {
            background-color: var(--white) !important;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary) !important;
        }

        .navbar-nav .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
        }


        /* Logo Styling */
/* Navigation */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Logo Styling */
.logo-img {
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

/* Modern Dropdown */
.modern-dropdown .dropdown-menu {
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 180px;
    animation: dropdownFade 0.3s ease-in-out;
}

.modern-dropdown .dropdown-item {
    color: var(--text);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.modern-dropdown .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    padding-left: 2rem;
    transform: translateX(5px);
}

.modern-dropdown .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.modern-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Icon and Form */
.search-icon {
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.search-icon:hover {
    color: var(--primary) !important;
    transform: scale(1.2);
}

.search-form {
    width: 250px;
    transition: opacity 0.3s ease;
}

.modern-search-input {
    border-radius: 20px;
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modern-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(124, 30, 46, 0.3);
    outline: none;
}

/* Mobile View */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        font-size: 1rem;
    }

    .search-form {
        width: 100%;
        margin-top: 0.5rem;
    }

    .modern-search-input {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .search-icon {
        font-size: 1rem;
    }

    .modern-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background-color: var(--surface);
    }

    .modern-dropdown .dropdown-item {
        padding: 0.5rem 1rem;
    }

    .modern-dropdown .dropdown-item:hover {
        padding-left: 1.5rem;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .modern-dropdown .dropdown-menu {
        text-align: center;
    }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            border: none;
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #967a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(168, 140, 96, 0.3);
        }

        /* Stats Section */
        .stats {
            background-color: var(--white);
            padding: 80px 0;
            margin-top: -50px;
            position: relative;
            z-index: 3;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background-color: var(--surface);
            border: 1px solid rgba(168, 140, 96, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-weight: 600;
            color: var(--text);
            margin-top: 0.5rem;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--surface);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 3rem;
        }

        /* Services Grid */
        .services {
            padding: 100px 0;
            background-color: var(--white);
        }

        .service-card {
            background: var(--surface);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(168, 140, 96, 0.1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Awards Section */
        .awards {
            padding: 100px 0;
            background-color: var(--surface);
        }

        .award-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .award-card:hover {
            transform: translateY(-5px);
        }

        .award-logo {
            height: 80px;
            object-fit: contain;
            margin-bottom: 1rem;
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: var(--white);
        }

        .team-card {
            background: var(--surface);
            border-radius: 15px;
            padding: 0;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
        }

        .team-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 2rem;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--accent);
            font-weight: 600;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        /* Footer */
        .footer {
            background-color: var(--text);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent);
        }

        .separator {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 3rem 0;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }




         /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }

        .slide-1 {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
        }

        .slide-1::before {
            background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }

        .slide-2 {
            background: linear-gradient(135deg, #1a4c79 0%, #0e3a5f 100%);
            color: white;
        }

        .slide-2::before {
            background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1074&q=80');
        }

        .slide-3 {
            background: linear-gradient(135deg, #2e5233 0%, #1a3d1f 100%);
            color: white;
        }

        .slide-3::before {
            background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
        }

        .slide-4 {
            background: linear-gradient(135deg, #8b4513 0%, #5d2f0a 100%);
            color: white;
        }

        .slide-4::before {
            background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 1s ease-out 0.5s forwards;
        }

        .hero-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.8s forwards;
        }

        .hero-buttons {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 1.1s forwards;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            border: none;
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }

        .btn-primary-custom:hover {
            background-color: #967a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(168, 140, 96, 0.3);
        }

        .btn-outline-custom {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 13px 33px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .btn-outline-custom:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .nav-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-prev {
            left: 30px;
        }

        .arrow-next {
            right: 30px;
        }

        /* Slide Indicators */
        .slide-counter {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 3;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
        }

        /* Animation Keyframes */
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Reset animations for inactive slides */
        .hero-slide:not(.active) .hero-content h1,
        .hero-slide:not(.active) .hero-content p,
        .hero-slide:not(.active) .hero-buttons {
            opacity: 0;
            transform: translateY(50px);
            animation: none;
        }

        /* Trigger animations for active slide */
        .hero-slide.active .hero-content h1 {
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .hero-slide.active .hero-content p {
            animation: slideInUp 1s ease-out 0.6s forwards;
        }

        .hero-slide.active .hero-buttons {
            animation: slideInUp 1s ease-out 0.9s forwards;
        }

        /* Statistics floating elements */
        .floating-stats {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            
            .arrow-prev {
                left: 15px;
            }
            
            .arrow-next {
                right: 15px;
            }
            
            .floating-stats {
                display: none;
            }
            
            .slide-counter {
                top: 15px;
                right: 15px;
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        /* Auto-play progress bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--accent);
            z-index: 3;
            width: 0%;
            transition: width 0.1s linear;
        }

        .progress-bar.animate {
            animation: progressAnimation 6s linear;
        }

        @keyframes progressAnimation {
            from { width: 0%; }
            to { width: 100%; }
        }
