* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c5a059;
    --dark: #121212;
    --light-gray: #1e1e1e;
    --text-white: #f5f5f5;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}
.menu-toggle {
    display: none; 
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #b8860b; 
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav-links {
    position: fixed;
        top: 70px;
        left: -100%; 
        flex-direction: column;
    width: 100%;
    z-index: 1000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0; 
    }

    .nav-links li {
        margin: 20px 0;
    }
    .nav-links.active {
        display: flex;
    }

}
#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1600') center/cover no-repeat; */
    background: url('Z\ \(9\).jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 i {
    font-weight: 400;
    color: var(--gold);
}

.hero-btns {
    margin-top: 40px;
}

.btn-primary {
    padding: 15px 40px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline {
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.expertise-section {
    padding: 120px 0;
    background-color: #1a1a1a; 
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-top: 50px;
}

.skill-item {
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; 
}



.skill-item:hover {
    transform: translateY(-15px);
    border-bottom: 4px solid var(--gold);
    background: #252525;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.skill-header i {
    font-size: 2rem;
    color: rgba(197, 160, 89, 0.3); 
    transition: 0.3s;
}

.skill-item:hover .skill-header i {
    color: var(--gold);
    transform: scale(1.2);
}

.skill-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.skill-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.skill-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.skill-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.skill-list li {
    font-size: 0.85rem;
    color: #d1d1d1;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.skill-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}


@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: 1fr; 
    }
}
/* Gallery Masonry */
.gallery-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.section-heading span {
    color: #d4af37;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}


.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.gallery-card {
   
    cursor: pointer;
    height: 300px; 
}
.gallery-card img {
    width: 100%;
    height: 100%;
     border-radius: 15px;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1); 
}

.gallery-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover span {
    opacity: 1;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* Responsive */
@media(max-width:768px){
    .gallery-card img {
        height: 260px;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .gallery-masonry { grid-template-columns: 1fr; }
}
/* Proud Moments Section */
.proud-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.proud-grid {
    display: flex;
    gap: 10px; 
    height: 500px; 
    margin-top: 30px;
}

.proud-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease; 
}

.proud-card:hover {
    flex: 1.5;
}

.proud-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(39, 32, 25, 0.9), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    color: #d4af37; 
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.proud-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background-color: #272019; 
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    border: 2px solid #d4af37;
    transition: 0.3s;
}

.btn-explore:hover {
    background-color: #d4af37;
    color: #272019;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .proud-grid {
        flex-direction: column;
        height: auto;
    }
    .proud-card {
        height: 300px;
    }
}
.stats-section {
    padding: 60px 0;
    background-color: #1a1a1a; 
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}
.gold-text {
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}
.stat-item p {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}
.amenities-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #1a1a1a, #000); /* Luxury dark gradient */
    color: #fff;
}

.amenities-intro {
    text-align: center;
    margin-bottom: 60px;
}

.tagline {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.amenities-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.amenity-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 20px;
    flex: 1;
    transition: 0.5s;
    text-align: center;
}

/* Center box thoda bada dikhega focus ke liye */
.center-box {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.05);
    border-color: #d4af37;
    z-index: 2;
}

.amenity-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 20px;
}

.amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badges {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d4af37;
    color: #000;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50px;
}

.amenity-text h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.amenity-text p {
    color: #999;
    font-size: 0.9rem;
}

/* Hover Effect */
.amenity-box:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}

.center-box:hover {
    transform: scale(1.15) translateY(-10px);
}

/* Responsive */
@media (max-width: 900px) {
    .amenities-display {
        flex-direction: column;
    }
    .center-box {
        transform: scale(1);
    }
}
.main-footer {
    padding: 80px 0 30px;
    background-color: var(--dark);
    border-top: 1px solid #333;
    color: var(--text-white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Layout ko side-by-side karne ke liye */
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px; 
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}


.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

