        /* Global Styles */
        :root {
            --gold: #D4AF37;
            --rose: #E0BFB8;
            --cream: #FFF9F5;
            --dark: #333333;
            --light: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: var(--cream);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--gold);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #c19b2c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        
        .btn-outline:hover {
            background-color: var(--gold);
            color: var(--light);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
            margin: 20px auto 0;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo-menu {
            display: flex;
            align-items: center;
            gap: 8px; /* adjust as needed */
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: inline-block;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            margin-left: auto;
            margin-right: 0;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/169197/pexels-photo-169197.jpeg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light);
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
        }
        
.slider-container {
    max-width: 350px;
    margin: 0 auto;
}

.slider {
    position: relative;
    width: 100%;
    height: 350px; /* adjust as needed */
    overflow: hidden;
}

.slider img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slider img.active {
    opacity: 1;
    z-index: 2;
}

.slider .slide img {
    display: block;
    margin: 0 auto;
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;


    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    object-fit: cover;
}
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 0.9rem;
            color: #777;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--cream);
        }
        
        .gallery-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background: none;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--gold);
            color: var(--light);
            border-color: var(--gold);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(212, 175, 55, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .gallery-item-overlay i {
            color: var(--light);
            font-size: 2rem;
        }
        
        /* Services Section */
        .services-section, .testimonials-section {
            padding: 4rem 2rem;
            text-align: center;
            background-color: #f9f9f9;
          }
          
          .services-section h2, .testimonials-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
          }
          
          .service-grid, .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
            gap: 2rem;
            margin-top: 2rem;
          }
          
          .service-item, .testimonial-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
          }
          
          .service-photo {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          }
          
          .testimonial-item p {
            font-style: italic;
          }
          
          .testimonial-item h4 {
            margin-top: 1rem;
            font-weight: 600;
            color: #d6336c;
          }
        
        /* Contact Section */
        .contact {
            background-color: var(--cream);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            font-size: 1.2rem;
            color: var(--gold);
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--gold);
            color: var(--light);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--gold);
            outline: none;
        }
        
        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--gold);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-img, .about-text {
                flex: none;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }
            .header-container, .footer-container, .gallery-grid, .service-grid, .testimonial-grid, .contact-container {
                flex-direction: column;
                align-items: stretch;
            }
            nav {
                display: none;
                position: absolute;
                top: 60px;
                right: 20px;
                background: #fff;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                border-radius: 8px;
                z-index: 1000;
                width: 200px;
            }
            nav.open {
                display: block;
            }
            .mobile-menu-btn {
                display: inline-block;
                background: none;
                border: none;
                font-size: 2rem;
                cursor: pointer;
                z-index: 1100;
            }
            .header-container {
                position: relative;
            }
            nav ul {
                flex-direction: column;
                padding: 0;
                margin: 0;
            }
            nav ul li {
                margin: 0;
                border-bottom: 1px solid #eee;
                padding: 12px 20px;
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .gallery-grid, .service-grid, .testimonial-grid {
                grid-template-columns: 1fr !important;
            }
            .about-text, .slider-container {
                flex-direction: column;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (min-width: 769px) {
            nav {
                display: block !important;
                position: static;
                background: none;
                box-shadow: none;
                width: auto;
            }
            .mobile-menu-btn {
                display: inline-block;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transform: scale(1.08);
}
.whatsapp-float img {
    width: 36px;
    height: 36px;
}