/* Global Styles */
        :root {
            --gold-primary: #D4AF37;
            --gold-secondary: #B8860B;
            --gold-light: #F5E7A1;
            --white-primary: #FFFFFF;
            --white-secondary: #F8F8F8;
            --text-dark: #333333;
            --text-light: #777777;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Montserrat', 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white-secondary);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', 'Playfair Display', serif;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gold-primary);
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--gold-primary);
            color: var(--white-primary);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Header Styles */
        header {
            background: rgb(255, 255, 255);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 80px;
            margin-right: 10px;
        }
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--gold-primary);
        }
        
        .logo span {
            color: var(--text-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--gold-primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--gold-primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        /* VIDEO LAYER */
.hero__bg-video {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crop/scale to fill container cleanly */
  z-index: -1;
            /* place behind other content */
         /* behind everything */
         
}
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(to bottom, rgba(2, 30, 1, 0.6), rgba(0, 0, 0, 0.033)), fixed;
            display: flex;
            align-items: center;
            color: var(--white-primary);
            text-align: center;
        }
        
        .hero-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            height: 100%;
        }
        
        .hero-content {
            flex: 1 1 0;
            padding: 40px 0;
            z-index: 1;
        }
        
        .hero-image {
            flex: 1 1 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.12);
            object-fit: cover;
           
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--white-primary);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 24px;
        padding-top: 60px;
    }
    .hero-content, .hero-image {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    .hero-image img {
        max-width: 90vw;
        height: auto;
    }
}
@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 32px 0 16px 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-image img {
        max-width: 100vw;
        border-radius: 10px;
    }
}
        
        /* Services Section */
        .services {
            background: var(--white-primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: var(--white-primary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--gold-primary);
        }
        
        /* About Section */
        .about {
            background: linear-gradient(to right, var(--white-secondary) 50%, var(--gold-light) 50%);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            display: block;
        }
        
        .about-content h2 {
            margin-bottom: 30px;
        }
        
        .mission-vision {
            margin-top: 30px;
            background: var(--white-primary);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--gold-primary);
        }
        
        /* Values Section */
        .values {
            background: var(--white-primary);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--white-primary);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--gold-primary);
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.1)), url('/assets/hero-back.jpg') no-repeat center center/cover fixed;
            color: var(--white-primary);
            text-align: center;
        }
        
        .contact h2 {
            color: var(--white-primary);
        }
        
        .contact h2:after {
            background: var(--white-primary);
        }
        
        .contact-info {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-details p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--gold-primary);
            color: var(--white-primary);
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--white-primary);
            color: var(--gold-primary);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white-primary);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }
        
        .footer-links h3 {
            color: var(--gold-primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--white-primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--gold-primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-light);
        }

