:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --gold: #D4AF37;
    --maroon: #8B0000;
    --light-gold: #FFD700;
    --festive-red: #C41E3A;
    --leaf-green: #228B22;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #FFFEF2;
    padding-top: 80px; /* For fixed navbar */
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Indian Pattern Background */
.indian-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--maroon);
    font-size: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, var(--saffron), var(--gold), var(--green));
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Navigation */
.nav-link {
    font-weight: 500;
    margin: 0 8px;
    color: var(--maroon) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--gold), var(--green));
    bottom: 0;
    left: 0;
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--saffron), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar {
    /*padding: 20px 0;*/
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Navbar dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown > .dropdown-toggle {
    pointer-events: auto;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }
}

/* Dropdown visual tweaks */
.navbar .dropdown-menu {
  border: 0;
  border-radius: 12px;
  padding: 10px 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(212, 175, 55, 0.18);
}

/* Services dropdown: 2-column horizontal layout (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    column-count: 2;
    column-gap: 12px;
    min-width: 420px;
    max-width: 520px;
  }

  .navbar .dropdown-menu > li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }

  .navbar .dropdown-menu .dropdown-divider {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin: 8px 0;
  }

  /* Make items fill column width nicely */
  .navbar .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}

/* Mobile: keep default single column */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    column-count: 1;
    min-width: auto;
    max-width: none;
  }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border: none;
    color: #000;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, var(--light-gold), var(--gold));
    color: #000;
}

