/* Merged Responsive CSS File */

/* Base Styles & Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

:root {
    --primary-bg: #f4f2ff;
    --box-bg: #ffffff;
    --primary-text: #333333;
    --secondary-text: #666666;
    --accent-color: #c20303;
    --copper-accent: #c20303;
    --hover-shadow: rgba(191, 130, 189, 0.2);
    --box-shadow: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.4s;
    --gradient-primary: linear-gradient(90deg, #cfcfcf, #bebebe, #acacac, #9b9b9b);
    --gradient-secondary: linear-gradient(90deg, #cfcfcf, #bebebe, #acacac, #9b9b9b);
    --gradient-accent: linear-gradient(90deg, #cfcfcf, #bebebe, #acacac, #9b9b9b);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f0fffd;
    line-height: 1.6;
    background-color: #c20303;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    
}

/* =========================
   HEADER SECTION STYLES 
========================= */
/* Header Styling */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.5s ease;
  position: relative;
}

/* Initial Logo Styling - Centered and Large */
.header-container .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.header-container .logo img {
  height: 350px;
  padding-top: 90px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width:480px) {
    .header-container .logo img {
        height: 270px;
    }
}

    /* Navigation */
        nav {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 20px 0;
            transition: all 0.5s ease;
            opacity: 0;
            /* Initially hidden */
        }

        .main-menu {
            display: flex;
            list-style-type: none;
            margin-right: 20px;
        }

        .main-menu li {
            position: relative;
            margin: 0 15px;
        }

        .main-menu li a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            display: block;
            transition: all 0.3s ease;
        }


/* Individual Hover Colors */
.main-menu li.home:hover {
    background-color: #ccf2f2;
    /* red */
    color: Black;
    border-radius: 10px;
}
.main-menu li.marriage:hover {
    background-color: #c20303;
    /* red */
    color: Black;
    border-radius: 10px;
}

.main-menu li.pre-wedding:hover {
    background-color: #DFB5CA;
    /* violet */
    color: Black;
    border-radius: 10px;
}

.main-menu li.add-ons:hover {
    background-color: #FFDEDE;
    /* green */
    color: Black;
    border-radius: 10px;
}

.main-menu li.e-suvidha:hover {
    background-color: #ffc7ae;
    /* orange */
    color: Black;
    border-radius: 10px;
}
.main-menu li.m-journey:hover {
    background-color: #E6E6FA;
    /* red */
    color: Black;
    border-radius: 10px;
}
.main-menu li.about:hover {
    background-color: #f9e2ac;
    /* yellow */
    color: Black;
    border-radius: 10px;
}

.main-menu li.honeymoon:hover {
    background-color: #C2F0F7;
    /* pink */
    color: Black;
    border-radius: 10px;
}

/* Active Background Colors */
.main-menu li.active.marriage {
    background-color: #c20303;
    color: Black;
    border-radius: 10px;
}

.main-menu li.active.pre-wedding {
    background-color: #DFB5CA;
    color: Black;
    border-radius: 10px;
}

.main-menu li.active.add-ons {
    background-color: #FFDEDE;
    color: Black;
    border-radius: 10px;
}

.main-menu li.active.home {
    background-color: #ccf2f2;
    color: Black;
    border-radius: 10px;
}

.main-menu li.active.about {
    background-color:  #f9e2ac;
    color: Black;
    border-radius: 10px;
}

.main-menu li.active.honeymoon {
    background-color: #C2F0F7;
    color: Black;
    border-radius: 10px;
}
.main-menu li.active.m-journey {
    background-color: #E6E6FA;
    color: Black;
    border-radius: 10px;
}
.main-menu li.active.e-suvidha {
    background-color: #ffc7ae;
    color: Black;
    border-radius: 10px;
}

@media screen and (max-width: 1200px){
  .main-menu li a {
      font-size: 12px;
  }
}


/* Scrolled Header State */
.scrolled-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scrolled-header .logo {
  left: 0;
  transform: translateX(0);
}

