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

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

    background: linear-gradient(143deg, rgb(255, 232, 193) 12%, rgba(255, 255, 255, 1) 54%, rgba(252, 211, 146, 1) 98%);
}

/* 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 Styling */

.pslider-container {
    position: relative;
    overflow: hidden;
    background: #fcc360;
    background: linear-gradient(143deg, rgba(252, 195, 96, 1) 12%, rgba(255, 255, 255, 1) 54%, rgba(252, 211, 146, 1) 98%);
}

.pslider {
    min-width: 100%;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    width: 100%;
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pslide {
    min-width: 100%;
    display: flex;
    flex-direction: row-reverse;

}

.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10%;
    padding: 40px;
}

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

.image-content img {
    width: 100%;
    margin-top: 20%;
    object-fit: contain;
}

.pslide-title {
    font-size: 2.5rem;
    padding: 15px;
    margin-top: 1rem;
    background: linear-gradient(90deg, #553601 0%, #c08504 35%, #c49710 65%, #ce8c0a 100%);
    background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
    text-align: left;
    line-height: 1.2;
}

.pslide-description {
    padding: 15px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #0e0d0d;
    margin-bottom: 1rem;
}

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

    .image-content img {
        margin-top: 0;
    }

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

    .pslide-title {
        font-size: 25px;
        line-height: 1.3;
    }

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

@media (max-width: 992px) {
    .image-content img {
        margin-top: 0;
    }

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

    .pslide-title {
        font-size: 25px;
        line-height: 1.3;
    }

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

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

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

    }

    .image-content img {
        margin-top: 0;
    }

    .text-content {
        justify-content: flex-start;
        padding: 0;
        order: 2;
        /* Ensure text appears after image */
    }

    .pslide-title {
        font-size: 1.7rem;
        line-height: 1.3;

        padding-left: 15px;
        text-align: center;
    }

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

    .image-content {
        padding-top: 27%;
        height: 400px;
        order: 1;
        /* Ensure image appears before text */
    }

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

@media (max-width: 480px) {
    .image-content img {
        margin-top: 0;
    }

    .image-content {
        padding-top: 27%;
        height: 400px;
        order: 1;
        /* Ensure image appears before text */
    }

    .pslide {
        padding: 0;
    }

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


/* Scroll-top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #f4978e;
    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);
}


/* Advanced Slider Styling */
.main_heading h1 {
  font-size: 3rem auto;
  margin-top: 1rem;
  background: linear-gradient(90deg, #553601 0%, #c08504 35%, #c49710 65%, #ce8c0a 100%);
    background-clip: border-box;
  background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color: transparent;
  text-align: left;
  line-height: 1.8;
  text-align: center;
  margin-top: 6%;
  margin-left: 3%;
  margin-right: 3%;
}
.econtainer {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 450px;
    max-width: 90%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    margin-top: 2%;
    margin-bottom: 5%;
    margin-left: 35%;
    background: #fcc360;
    background: linear-gradient(143deg, rgba(252, 195, 96, 1) 12%, rgba(255, 255, 255, 1) 54%, rgba(252, 211, 146, 1) 98%);
}

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

.form-header {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(21, 20, 20);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #0b0b0b;
    color: white;
    font-size: 16px;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: rgb(14, 15, 15);
}

.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
    top: -20px;
    font-size: 12px;
    color: rgb(19, 19, 19);
}

.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #100f0f;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease all;
}

.btn-submit {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgb(17, 18, 18);
    color: rgb(11, 11, 11);
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 12px 20px;
    margin: 10px 0;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(5, 92, 107, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(10, 10, 10, 0.2);
    transition: all 0.3s;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 100%;
}


@media (max-width: 480px) {
    .econtainer {
        padding: 20px;
    }
}

@media screen and (max-width:1200px) {
    .econtainer {
        margin: auto;
        margin-bottom: 60px;
    }


}


/*Scroll Section*/
  

        .scroll-gallery-container {
            width: 100%;
            padding: 60px 0;
           
        }

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

        .header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
            gap: 40px;
        }

        .title-section {
            flex: 1;
        }

        .main-title {
            font-size: clamp(2rem, 5vw, 5rem);
            font-weight: normal;
            line-height: 0.9;
            margin-bottom: 20px;
            color: #1a1a1a;
            background: linear-gradient(90deg, #553601 0%, #c08504 35%, #c49710 65%, #ce8c0a 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-align: center;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #666;
           
            margin-top: 20px;
            text-align: center;
        }

        .nav-arrow {
            width: 60px;
            height: 60px;
            border: 2px solid #2c2c2c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 40px;
            flex-shrink: 0;
        }

        .nav-arrow:hover {
            background: #2c2c2c;
            transform: scale(1.1);
        }

        .nav-arrow:hover::after {
            color: white;
        }

        .nav-arrow::after {
            content: '→';
            font-size: 24px;
            transition: color 0.3s ease;
        }

        /* Slider Container */
        .slider-container {
            width: 100%;
            overflow: hidden;
            margin-top: 40px;
            position: relative;
        }

        .slider-track {
            display: flex;
            animation: slideInfinite 30s linear infinite;
            width: calc(350px * 12);
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes slideInfinite {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6));
            }
        }

        .gallery-item {
            flex: 0 0 320px;
            margin-right: 30px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
           
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
        }

        .gallery-item:hover .play-button {
            opacity: 1;
            transform: scale(1);
        }

        .play-button::after {
           
            font-size: 16px;
            color: #2c2c2c;
            margin-left: 3px;
        }

        .item-info {
            padding: 25px;
            background: white;
        }

        .item-title {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #1a1a1a;
            text-align: center;
        }

        .item-subtitle {
            font-size: 1rem;
            color: #000;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            animation: slideUp 0.4s ease;
        }

        .modal-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .close-button {
            position: absolute;
            top: -60px;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Slider Controls */
        .slider-controls {
            text-align: center;
            margin-top: 30px;
        }

        .control-btn {
            background: #caa944;
            color: white;
            border: none;
            padding: 12px 24px;
            margin: 0 10px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            .container {
                padding: 0 40px;
            }
            
            .main-title {
                font-size: 6rem;
            }
            
            .gallery-item {
                flex: 0 0 380px;
                margin-right: 40px;
            }
            
            .slider-track {
                width: calc(420px * 12);
            }
            
            @keyframes slideInfinite {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-420px * 6));
                }
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .scroll-gallery-container {
                padding: 40px 0;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .header {
                margin-bottom: 40px;
                gap: 30px;
            }
            
            .main-title {
                font-size: clamp(2.5rem, 6vw, 5rem);
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
                margin-top: 20px;
            }
            
            .nav-arrow::after {
                font-size: 20px;
            }
            
            .gallery-item {
                flex: 0 0 280px;
                margin-right: 25px;
            }
            
            .slider-track {
                width: calc(305px * 12);
            }
            
            @keyframes slideInfinite {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-305px * 6));
                }
            }
        }

        /* Mobile Landscape */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 30px;
                text-align: center;
            }

            .title-section {
                width: 100%;
            }

            .main-title {
                font-size: clamp(2rem, 8vw, 4rem);
                margin-bottom: 15px;
            }

            .subtitle {
                max-width: 100%;
                margin: 0 auto;
                font-size: 1rem;
            }

            .nav-arrow {
                width: 45px;
                height: 45px;
                margin: 20px auto 0;
                align-self: center;
            }

            .gallery-item {
                flex: 0 0 250px;
                margin-right: 20px;
            }

            .image-container {
                height: 200px;
            }

            .item-info {
                padding: 20px;
            }

            .item-title {
                font-size: 1.1rem;
            }

            .item-subtitle {
                font-size: 0.8rem;
            }

            .slider-track {
                width: calc(270px * 12);
            }

            @keyframes slideInfinite {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-270px * 6));
                }
            }
        }

        /* Mobile Portrait */
        @media (max-width: 480px) {
            .scroll-gallery-container {
                padding: 30px 0;
            }
            
            .container {
                padding: 0 10px;
            }

            .main-title {
                font-size: clamp(1.8rem, 10vw, 3rem);
                line-height: 1;
            }

            .subtitle {
                font-size: 0.9rem;
                margin-top: 15px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                margin-top: 15px;
            }

            .nav-arrow::after {
                font-size: 18px;
            }

            .gallery-item {
                flex: 0 0 220px;
                margin-right: 15px;
            }

            .image-container {
                height: 180px;
            }

            .item-info {
                padding: 15px;
            }

            .item-title {
                font-size: 1rem;
                margin-bottom: 5px;
            }

            .item-subtitle {
                font-size: 0.75rem;
            }

            .slider-track {
                width: calc(235px * 12);
            }

            @keyframes slideInfinite {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-235px * 6));
                }
            }

            .control-btn {
                padding: 10px 20px;
                font-size: 12px;
                margin: 0 5px;
            }

            .close-button {
                top: -50px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .main-title {
                font-size: 2.5rem;
            }

            .gallery-item {
                flex: 0 0 200px;
            }

            .slider-track {
                width: calc(215px * 12);
            }

            @keyframes slideInfinite {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-215px * 6));
                }
            }
        }
