    
        :root {
            --primary-gold: #D4AF37;
            --dark-brown: #1a1410;
            --light-cream: #F5F1E8;
            --accent-teal: #2a7f8e;
            --text-dark: #2c2c2c;
            --text-light: #f0f0f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: var(--light-cream);
            line-height: 1.6;
        }

        /* Navigation */
 nav {
    background: #04012e;
    color: #fff;
    padding: 1px 2px;
    top:1;
    position: sticky;
    z-index: 999;
}

nav .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 2px;
}

/* Hamburger */
.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* Desktop menu hidden (we use mobile slide menu only) */
nav ul {
    list-style: none;
}

.logo img{
    height: 80px;
width: 80px;
border-radius: 10px;
}
/* -------------------- MOBILE MENU (SIDE SLIDE) -------------------- */

#side-menu {
    position: fixed;
    top: 0;
    right: -250px;           /* hidden initially */
    width: 250px;
    height: 100%;
    background: #4e366e;
    padding-top: 80px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#side-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
}

#side-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

#side-menu.open {
    right: 0;     /* visible */
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

@media (min-width: 769px) {
    /* Desktop → show normal inline menu if needed */
    #side-menu {
        display: none !important;
    }
}
/* Desktop Menu (visible on laptop) */
.desktop-menu {
    display: flex;
    gap: 25px;
}

.desktop-menu li {
    list-style: none;
}

.desktop-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

/* Mobile Sidebar */
#side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #000;
    padding-top: 80px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* RESPONSIVE — Mobile */
@media (max-width: 768px) {

    /* Desktop menu hide */
    .desktop-menu {
        display: none;
    }

    /* Hamburger show */
    .menu-toggle {
        display: block;
    }
}

/* Desktop */
@media (min-width: 769px) {

    /* Sidebar hide on laptop */
    #side-menu {
        display: none;
    }

    /* Hamburger hide */
    .menu-toggle {
        display: none;
    }
}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 20, 16, 0.85) 0%, rgba(42, 36, 32, 0.85) 50%, rgba(42, 127, 142, 0.85) 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="scales" x="0" y="0" width="400" height="400" patternUnits="userSpaceOnUse"><path d="M200,100 L250,200 L150,200 Z" fill="rgba(212,175,55,0.05)" opacity="0.3"/><circle cx="200" cy="300" r="30" fill="rgba(42,127,142,0.05)" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="url(%23scales)"/></svg>');
            background-size: cover, 400px 400px;
            background-position: center, 0 0;
            color: var(--text-light);
            padding: 8rem 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
        }

        .hero .container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
            animation: heroSlideIn 0.8s ease-out;
        }

        .hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary-gold);
            font-weight: 600;
            animation: heroSlideIn 0.8s ease-out 0.2s backwards;
        }

        .hero .subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary-gold);
            color: var(--dark-brown);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
        }

        .btn-secondary:hover {
            background: var(--primary-gold);
            color: var(--dark-brown);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* About Section */
        .about {
            padding: 5rem 20px;
            background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(245,241,232,0.98) 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(212,175,55,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            background-size: auto, 20px 20px;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-brown);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal), var(--primary-gold));
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent-teal);
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-box {
            background: var(--light-cream);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-gold);
            border-radius: 3px;
        }

        .highlight-box strong {
            color: var(--accent-teal);
            font-size: 1.2rem;
        }

        .highlight-box p {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: #666;
        }

        /* Activities Section */
        .activities {
            padding: 5rem 20px;
            background: linear-gradient(135deg, var(--light-cream) 0%, white 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="icons" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(42,127,142,0.05)" stroke-width="2"/></pattern></defs><rect width="200" height="200" fill="url(%23icons)"/></svg>');
            background-size: auto, 100px 100px;
            position: relative;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .activity-card {
            background: linear-gradient(135deg, white 0%, rgba(245,241,232,0.5) 100%);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
            border-top: 4px solid var(--primary-gold);
            border-left: 3px solid var(--accent-teal);
            position: relative;
            overflow: hidden;
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
            border-radius: 0 0 0 100%;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .activity-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, rgba(245,241,232,0.3) 0%, rgba(212,175,55,0.08) 100%);
        }

        .activity-card:hover::before {
            opacity: 1;
        }

        .activity-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .activity-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark-brown);
        }

        .activity-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Vision Section */
        .vision {
            padding: 5rem 20px;
            background: linear-gradient(135deg, var(--dark-brown) 0%, #2a2420 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="vision" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><path d="M75,20 L90,50 L120,50 L100,70 L110,100 L75,80 L40,100 L50,70 L30,50 L60,50 Z" fill="rgba(212,175,55,0.08)"/></pattern></defs><rect width="300" height="300" fill="url(%23vision)"/></svg>');
            background-size: auto, 150px 150px;
            color: var(--text-light);
            position: relative;
        }

        .vision .section-title {
            color: var(--primary-gold);
        }

        .vision .section-title::after {
            background: linear-gradient(90deg, var(--primary-gold), var(--accent-teal));
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .vision-card {
            background: rgba(212, 175, 55, 0.12);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid var(--primary-gold);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vision-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(42,127,142,0.15) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .vision-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-gold);
            transition: color 0.3s ease;
        }

        .vision-card p {
            color: #ddd;
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(212,175,55,0.2);
            border-color: var(--accent-teal);
        }

        .vision-card:hover h4 {
            color: var(--accent-teal);
        }

        .vision-card:hover p {
            color: #fff;
        }

        /* Core Values */
        .values {
            padding: 5rem 20px;
            background: linear-gradient(135deg, rgba(255,255,255,0.99) 0%, rgba(245,241,232,0.95) 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="values" x="0" y="0" width="75" height="75" patternUnits="userSpaceOnUse"><circle cx="37.5" cy="37.5" r="15" fill="none" stroke="rgba(42,127,142,0.06)" stroke-width="1"/></pattern></defs><rect width="150" height="150" fill="url(%23values)"/></svg>');
            background-size: auto, 75px 75px;
            position: relative;
        }

        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--light-cream) 0%, rgba(212,175,55,0.08) 100%);
            border-radius: 12px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-teal), var(--primary-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .value-item:hover {
            transform: scale(1.08);
            background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(42,127,142,0.1) 100%);
            border-color: var(--primary-gold);
            box-shadow: 0 8px 25px rgba(212,175,55,0.15);
        }

        .value-item:hover::before {
            transform: scaleX(1);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-item h4 {
            color: var(--accent-teal);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        /* Call to Action */
        .cta-section {
            padding: 5rem 20px;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--dark-brown) 100%),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="cta" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50,10 L90,50 L50,90 L10,50 Z" fill="rgba(212,175,55,0.08)" opacity="0.4"/></pattern></defs><rect width="200" height="200" fill="url(%23cta)"/></svg>');
            background-size: auto, 100px 100px;
            color: var(--text-light);
            text-align: center;
            border-top: 4px solid var(--primary-gold);
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Footer */
 
        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .activity-card {
            animation: slideIn 0.6s ease-out forwards;
        }

        .activity-card:nth-child(1) { animation-delay: 0.1s; }
        .activity-card:nth-child(2) { animation-delay: 0.2s; }
        .activity-card:nth-child(3) { animation-delay: 0.3s; }
        .activity-card:nth-child(4) { animation-delay: 0.4s; }
        .activity-card:nth-child(5) { animation-delay: 0.5s; }
        .activity-card:nth-child(6) { animation-delay: 0.6s; }

        .vision-card {
            animation: slideIn 0.6s ease-out forwards;
        }

        .vision-card:nth-child(1) { animation-delay: 0.1s; }
        .vision-card:nth-child(2) { animation-delay: 0.2s; }
        .vision-card:nth-child(3) { animation-delay: 0.3s; }
        .vision-card:nth-child(4) { animation-delay: 0.4s; }
        .vision-card:nth-child(5) { animation-delay: 0.5s; }
        .vision-card:nth-child(6) { animation-delay: 0.6s; }

        .value-item {
            animation: fadeInUp 0.7s ease-out forwards;
        }

        .value-item:nth-child(1) { animation-delay: 0.1s; }
        .value-item:nth-child(2) { animation-delay: 0.2s; }
        .value-item:nth-child(3) { animation-delay: 0.3s; }
        .value-item:nth-child(4) { animation-delay: 0.4s; }
        .value-item:nth-child(5) { animation-delay: 0.5s; }
        .value-item:nth-child(6) { animation-delay: 0.6s; }
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
    background: #000; /* mobile contain me side gap avoid */
}

.hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Desktop default */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-carousel .hero-slide.active {
    opacity: 1;
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-carousel {
        height: 75vh;
    }
}

/* Mobile — FULL IMAGE (NO CROP) */
@media (max-width: 768px) {
    .hero-carousel {
        height: 30vh;
    }
    .hero-carousel .hero-slide {
        object-fit: contain;   /* full image visible */
    }
}

/* Normal Phones */
@media (max-width: 600px) {
    .hero-carousel {
        height: 25vh;
    }
}

/* Small Phones */
@media (max-width: 450px) {
    .hero-carousel {
        height: 20vh;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .hero-carousel {
        height: 20vh;
    }
}

        /* Footer */
        footer {
            background: #0f1f2e;
            color: #fff;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 3px solid var(--secondary-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2rem;
            }

            .nav-links {
                gap: 0.5rem;
            }

            .nav-links a {
                padding: 0.3rem 0.5rem;
                font-size: 0.9rem;
            }

            .hero {
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .featured {
                margin: -3rem auto 2rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
                margin: 0.3rem;
            }
        }

        footer {
            background: #111;
            padding: 40px 20px;
            color: #fff;
            text-align: center;
        }

        /* Main Container */
        .footer-container {
            max-width: 1200px;
            margin: auto;
        }

        /* TOP LOGO ROW */
        .footer-logo-row {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        /* Logo styling */
        .footer-logo-row img {
            height: 82px;
            width: 266px;
            border-radius: 12px;
            object-fit: cover;
            padding: 5px;
            transition: 0.3s;
        }

        .footer-logo-row img:hover {
            transform: scale(1.1);
        }

        /* LINKS SECTION */
        .footer-links-section {
            margin-top: 10px;
        }

        .footer-links a {
            color: #fff;
            margin: 0 12px;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .copy {
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .tagline {
            margin-top: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* RESPONSIVE */
        @media (max-width: 600px) {
            .footer-logo-row img {
                height: 82px;
                width: 266px;
            }

            .footer-links a {
                display: block;
                margin: 6px 0;
            }
        }
.social-links {
        display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.social-links .icon {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

.social-links .icon img{
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}
/* Hover effect */
.social-links .icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 5px 12px rgba(0,0,0,0.3);
}

/* Individual platform color effects */
.linkedin:hover {
    background: #0077b5;
    color: #fff;
}
.facebook:hover {
    background: #1877f2;
    color: #fff;
}
.whatsapp:hover {
    background: #25d366;
    color: #fff;
}
.email:hover {
    background: #d44638;
    color: #fff;
}
.youtube:hover {
    background: #ff0000;
    color: #fff;
}

.twitter:hover {
    background: #000;
    color: #fff;
}

.instagram:hover {
    background: #f5d107;
    color: #fff;
}

.whatsapp:hover {
    background: #25d366;
    color: #fff;
}
/* Responsive: Smaller icons for mobile */
@media (max-width: 600px) {
    .social-links .icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