.scrolled-header .logo img {
  height: 110px;
  padding-top: 0;
}

.scrolled-header nav {
  opacity: 1;
}

.scrolled-header .main-menu li a,
.scrolled-header .header-icons a {
  color: #000;
}

.scrolled-header .main-menu li a:hover,
.scrolled-header .header-icons a:hover {
  color: #000;
}


.scrolled-header .mobile-menu-icon {
  color: #000;
}

@media screen and (max-width: 992px) {
    .scrolled-header {
        padding: 20px 0;
    }

    .scrolled-header .logo {
        left: 50%;
        transform: translateX(-50%);
    }

}

@media screen and (max-width: 768px) {

    .scrolled-header {
        padding: 12px 0;
    }

    .scrolled-header .logo img {
        height: 90px;
    }
}

@media screen and (max-width: 480px) {
    .scrolled-header .logo img {
        height: 80px;
    }

}
/* =========================
   SLIDER SECTION STYLES 
========================= */

/* Basic Slider Styling */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
        }
        
        .pslider-container {
            position: relative;
            overflow: hidden;
            height: auto;
            background-color: #930002;
            touch-action: pan-y pinch-zoom;
        }

        .pslider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .pslider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            will-change: transform;
            touch-action: pan-y;
        }

        .pslider.dragging {
            transition: none;
        }

        .pslide {
            min-width: 100%;
            display: flex;
            flex-direction: row-reverse;
            position: relative;
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px;
            background-color: #930002;
            user-select: none;
        }

        .text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .text-content h2 {
            line-height: 2.6rem;
        }

        .image-content {
            flex: 1;
            overflow: hidden;
        }

        .image-content img {
            width: 100%;
            height: 100%;
            padding-top: 20%;
            padding-bottom: 5%;
            object-fit: contain;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        .pslide-title {
            padding: 13px;
            font-size: 2.5rem;
            line-height: 2rem;
             background: linear-gradient(90deg, #ecc400 0%, #fffa8a 35%, #ddac17 65%, #ffff95 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.2s forwards;
        }

        .pslide-description {
            padding: 15px;
            font-size: 1.2rem;
            line-height: 1.6;
            color: #d4af37;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.4s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pslider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 100;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        .dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .dot:hover::after {
            width: 20px;
            height: 20px;
        }

        .pslider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .pslider-arrows:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .pslider-prev {
            left: 20px;
        }

        .pslider-next {
            right: 20px;
        }

        .pslider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            width: 100%;
            z-index: 100;
        }

        .pslider-progress-bar {
            height: 100%;
            background: linear-gradient(90deg,  #ecc400, #e9c12f);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .pslide {
                padding-top: 70px;
            }
        }

        @media (max-width: 992px) {
            .pslide {
                padding-top: 100px;
            }

            .text-content {
                padding: 0;
                line-height: 2rem;
            }

            .pslide-title {
                font-size: 30px;
                line-height: 1rem;
            }

            .pslide-description {
                font-size: 20px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .pslide {
                padding: 0;
                display: flex;
                flex-direction: column;
            }

            .text-content,
            .image-content {
                width: 100%;
            }

            .text-content {
                justify-content: flex-start;
                padding: 0;
                order: 2;
            }

            .pslide-title {
                font-size: 1.7rem;
                padding-left: 15px;
                text-align: center;
            }

            .pslide-description {
                font-size: 1.2rem;
                padding: 15px;
                text-align: center;
            }

            .image-content {
                padding-top: 27%;
                height: 400px;
                order: 1;
            }

            .image-content img {
                height: 100%;
                padding-top: 0;
            }

            .pslider-arrows {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .pslider-prev {
                left: 10px;
            }

            .pslider-next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .image-content {
                padding-top: 27%;
                height: 400px;
                order: 1;
            }

            .pslide {
                padding: 0;
            }

            .pslide-title {
                padding: 0;
                padding-left: 15px;
            }

            .pslide-description {
                padding: 15px;
                font-size: 15px;
                text-align: center;
            }

            .pslider-arrows {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        /* Hover effects for desktop only */
        @media (hover: hover) {
            .pslide:hover .image-content img {
                transform: scale(1.05);
                transition: transform 0.8s ease;
            }
            
            .pslide:hover .text-content {
                transform: translateX(-5px);
                transition: transform 0.3s ease;
            }
        }


       

    


/* Advanced Slider Styling */


/* Card Styles */




/* =========================
   ANIMATION GENERATOR SECTION STYLES 
========================= */

.animation-generator-section {

    max-width: 1500px;
    background-color: #c20303;
    border-radius: 24px;
    padding: 15px 40px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.animation-generator-section h1 {
    text-align: center;
    margin-bottom: 5%;
    font-size: 2.5rem;
    font-weight: 600;
     background: linear-gradient(90deg, #ecc400 0%, #fffa8a 35%, #ddac17 65%, #ffff95 100%);
   background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
    position: relative;
    z-index: 2;
    
    
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    
    
}

/* Step Box Styles */
.step-box {
    background: linear-gradient(90deg, #ffe97a 0%, #fffa8a 35%, #ffe493 65%, #ffff95 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.step-content {
    position: relative;
    z-index: 2;
    
}

.step-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    color: #5e0303;
    text-align: center;
}

.step-number {
    color: #5e0303;
    margin-right: 8px;
    font-weight: 700;
}

.step-box p {
    color: #5e0303;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: justify;
}

/* Hover Effects */
.step-box{
     transform: translateY(-15px);
    box-shadow: 0 15px 30px var(--hover-shadow);
}

.step-box:hover .icon-container {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 20px var(--hover-shadow);
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.step-box::before {
    transform: scaleX(1);
}



@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

/* Scroll-top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #540a03;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 999;
}

.scroll-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}
@media (max-width: 1100px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .animation-generator-section {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .steps-container {
        gap: 20px;
    }

    .step-box {
        padding: 20px;
    }

    .step-box h2 {
        font-size: 1.rem;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.5rem;
    }

    .step-box h2 {
        font-size: 1.2rem;
    }

    .step-box p {
        font-size: 1rem;
    }

    .icon-container {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}






/*slider*/


       :root {
            --wedding-red: #d70026;
            --wedding-gold: #d4af37;
            --wedding-dark: #930002;
            --wedding-light: #fff9eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--wedding-dark);
            color: var(--wedding-light);
            overflow-x: hidden;
        }

        /* Hero section before slider */
       
        
        /* Slider Section */
        .scroll-slider-container {
            position: relative;
            height: 500vh; /* 5 slides x 100vh */
        }
        
        .slider-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            background-color: var(--wedding-dark);
        }
        
        .slide-active {
            opacity: 1;
        }
        
        .slide-content {
            width: 50%;
            padding: 2rem;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.5s ease;
            
        }
        
        .slide-active .slide-content {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-image {
            width: 45%;
            height: 70vh;
           
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease 0.2s;
            overflow: hidden;
            position: relative;
        }
        
        .slide-active .slide-image {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .slide:hover .slide-image img {
            transform: scale(1.05);
        }
        
        .slide-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            color: #FFD700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.2s;
        }
        
        .slide-active .slide-title {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--wedding-red);
            transition: width 0.6s ease 0.4s;
        }
        
        .slide-active .slide-title::after {
            width: 80px;
        }
        
        .slide-description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.3s;
        }
        
        .slide-active .slide-description {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-subtitle {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: var(--wedding-gold);
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.4s;
        }
        
        .slide-active .slide-subtitle {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-decoration {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid var(--wedding-gold);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .decoration-1 {
            top: 20%;
            left: 10%;
            transition-delay: 0.6s;
        }
        
        .decoration-2 {
            bottom: 15%;
            right: 15%;
            transition-delay: 0.7s;
        }
        
        .slide-active .slide-decoration {
            opacity: 0.5;
            transform: rotate(45deg);
        }
        
        /* Horizontal progress indicator */
        .progress-indicator {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: row;
            gap: 1rem;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .progress-indicator.visible {
            opacity: 1;
        }
        
        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .progress-dot.active {
            background-color: var(--wedding-gold);
            transform: scale(1.3);
        }

        /* After slider section */
        .after-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #4a0002, var(--wedding-dark));
        }

        .after-content h2 {
            font-size: 3rem;
            color: var(--wedding-gold);
            margin-bottom: 2rem;
        }

        .after-content p {
            font-size: 1.2rem;
            color: var(--wedding-light);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .slide {
                flex-direction: column;
                justify-content: center;
                padding: 1rem;
            }
            
            .slide-content, .slide-image {
                width: 90%;
                margin: 0 auto;
            }
            
            .slide-image {
                height: 40vh;
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content {
                padding: 1rem;
            }
            
            .slide-title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
            }
            
            .slide-image {
                height: 35vh;
            }

          

            .after-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .slide-content {
                width: 95%;
                padding: 0.5rem;
            }
            
            .slide-image {
                width: 95%;
                height: 30vh;
            }
            
            .slide-title {
                margin-bottom: 1rem;
                padding-bottom: 0.5rem;
                text-align: center;
            }
            
            .slide-description {
                margin-bottom: 1rem;
                text-align: justify;
            }
            
            .decoration-1, .decoration-2 {
                width: 40px;
                height: 40px;
            }

            .progress-indicator {
                gap: 0.7rem;
            }

            .progress-dot {
                width: 10px;
                height: 10px;
            }
        }
        
          @media (max-width: 400px) {
            .slide-content {
                width: 95%;
                padding: 0.5rem;
            }
            
            .slide-image {
                width: 95%;
                height: 30vh;
            }
            
            .slide-title {
                margin-bottom: 1rem;
                padding-bottom: 0.5rem;
                font-size: 24px;
            }
            
            .slide-description {
                margin-bottom: 0rem;
                font-size: 13px;
            }
            
            .decoration-1, .decoration-2 {
                width: 40px;
                height: 40px;
            }

            .progress-indicator {
                gap: 0.7rem;
            }

            .progress-dot {
                width: 10px;
                height: 10px;
            }
        }

        /*segement*/

         
    
   body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #6b0202, #dc1414, #8d1414);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-title {
            text-align: center;
            color: #FFD700;
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: titleGlow 3s ease-in-out infinite alternate;
            margin-top: 3%;
        }

        @keyframes titleGlow {
            0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3); }
        }

        .segments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .segment {
            position: relative;
            background-color: #c20303;
            border: 3px solid #FFD700;
            border-radius: 20px;
            padding: 30px;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            animation: slideInUp 0.8s ease-out forwards;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .segment:nth-child(1) { animation-delay: 0.1s; }
        .segment:nth-child(2) { animation-delay: 0.2s; }
        .segment:nth-child(3) { animation-delay: 0.3s; }
        .segment:nth-child(4) { animation-delay: 0.4s; }
        .segment:nth-child(5) { animation-delay: 0.5s; }
        .segment:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .segment:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            border-color: #fbb0258e;
        }

        .segment::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;

            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .segment:hover::before {
            opacity: 1;
            animation: borderGlow 2s linear infinite;
        }

        @keyframes borderGlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .ornamental-border {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            pointer-events: none;
        }

        .ornamental-border::before {
            content: '❋';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            color: #FFD700;
            font-size: 16px;
            background: #c20303;
            padding: 0 10px;
        }

        .segment-icon {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
            animation: iconPulse 2s ease-in-out infinite;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .segment-title {
            color: #FFD700;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            margin-top: 10%;
        }

        .segment-text {
            color: #F5DEB3;
            font-size: 0.8rem;
            line-height: 1.6;
            flex-grow: 1;
            display: flex;
            align-items: center;
            text-align: justify;
        }

        .image-placeholder {
            width: 80%;
            height: 200px;
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
            border: 2px dashed rgba(255, 215, 0, 0.5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
            font-size: 0.9rem;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .image-placeholder:hover {
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
            border-color: #FFD700;
        }

        .mandala-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            opacity: 0.1;
            z-index: 0;
            animation: mandalaRotate 20s linear infinite;
        }

        @keyframes mandalaRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .mandala-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, transparent 20%, #FFD700 21%, #FFD700 22%, transparent 23%),
                        radial-gradient(circle, transparent 40%, #FFD700 41%, #FFD700 42%, transparent 43%),
                        radial-gradient(circle, transparent 60%, #FFD700 61%, #FFD700 62%, transparent 63%);
            border-radius: 50%;
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFD700;
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.7;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .segments-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .segment {
                padding: 20px;
                min-height: 250px;
            }
            
            .segment-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            .segment {
                padding: 15px;
                min-height: 200px;
            }
             .segment-text {
            padding: 20px;
            text-align: justify;
        }
        }
 /* =========================
            FAQ SECTION STYLES 
        ========================= */
       .faq-section {
            background-color: #c20303;
            position: relative;
            z-index: 0;
        }
        
        .faq-heading {
            text-align: center;
            padding-bottom: 30px;
        }
        
        .faq-heading h1 {
           background: linear-gradient(90deg, #ecc400 0%, #fffa8a 35%, #ddac17 65%, #ffff95 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
            font-size: 1.7rem;
        }
        
        .faq-container {
            padding-left: 20%;
            padding-right: 20%;
            padding-top: 5%;
            padding-bottom: 5%;
        }
        
        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .faq-container {
                padding-left: 10%;
                padding-right: 10%;
                padding-bottom: 120px;
            }
        }
     
        .faq-items-container {
            position: relative;
            margin-top: 2rem;
            z-index: 1;
        }
        
        /* FAQ Item Styling - maintaining original design */
        .faq-item {
            --rotate: 0deg;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            z-index: 1;
        }
        
        /* Animated border effect for items with glow */
        .faq-item.glow-active {
            border: none;
            background: #ffffff;
        }
        
        .faq-item.glow-active::before {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 12px;
            background: linear-gradient(45deg,  #fffc45, #f6fd38, #f6fd9e, #f8f552, #f9e982);
             filter: blur(1.5rem);
            position: absolute;
            z-index: 0;
            top: 0;
            left: 0;
            animation: spin 2.5s linear infinite, pulse 3s ease-in-out infinite;
            padding: 3px;
        }
        
        /* Enhanced glow shadow effect with motion */
        .faq-item.glow-active::after {
            position: absolute;
            content: "";
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            z-index: -1;
            border-radius: 8px;
            filter: blur(15px);
            background-image: linear-gradient(
                var(--rotate),
                #fffc45, #f6fd38, #f6fd9e, #f8f552, #f9e982
            );
            opacity: 0.7;
            animation: spin 2.5s linear infinite, glow-pulse 2s ease-in-out infinite alternate;
        }
        
        @keyframes spin {
            0% {
                --rotate: 0deg;
            }
            100% {
                --rotate: 360deg;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }
        
        @keyframes glow-pulse {
            0% {
                opacity: 0.4;
                filter: blur(8px);
            }
            100% {
                opacity: 0.8;
                filter: blur(16px);
            }
        }
        
        .faq-content {
            position: relative;
            z-index: 1;
            background: #ffffff;
            border-radius: 8px;
            margin: 0;
        }
        
        .faq-item.glow-active .faq-content {
            background: #ffffff;
            border-radius: 8px;
        }
        
       .faq-question {
        padding: 1.25rem;
        cursor: pointer;
        font-weight: 500;
        font-size: 1.05rem;
        display: flex;
        color: #000;
        justify-content: space-between;
        align-items: center;
        position: relative;
  }
         .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: black;
            padding: 0 1.25rem;
            line-height: 1.6;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            opacity: 1;
            max-height: 400px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
      
  .faq-question .icon {
    width: 24px;
    height: 24px;
    position: relative;
  }
  
  .faq-question .icon::before,
  .faq-question .icon::after {
    content: '';
    position: absolute;
    background-color: rgb(1, 8, 29);
    transition: transform 0.3s ease;
  }
  
  .faq-question .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .faq-question .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .faq-item.active .faq-question .icon::after {
    transform: translateX(-50%) rotate(90deg);
  }
        
    @media screen and (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 0.75rem 1.25rem;
    }

    .faq-answer {
        font-size: 15px;
        text-align: justify;
        margin-bottom: 15px;
    }
    .faq-item.active .faq-answer {
      opacity: 1;
      max-height: 450px;
      padding-bottom: 15px;
    }

      .faq-question .icon {
        width: 20px;
        height: 15px;
      }

    .faq-content {
        width: 100%;
    }

    .faq-container {
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 90px;
        padding-bottom: 120px;
    }
}


/* =========================
   FOOTER SECTION STYLES 
========================= */

.footer-container {
   position: relative;
    width: 100%;
    background-image: url('marriage_images/marrriage footer-01-01-01.jpg');
    background-size: cover;
    background-position: center;
    margin-top: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #c20303;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 5%;
    gap: 30px;
    width: 100%;
}

.footer-section {
    flex: 1;
}
.footer-section-left {
    margin-left: 100px;
}


.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffe877;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #ffe877;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffe877;
}

.footer-section .logo {
    margin-top: 15px;
    max-width: 90px;
}

.contact-form input, 
.contact-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    background-color:#020202;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #555;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #ffe877;
}


/* =========================
   RESPONSIVE STYLES 
========================= */

/* Large Screen Styles */
@media screen and (min-width: 1200px) {
    .footer-content {
        width: 80%;
        margin: 0 auto;
        max-width: 1400px;
    }    
}

/* Tablet Styles */
@media screen and (max-width: 992px) {
    .main-menu {
        display: none;
    }
    .footer-section-left {
        margin-left: 100px;
    }
    
    

}
/* Small Tablet Styles */
@media screen and (max-width: 768px) {

    .footer-content {
         padding: 0px 5%;
                gap: 0;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-section-left {
        margin-left: 0px;
    }

    .footer-container {
        padding: 40px 0;
    }    
     .text-overlay h2 {
    font-size: 2.1rem ;
   
}

.text-overlay p {
    font-size: 1.5rem ;
   
}
     
}
     /* Media query for mobile footer */
@media screen and (max-width: 767px) {
    .footer-container {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center bottom !important;
        padding-bottom: 30px; /* Add some bottom padding if needed */
        min-height: 67vh;
        bottom: 80px;
        }
        
        
}
.navigation {
    display: none;
}

/* Mobile Styles */
@media screen and (max-width: 576px) {

    .animation-generator-section h1,
    .header h1 {
        font-size: 1.7rem;
        margin-bottom: 6%;
    }

    .icon-container {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .faq-heading p {
        font-size: 0.9rem;
    }
   
    .faq-heading{
        padding-top: 6px;

    }
    .text-overlay h2 {
    font-size: 1.8rem ;
   
}

.text-overlay p {
    font-size: 1rem ;
   
}
   
}
@media screen and (max-width: 400px){
     .text-overlay h2 {
    font-size: 1.5rem ;
   
}

.text-overlay p {
    font-size: 0.8rem ;
   
}
}



/*Media query for mobile bottom bar*/
@media screen and (max-width: 992px) {
    .navigation {
        position: fixed;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        height: 80px;
        width: 100%;
        max-width: 100%;
        background: white;
        padding: 5px 0;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        justify-content: center;
    }

    .navigation ul {
        display: flex;
        justify-content: space-around;
        width: 100%;
        position: relative;
    }

    .navigation ul li {
        list-style: none;
        width: 100%;
        height: 60px;
        position: relative;
        z-index: 1;
    }

    .navigation ul li a {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #222327;
        text-decoration: none;
    }

    .navigation ul li .icon {
        font-size: 1.5em;
        transition: 0.5s;
    }

    .navigation ul li .text {
      font-size: 0.9em;
      opacity: 0;
      transform: translateY(10px);
      transition: 0.3s;
  }

  .navigation ul li.active .text {
      opacity: 1;
      transform: translateY(0px);
  }

    .navigation ul li.active .icon {
        transform: translateY(-18px);
        color: #000;
    }

    .indicator {
        position: absolute;
        top: -1.5em;
        width: 3em;
        height: 3em;
        border-radius: 50%;
        border: 0.4em solid #fff;
        transition: left 0.3s ease, transform 0.3s ease;
        z-index: 0;
        transform: translateX(-50%);
    }

    .indicator::before,
    .indicator::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: transparent;
        z-index: 0;
    }

    .navigation ul li:nth-child(1).active~.indicator {
        left: 6.25%;
        background-color: #ccf2f2;
    }

    .navigation ul li:nth-child(2).active~.indicator {
        left: 18.75%;
        background-color: #c20303;
    }

    .navigation ul li:nth-child(3).active~.indicator {
        left: 31.25%;
        background-color: #DFB5CA;
    }

    .navigation ul li:nth-child(4).active~.indicator {
        left: 43.75%;
        background-color: #C2F0F7;
    }

    .navigation ul li:nth-child(5).active~.indicator {
        left: 56.25%;
        background-color: #ffc7ae;
    }

    .navigation ul li:nth-child(6).active~.indicator {
        left: 68.75%;
        background-color: #E6E6FA;
    }

    .navigation ul li:nth-child(7).active~.indicator {
        left: 81.25%;
        background-color: #FFDEDE;
    }

    .navigation ul li:nth-child(8).active~.indicator {
        left: 93.75%;
        background-color: #f9e2ac;
    }
}


@media screen and (max-width: 480px) {
    .navigation {
        position: fixed;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        height: 80px;
        width: 100%;
        max-width: 100%;
        background: white;
        padding: 5px 0;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        justify-content: center;
    }

    .navigation ul {
        display: flex;
        justify-content: space-around;
        width: 100%;
        position: relative;
    }

    .navigation ul li {
        list-style: none;
        width: 0%;
        height: 60px;
        position: relative;
        z-index: 1;
    }

    .navigation ul li a {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #222327;
        text-decoration: none;
    }

    .navigation ul li .icon {
        font-size: 1.5em;
        transition: 0.5s;
    }

    .navigation ul li .text {
        font-size: 0.9em;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s;
    }

    .navigation ul li.active .text {
        opacity: 1;
        transform: translateY(0px);
        width: 127px;
    }

    .navigation ul li.active .icon {
        transform: translateY(-18px);
        color: #000;
    }

    .indicator {
        position: absolute;
        top: -1.5em;
        width: 3em;
        height: 3em;
        border-radius: 50%;
        border: 0.4em solid #fff;
        transition: left 0.3s ease, transform 0.3s ease;
        z-index: 0;
        transform: translateX(-50%);
    }

    .indicator::before,
    .indicator::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: transparent;
        z-index: 0;
    }

    .navigation ul li:nth-child(1).active~.indicator {
        left: 6.25%;
        background-color: #ccf2f2;
    }

    .navigation ul li:nth-child(2).active~.indicator {
        left: 18.75%;
        background-color: #c20303;
    }

    .navigation ul li:nth-child(3).active~.indicator {
        left: 31.25%;
        background-color: #DFB5CA;
    }

    .navigation ul li:nth-child(4).active~.indicator {
        left: 43.75%;
        background-color: #C2F0F7;
    }

    .navigation ul li:nth-child(5).active~.indicator {
        left: 56.25%;
        background-color: #ffc7ae;
    }

    .navigation ul li:nth-child(6).active~.indicator {
        left: 68.75%;
        background-color: #E6E6FA;
    }

    .navigation ul li:nth-child(7).active~.indicator {
        left: 81.25%;
        background-color: #FFDEDE;
    }

    .navigation ul li:nth-child(8).active~.indicator {
        left: 93.75%;
        background-color: #f9e2ac;
    }

}