/* =========================
       FAQ SECTION STYLES 
========================= */
 .faq-section {
        background: linear-gradient(to bottom, rgb(253, 240, 217) 12%, rgb(251, 252, 252) 30%,#e9ffff );
        position: relative;
        z-index: 0;
        }
        
        .faq-heading {
            text-align: center;
            padding-bottom: 30px;
        }
        
        .faq-heading h1 {
            background: linear-gradient(90deg, #3b0352 0%, #6c0694 35%, #c20ec2 65%, #e92fe9 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, #ff4545, #00ff99, #006aff, #ff0095);
             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),
                #5ddcff, #3c67e3 43%, #4e00c2
            );
            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('./pre-images/footer.png');
    background-size: cover;
    background-position: center;
    margin-top: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

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

.footer-section {
    flex: 1;
}
.footer-section-left {
            margin-left: 200px;
        }
.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

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

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

.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: #333;
    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: #666;
}
   /* .footer-section .contact-form {
            width: 80%;
        } */

/* =========================
   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: 30px 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: 1.8rem ;
   
}

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

@media screen and (max-width: 480px) {
    .footer-content {
        padding: 0 5%;
        gap: 0;
    }
}


     /* 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.8rem;
        margin-bottom: 6%;
    }
    .text-overlay h2 {
    font-size: 1.4rem ;
    }

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

.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;
        margin-right: 27px;
    }

    .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;
    }

}