.btn-outline-primary {
    border: 2px solid var(--gold);
    color: var(--maroon);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-color: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--gold);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #1a472a, #0d2818);
    color: white;
    padding: 70px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--saffron), var(--white), var(--green));
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-links a:before {
    content: '▸';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover:before {
    opacity: 1;
    left: -5px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-8px) scale(1.2);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Diwali Lights Effect */
.diwali-light {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: twinkle 2s infinite;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Indian Badges */
.indian-badge {
    background: linear-gradient(45deg, var(--saffron), var(--gold));
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {

        font-size: 2rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1708133302586-2ffca3db5553?q=80&w=1185&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -80px;
}

.hero-content {
    margin-top: 5%;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Preview Section */
.about-preview-section {
    padding: 100px 0;
    background-color: white;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(20, 83, 45, 0.9), rgba(20, 83, 45, 0.9)), url('https://images.unsplash.com/photo-1511988617509-a57c8a288659?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    color: white;
    padding: 80px 0;
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Services Preview Section */
.services-preview-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

/* Indian Wedding Section */
.indian-wedding-section {
    padding: 100px 0;
    background-color: white;
}

.indian-icon {
    color: var(--maroon);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 320px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.8));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 1123px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-section,
    .about-preview-section,
    .services-preview-section,
    .indian-wedding-section,
    .gallery-section,
    .contact-section {
        padding: 70px 0;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .gallery-item {
        height: 250px;
    }
}
/* About Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1519677100203-6f5d4c7a08c9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 50px;
    text-align: center;
}

.about-hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background-color: white;
}

.founder-quote {
    background: linear-gradient(45deg, #FFF9F0, #FFF0E0);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.founder-quote:before {
    content: '"';
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--saffron), var(--green));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 5px;
}

.timeline-content {
    background: #FFF9F0;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.value-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 5px solid var(--gold);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    color: var(--gold);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid var(--gold);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-gold {
    color: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--gold);
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background-color: white;
}

.award-card {
    background: #FFF9F0;
    border-radius: 15px;
    transition: all 0.3s;
}

.award-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 70px;
    }
    
    .our-story-section,
    .values-section,
    .team-section,
    .testimonials-section,
    .awards-section {
        padding: 70px 0;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item:before {
        left: -26px;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
    }
}

/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 50px;
    text-align: center;
}

.services-hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Services Navigation */
.services-nav-section {
    padding: 30px 0;
    background-color: white;
    position: sticky;
    top: 80px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    background: #FFF9F0;
    color: var(--maroon);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    min-width: 120px;
}

.service-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.service-nav-item:hover,
.service-nav-item.active {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-section.bg-light {
    background-color: #FFF9F0;
}

.service-detail-section .section-title {
    text-align: left;
}

.service-detail-section .section-title:after {
    left: 0;
    transform: none;
}

.service-features {
    background: #FFF9F0;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-pricing {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    margin-bottom: 30px;
}

.service-gallery {
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Theme Cards */
.theme-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 3px solid var(--gold);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.theme-icon {
    color: var(--gold);
}

/* CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-section {
        padding: 120px 0 70px;
    }
    
    .service-detail-section {
        padding: 70px 0;
    }
    
    .services-nav {
        gap: 5px;
    }
    
    .service-nav-item {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .service-nav-item i {
        font-size: 1.2rem;
    }
    
    .service-gallery {
        margin-top: 30px;
    }
}

/* Indian Wedding Hero Section */
.wedding-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.wedding-hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.wedding-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.wedding-tag {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
}

/* Wedding Journey */
.wedding-journey-section {
    padding: 100px 0;
    background-color: white;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.journey-timeline:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--gold), var(--green));
    z-index: 1;
}

.journey-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border: 5px solid white;
}

.journey-step h4 {
    color: var(--maroon);
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Ceremonies Section */
.ceremonies-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.ceremony-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
    border-top: 5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.ceremony-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ceremony-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

.ceremony-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.ceremony-card h4 {
    color: var(--maroon);
    margin-bottom: 15px;
}

.ceremony-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ceremony-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.ceremony-features li:last-child {
    border-bottom: none;
}

.ceremony-features i {
    color: var(--green);
    margin-right: 10px;
}

/* Themes Section */
.themes-section {
    padding: 100px 0;
    background-color: white;
}

.theme-card {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s;
}

.theme-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.theme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    transform: translateY(100px);
    transition: all 0.3s;
}

.theme-card:hover .theme-overlay {
    transform: translateY(0);
}

.theme-overlay h3 {
    color: white;
    margin-bottom: 10px;
}

.theme-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Theme Backgrounds */
.royal-theme {
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.south-theme {
    background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.punjabi-theme {
    background-image: url('https://images.unsplash.com/photo-1592405381005-0a2c9dae4d5d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.gujarati-theme {
    background-image: url('https://images.unsplash.com/photo-1567446537711-4302c76e0b8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.bengali-theme {
    background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.modern-theme {
    background-image: url('https://images.unsplash.com/photo-1511988617509-a57c8a288659?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

/* Catering Section */
.catering-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.catering-menu {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-category {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-category:last-child {
    border-bottom: none;
}

.menu-category h4 {
    color: var(--maroon);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.menu-category h4 i {
    color: var(--gold);
}

.menu-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    color: #555;
}

.menu-category li:last-child {
    border-bottom: none;
}

.catering-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #000;
}

.feature-content h4 {
    color: var(--maroon);
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    margin: 0;
}

.catering-cta {
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.catering-cta h4 {
    color: white;
    margin-bottom: 10px;
}

.catering-cta .btn-primary {
    background: white;
    color: var(--maroon);
    margin-top: 15px;
}

.catering-cta .btn-primary:hover {
    background: var(--gold);
    color: #000;
}

/* Entertainment Section */
.entertainment-section {
    padding: 100px 0;
    background-color: white;
}

.entertainment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
    border-top: 5px solid var(--gold);
}

.entertainment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.entertainment-icon {
    color: var(--gold);
}

.entertainment-card h4 {
    color: var(--maroon);
    margin-bottom: 15px;
}

.entertainment-card p {
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.entertainment-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--saffron), var(--gold));
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Wedding Packages */
.wedding-packages-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.package-card.popular {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-card.royal {
    border: 3px solid var(--maroon);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--saffron), var(--gold));
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.package-header {
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    color: white;
    margin-bottom: 5px;
}

.package-header p {
    opacity: 0.9;
    margin: 0;
}

.package-body {
    padding: 30px;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--maroon);
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.package-price:before {
    content: '₹';
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50px);
    top: 10px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    margin-right: 10px;
    width: 20px;
}

.package-features .fa-check {
    color: var(--green);
}

.package-features .fa-times {
    color: #ccc;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: linear-gradient(45deg, #FFF9F0, #FFF0E0);
    color: var(--maroon);
    font-weight: 600;
    padding: 20px;
    border: none;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: #000;
}

.accordion-body {
    padding: 20px;
    background: white;
    color: #555;
    line-height: 1.8;
}

/* Consultation CTA */
.consultation-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
}

.consultation-cta h2 {
    color: white;
}

.consultation-cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .wedding-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .journey-timeline:before {
        display: none;
    }
    
    .journey-timeline {
        gap: 20px;
    }
    
    .journey-step {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .wedding-hero-section {
        padding: 150px 0 80px;
        background-attachment: scroll;
    }
    
    .wedding-hero-section h1 {
        font-size: 2rem;
    }
    
    .wedding-tags {
        gap: 10px;
    }
    
    .wedding-tag {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .wedding-journey-section,
    .ceremonies-section,
    .themes-section,
    .catering-section,
    .entertainment-section,
    .wedding-packages-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .journey-step {
        flex: 0 0 calc(50% - 20px);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .theme-card {
        height: 250px;
    }
    
    .theme-overlay {
        padding: 20px;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
    
    .package-badge {
        right: -30px;
        font-size: 0.8rem;
        padding: 6px 35px;
    }
    
    .consultation-cta {
        padding: 60px 0;
        text-align: center;
    }
    
    .consultation-cta .col-lg-4 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .journey-step {
        flex: 0 0 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .package-badge {
        right: -25px;
        font-size: 0.7rem;
        padding: 5px 30px;
    }
}

/* Gallery Hero Section */
.gallery-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/img/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 100px;
    margin-top: -80px;
    text-align: center;
    position: relative;
}

.gallery-hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Gallery Navigation */
.gallery-nav-section {
    padding: 30px 0;
    background-color: white;
    position: sticky;
    top: 80px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--gold);
    background: white;
    color: var(--maroon);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Main Gallery */
.main-gallery-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    display:none;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--saffron), var(--gold));
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .video-play-btn {
    opacity: 1;
}

.video-play-btn:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 100px 0;
    background-color: white;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    height: 100%;
}

.video-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s;
}

.video-card:hover .video-play-overlay i {
    transform: scale(1);
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    color: var(--maroon);
    margin-bottom: 10px;
}

.video-duration {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials with Photos */
.testimonials-section {
    padding: 100px 0;
    background-color: #FFF9F0;
}

.testimonial-with-photo {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.testimonial-with-photo:hover .testimonial-photo img {
    transform: scale(1.05);
}

.testimonial-content {
    padding-left: 30px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
}

.client-info h5 {
    color: var(--maroon);
    margin-bottom: 5px;
}

.client-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.star-rating {
    color: var(--gold);
    font-size: 1.2rem;
}

/* CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--maroon), #6a0dad);
    color: white;
}

.gallery-cta h2 {
    color: white;
}

.gallery-cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Instagram Link */
.instagram-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.instagram-link:hover {
    color: var(--light-gold);
    transform: translateX(5px);
}

/* LightGallery Custom Styles */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
    border-color: var(--gold);
}

.lg-actions .lg-next, 
.lg-actions .lg-prev {
    background-color: var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #000;
}

.lg-toolbar .lg-icon {
    color: var(--gold);
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.7);
}

.lg-sub-html h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* Video Modal */
#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .modal-header {
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#videoModal .btn-close {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 1;
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonial-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-hero-section {
        padding: 150px 0 70px;
        background-attachment: scroll;
    }
    
    .gallery-stats {
        gap: 30px;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .main-gallery-section,
    .video-gallery-section,
    .testimonials-section {
        padding: 70px 0;
    }
    
    .gallery-filter {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .video-thumb {
        height: 200px;
    }
    
    .testimonial-with-photo {
        padding: 30px;
    }
    
    .gallery-cta {
        padding: 60px 0;
        text-align: center;
    }
    
    .gallery-cta .col-lg-4 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 120px;
        padding: 8px 15px;
    }
    
    .video-thumb {
        height: 180px;
    }
    
    .testimonial-photo {
        height: 200px;
    }
}

/* Loading Animation */
#loadMore {
    position: relative;
    overflow: hidden;
}

#loadMore .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery Item Animations */
.gallery-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Colors for Filter Buttons */
.filter-btn[data-filter="wedding"] {
    border-color: #ff6b6b;
}

.filter-btn[data-filter="birthday"] {
    border-color: #4ecdc4;
}

.filter-btn[data-filter="anniversary"] {
    border-color: #ffd166;
}

.filter-btn[data-filter="corporate"] {
    border-color: #118ab2;
}

.filter-btn[data-filter="video"] {
    border-color: #7209b7;
}

.filter-btn[data-filter="wedding"].active {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.filter-btn[data-filter="birthday"].active {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.filter-btn[data-filter="anniversary"].active {
    background: linear-gradient(45deg, #ffd166, #ffb347);
}

.filter-btn[data-filter="corporate"].active {
    background: linear-gradient(45deg, #118ab2, #06d6a0);
}

.filter-btn[data-filter="video"].active {
    background: linear-gradient(45deg, #7209b7, #4361ee);
}