/* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: white
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
         }

        /* Hero Section Container */
        .hero-section {
            position: relative;
            width: 100%;
            height: 700px; /* Aapke mutabiq fix height */
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Fixed Video Background */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            /* Performance boost for Android/iOS */
            will-change: transform;
        }

        /* Black Overlay for readability */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        /* Navigation Bar Styling */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 5%;
            z-index: 1000;
            transition: all 0.4s ease-in-out;
            background: transparent;
        }

        .nav-linkslia{
            margin-right: 7px;
           
        }
        .nav-links li{
            gap: 7px;
        }

        /* Scroll effect class */
        nav.scrolled {
            background:white;
            padding: 12px 5%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
            color: black;
        }
        nav.scrolled .nav-links li a {
            color: black;
        }
        


        .logo img {
            height: 80px; /* Screenshot ke hisaab se height */
            width: auto;
            transition: 0.3s;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #fff;
            font-size: 17px;
            font-weight: 400;
            text-transform: lowercase; /* Screenshot 205 ke mutabiq */
            letter-spacing: 0.5px;
            transition: 0.3s;
        }

        .nav-links li a:hover {
            color: #c5a059;
        }

        /* Hero Content Styling (Same as Screenshots) */
        .hero-content-wrapper {
            position: relative;
            z-index: 10;
            margin: auto; /* Vertically centered */
            text-align: center;
            color: white;
            padding: 0 10%;
            animation: fadeIn 2s ease-out;
            margin-top: 350px;
        }

        .hero-msg p {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 600;
            margin-bottom: 20px;
            font-style: italic;
        }

        /* Gold Line Decor */
        .hero-content-wrapper::after {
            content: '';
            display: block;
            width: 80px;
            height: 1.5px;
            background: #c5a059;
            margin: 15px auto 30px;
        }

        .line-one p {
            font-size: clamp(14px, 2vw, 17px);
            line-height: 1.8;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            max-width: 850px;
            margin: 0 auto;
        }

        .line-one strong {
            color: #c5a059;
            font-weight: 500;
            letter-spacing: 1.5px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- MOBILE FIXES (Screenshot 209 Fix) --- */
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh; /* Mobile par full screen behtar dikhta hai */
            }

            nav {
                padding: 15px 5%;
                flex-direction: row; /* Logo aur links side by side rahenge */
            }

            .logo img {
                height: 38px; /* Mobile par logo size adjust */
            }

            .nav-links {
                gap: 12px; /* Overlap se bachne ke liye gap kam kiya */
            }

            .nav-links li a {
                font-size: 10px; /* Overlap fix (Screenshot 209) */
                letter-spacing: 0;
            }

            .hero-content-wrapper {
                padding: 0 5%;
                margin-top: 150px; /* Navbar se gap */
            }

            .hero-msg p {
                font-size: 26px;
                line-height: 1.3;
            }

            .line-one p {
                font-size: 13px;
                line-height: 1.6;
            }
        }

        :root {
            --gold: #c5a059;
            --black: #0f0f0f;
            --glass: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #fdfcfb; /* Premium off-white/cream background */
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }

        /* Header Styling */
        .header-section {
            padding: 60px 20px;
            text-align: center;
        }

        .header-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            letter-spacing: 2px;
            color: var(--black);
            margin-bottom: 10px;
        }

        .header-section .underline {
            width: 80px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto;
        }

        /* Grid Layout */
        .project-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            /* Desktop par 3 columns, Tablet par 2, Mobile par 1 */
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        /* Luxury Card Styling */
        .project-card {
            text-decoration: none; /* Link underline hatane ke liye */
            color: inherit;
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            border: 1px solid #eee;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--gold);
        }

        /* Photo Holder */
        .image-box {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #e0e0e0; /* Loading color */
            position: relative;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .image-box img {
            transform: scale(1.1);
        }

        /* Content inside Card */
        .card-info {
            padding: 25px;
            background: white;
        }

        .project-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--black);
        }

        .location-tag {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .location-tag span {
            color: var(--gold);
            margin-right: 8px;
            font-size: 16px;
        }

        /* Floating Badge */
        .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: white;
            padding: 5px 15px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .header-section h1 { font-size: 30px; }
            .project-container { grid-template-columns: 1fr; padding: 15px; }
            .image-box { height: 250px; }
        }

        :root {
            --primary-gold: #c5a059; /* Luxury Gold */
            --dark-bg: #fdfdfd;      /* Clean White/Grey Background */
            --text-color: #333;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
        }

        .partners-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        /* Title ke niche ek elegant line */
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: var(--primary-gold);
            margin: 10px auto;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 50px auto;
            font-weight: 300;
        }

        /* Partners Grid */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5 Logos in a row */
            gap: 30px;
            align-items: center;
            justify-content: center;
        }

        .partner-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            border: 1px solid #f1f1f1;
            text-decoration: none;
        }

        .partner-card img {
            max-width: 80%;
            max-height: 70px;
            filter: grayscale(100%); /* Shuru me black & white look */
            transition: all 0.4s ease;
            opacity: 0.7;
        }

        /* Hover Effects */
        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
            border-color: var(--primary-gold);
        }

        .partner-card:hover img {
            filter: grayscale(0%); /* Hover par original color */
            opacity: 1;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .partners-grid {
                grid-template-columns: repeat(3, 1fr); /* Tablets par 3 logos */
            }
        }

        @media (max-width: 600px) {
            .partners-grid {
                grid-template-columns: repeat(2, 1fr); /* Mobile par 2 logos */
                gap: 15px;
            }
            .section-title {
                font-size: 2rem;
            }
        }

        .box6{
    border: 2px solid black;
    height: 300px;
    margin-top: 100px;
}
.box-img6{
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;      /* h1 ke niche button */
    justify-content: center;     /* vertical center */
    align-items: center;         /* horizontal center */
    text-align: center;
    padding: 0 15px;}

.box-img6 h1{
    font-size: 3rem;
    font-family: 'Times New Roman', serif;
    color:white;
    margin: 0 0 20px 0;}

.connect-btn{
    display: inline-block;
    padding: 14px 38px;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: Georgia;
}

.connect-btn:hover{
    background: #ff5a1f;
    color: #ffffff;
}


