html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Albert Sans', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

.slider {
    margin-top: 5%;
    position: relative;
    width: 100%;
    height: 370px;
}

.item {
    position: absolute;
    width: 200px;
    height: 320px;
    text-align: justify;
    background-color: #000000;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#next,
#prev {
    position: absolute;
    top: 40%;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 400px;
    cursor: pointer;
}

#next {
    left: unset;
    right: 400px;
}


.stacked-cards .card {
    border-radius: 0.15em;
    min-height: 200px;
    max-height: 250px;
    padding: 1em 0em;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.16);
    width: 100%;
    transform-origin: 50% 0;
    transform: perspective(100px) translateY(75px) scale(0.9) rotateX(-10deg);
    opacity: 0;
    transition: all 0.4s ease, max-height 0.75s ease;
}

.stacked-cards .card--added {
    transform: translateY(0px) scale(1);
    opacity: 1;
}

.stacked-cards .card:nth-last-of-type(2) {
    transform: translate3d(0, -10px, -32px);
    opacity: 1;
}

/* .card:nth-last-of-type(2):hover {
    transform: translate3d(0, calc(-100% - 0px), -32px);
} */

.stacked-cards .card:nth-last-of-type(3) {
    transform: translate3d(0, -20px, -64px);
    opacity: 0.85;
}

.stacked-cards .card:nth-last-of-type(3):hover {
    transform: translate3d(0, calc(-100% - 10px), -64px);
}

.stacked-cards .card:nth-last-of-type(4) {
    transform: translate3d(0, -30px, -96px);
    opacity: 0.7;
}

.stacked-cards .card:nth-last-of-type(4):hover {
    transform: translate3d(0, calc(-100% - 20px), -96px);
}

.stacked-cards .card:nth-last-of-type(5) {
    transform: translate3d(0, -40px, -128px);
    opacity: 0.55;
}

.stacked-cards .card:nth-last-of-type(5):hover {
    transform: translate3d(0, calc(-100% - 30px), -128px);
}

.stacked-cards .card:nth-last-of-type(6) {
    transform: translate3d(0, -50px, -160px);
    opacity: 0.4;
}

.stacked-cards .card:nth-last-of-type(6):hover {
    transform: translate3d(0, calc(-100% - 40px), -160px);
}

.stacked-cards .card:nth-last-of-type(7) {
    transform: translate3d(0, -60px, -192px);
    opacity: 0.25;
}

.stacked-cards .card:nth-last-of-type(7):hover {
    transform: translate3d(0, calc(-100% - 50px), -192px);
}

.stacked-cards .card:nth-last-of-type(8) {
    transform: translate3d(0, -70px, -224px);
    opacity: 0.1;
}

.stacked-cards .card:nth-last-of-type(8):hover {
    transform: translate3d(0, calc(-100% - 60px), -224px);
}

.stacked-cards .card:nth-last-of-type(9) {
    transform: translate3d(0, -80px, -256px);
    opacity: -0.05;
}

.stacked-cards .card:nth-last-of-type(9):hover {
    transform: translate3d(0, calc(-100% - 70px), -256px);
}

.stacked-cards .card:nth-last-of-type(10) {
    transform: translate3d(0, -90px, -288px);
    opacity: -0.2;
}

.stacked-cards .card:nth-last-of-type(10):hover {
    transform: translate3d(0, calc(-100% - 80px), -288px);
}

.stacked-cards .card:nth-last-of-type(11) {
    transform: translate3d(0, -100px, -320px);
    opacity: -0.35;
}

.stacked-cards .card:nth-last-of-type(11):hover {
    transform: translate3d(0, calc(-100% - 90px), -320px);
}

.stacked-cards .card:nth-last-of-type(n+10) {
    display: none;
}

.stacked-cards .card:nth-last-of-type(n+2) {
    position: absolute;
    max-height: 100px;
    overflow: hidden;
}

.stacked-cards .card:nth-last-of-type(n+2):hover {
    opacity: 1;
    transition-delay: 0.333s;
}

.stacked-cards {
    width: 50%;
    margin: auto;
    margin-top: 20px;
    perspective: 1000px;
    position: relative;
}

.answer-card {
    background-color: #ffe197;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@keyframes anim-ss {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}

.answer-card .heading-beta {
    color: #000000;
    text-shadow: 4px -3px 0px #ececec;
    text-align: center;
}

.answer-card textarea {
    color: black;
    border-radius: 10px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    text-align: center;
    width: 100%;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
}

.answer-card .next {
    background: #0e0e0e;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.age-card {
    /* background-image: url('assets/images/giphy-2.gif'); */
    background-color: #ffe197;
    background-position: center;
    background-size: cover;
    animation: anim-ss steps(23) 0.1s infinite;
}

@keyframes anim-ss {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}

.age-card .heading-beta {
    color: #000000;
    text-align: center;
    margin-top: 0;
}

.age-group {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.age-range {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    background: #f5d16c;
    border-radius: 50%;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.age-range:hover {
    background: #e78e18;
    color: white;
    transform: scale(1.1);
    animation: 1s;
}


.debug {
    color: #795112;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 100;
    font-size: 2vw;
    font-weight: 800;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #f5d16c;
    border-radius: 50%;
    width: 15%;
    height: 0;
    padding-bottom: 15%;
    transform: translate3d(-50%, -50%, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.circle:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: #ffc433;
    border-radius: 50%;
    top: 5%;
    left: 5%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.circle .dot {
    position: absolute;
    width: 10%;
    height: 50%;
    left: 47.5%;
    top: 0;
    transform: rotate(0deg);
    transform-origin: center bottom;
    cursor: pointer;
}

.circle .dot:before {
    content: "";
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #000;
    width: 200%;
    transform: translate3d(-25%, -25%, 0);
    height: 0;
    padding-bottom: 200%;
    border-radius: 50%;
    cursor: pointer;
}

.age-card .submit {
    background: #0e0e0e;
    color: white;
    padding: 10px 20px;
    border: none;
    display: flex;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.thank-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2b522;
}

.smiley {
    font-size: 37px;
    display: block;
    text-align: center;
}

.footer-cred {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Main Footer Styles */
.main-footer {
    /* background: linear-gradient(135deg, #2d3391 0%, #1a1f5c 100%); */
    color: #fff;
    padding: 60px 0 0;
    /* margin-top: 60px; */
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #faca53, #f9c110, #faca53);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    /* filter: brightness(0) invert(1); */
    /* opacity: 0.95; */
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #4c458a;
    font-family: 'Albert Sans', sans-serif;
}

.footer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4c458a;
    margin-top: 2px;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
    color: #4c458a;
    font-family: 'Albert Sans', sans-serif;
}

.footer-text a {
    color: #4c458a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: #4c458a;
    text-decoration: underline;
}

.footer-text .separator {
    margin: 0 10px;
    color: #4c458a;
}

/* Footer Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social-description {
    font-size: 14px;
    color: #4c458a;
    margin-bottom: 20px;
    font-family: 'Albert Sans', sans-serif;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #4c458a;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    /* background: rgba(255, 255, 255, 0.2); */
    /* border-color: rgba(255, 255, 255, 0.4); */
}

.footer-social-link.facebook:hover {
    /* background: #1877f2;
    border-color: #1877f2; */
    color: #4c458a;
}

.footer-social-link.instagram:hover {
    /* background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888; */
    color: #4c458a;
}

.footer-social-link.youtube:hover {
    /* background: #ff0000;
    border-color: #ff0000; */
    color: #4c458a;
}

.footer-social-link.twitter:hover {
    /* background: #1da1f2;
    border-color: #1da1f2; */
    color: #4c458a;
}

.footer-social-link.linkedin:hover {
    /* background: #0077b5;
    border-color: #0077b5; */
    color: #4c458a;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: #353a92;
}

.footer-bottom-content {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright,
.developer {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Albert Sans', sans-serif;
}

.developer a {
    color: #faca53;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer a:hover {
    color: #f9c110;
    text-decoration: underline;
}

/* Responsive Footer */
@media only screen and (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-social-description {
        text-align: center;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-item {
        margin-bottom: 18px;
    }

    .footer-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-text .separator {
        margin: 0 8px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .copyright,
    .developer {
        font-size: 13px;
    }
}

.logo-holder {
    position: absolute;
    top: -10px;
    right: 10%;
    padding: 20px;
    padding-top: 40px;
    background: white;
    border-radius: 25px;
    z-index: 100;
}

.logo-holder img {
    width: 200px;
}

.m1 {
    width: 30%;
    position: absolute;
    right: 0;
    top: 0;
    height: 25%;
}

.m2 {
    width: 25%;
    position: absolute;
    left: 60%;
    top: 0;
}

.m3 {
    width: 10%;
    position: absolute;
    right: 0;
    top: 15%;
}

.m4 {
    width: 15%;
    position: absolute;
    left: -5%;
    top: -12%;
}

.m5 {
    width: 10%;
    position: absolute;
    left: -40px;
    top: 15px;
}

.cl1 {
    width: 100%;
    text-align: center;
    margin-top: 13%;
}

.cl-im1 {
    width: 20%;
    margin-left: 5vw;
    margin-top: 4vh;
}

.m6 {
    position: absolute;
    z-index: -1;
    width: 130%;
    left: -30%;
    top: 10%;
}

.m7 {
    position: absolute;
    left: 5%;
    width: 15%;
    top: 50%;
}

.m8 {
    position: absolute;
    right: 5%;
    width: 15%;
    top: 25%;
}

.m9 {
    position: absolute;
    width: 50%;
    left: 54%;
    transform: translateX(-50%);
    top: 23%;
    z-index: -1;
}

.m10 {
    position: absolute;
    width: 10%;
    right: -10%;
    transform: translateX(-50%);
    top: 120%;
    z-index: -1;
}

.gims {
    text-align: center;
    margin-top: 175px;
}

.gims img {
    width: 30%;
}

.m11 {
    position: absolute;
    width: 15%;
    left: 0;
    transform: translateX(-50%);
    top: 100%;
    z-index: -1;
}

.mtitle {
    background: #f9c110;
    width: max-content;
    padding: 15px 75px;
    font-size: 20px;
    border-radius: 15px;
    margin: auto;
}

.hrline {
    border: 0.5px dotted #fffefe;
    margin-top: 30px;
}

.wrapper {
    /* margin-top: 150px; */
}

.wrapper .outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .card {
    min-height: auto !important;
    width: 25vw !important;
    height: 25px !important;
    display: flex;
    align-items: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    animation: animate 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
    transform-origin: 50%;
    border-radius: 30px;
    background: #000000;
    color: white;
    font-size: 16px;
}

.wrapper .outer:hover .card {
    animation-play-state: paused;
}

/* .wrapper .card:last-child {
    animation-delay: calc(-3s * var(--delay));
} */

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.5);
    }

    5%,
    20% {
        opacity: 0.4;
        transform: translateY(100%) scale(0.7);
    }

    25%,
    40% {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0%) scale(1);
    }

    45%,
    60% {
        opacity: 0.4;
        transform: translateY(-100%) scale(0.7);
    }

    65%,
    100% {
        opacity: 0;
        transform: translateY(-100%) scale(0.5);
    }
}

.wrapper .card .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .card .img {
    height: 90px;
    width: 90px;
    position: absolute;
    left: -5px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.wrapper .content {
    text-align: center;
    width: 100%;
}

.wrapper .card .img img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.wrapper .details span {
    font-weight: 600;
    font-size: 18px;
}

.wrapper .card a {
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%);
    transition: all 0.3s ease;
}

.wrapper .card a:hover {
    transform: scale(0.94);
}

.wrapper .card p {
    font-style: italic;
}

.ci-hold {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.cirle-main {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.cirle-main:nth-child(1) {
    background: #faca53;
}

.cirle-main:nth-child(2) {
    background: #faca53;
}

.cirle-main:nth-child(3) {
    background: #faca53;
}

.cirle-main:nth-child(4) {
    background: #faca53;
}

.cirle-main .cspan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
    font-weight: 800;
    font-size: 15px;
}

.cirle-main .cspan{
    padding-top: 25px;
}

.semicircle {
    position: absolute;
    top: 50%;
    left: 3%;
    height: 47%;
    width: 94%;
    border-radius: 0 0 150px 150px;
    background-color: #00000052;
}

.semicircle span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    font-weight: 600;
    margin-top: 10px;
    font-size: 13px;
    word-wrap: break-word;
    text-align: center;
    height: 18px;
    font-weight: 200;
}

.cirle-main:hover {
    background: radial-gradient(#39a9b6, #30c2d1);
    color: white;
}

.selected {
    background: radial-gradient(#e1ab1e, #e1ab1e) !important;
    color: white;
    box-shadow: -2px 2px 0px black;
}


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

    .logo-holder {
        padding-top: 15px;
        right: 3%;
    }

    .logo-holder img {
        width: 20vw;
    }

    .m1 {
        height: 100px;
    }

    .m2 {
        right: 0;
        width: 95px;
        left: auto;
    }

    .m3 {
        width: 90px;
        top: 100px;
    }

    .m4 {
        top: -35px;
        width: 100px;
        left: -1%;
    }

    .m5{
        width: 17%;
        position: absolute;
        left: 0;
        top: 15px;
    }

    .cl1 {
        margin-top: 150px;
    }

    .cl-im1 {
        width: 45vw;
    }

    .m7 {
        top: 25vh;
        width: 20vw;
        left: 43px;
    }

    .m8 {
        top: 17vh;
        width: 30vw;
        right: 0;
    }

    .ppr {
        margin-top: 100px;
        font-size: 17px;
        text-align: center;
    }

    .stacked-cards {
        width: 80vw;
        margin: auto;
    }

    .age-card .heading-beta {
        font-size: 17px;
        padding-top: 20px;
    }

    .ci-hold{
        margin: 17px auto;
    }

    .cirle-main{
        width: 18vw;
        height: 18vw;
    }

    .semicircle span{
        font-size: 4vw;
        margin-top: 3px;
    }

    .age-card .submit{
        text-align: center;
        width: auto;
        margin: auto;
        position: relative;
        bottom: inherit;
        left: auto;
        transform: none;
    }
    .ws {
        font-size: 17px;
    }

    #next,
    #prev {
        left: 10px;
    }

    #next {
        left: unset;
        right: 10px;
    }

    .slider {
        overflow: hidden;
    }

    .mtitle {
        font-size: 13px;
        padding: 16px;
    }

    .m10 {
        display: none;
        /* overflow: hidden;
        right: 0; */
    }

    .gims img {
        width: 60vw;
    }

    .thank-card h2 {
        text-align: center;
        font-size: 15px;
    }

    .circle {
        width: 30%;
        padding-bottom: 30%;
    }

    .debug {
        font-size: 17px;
    }

    .wrapper{
        margin-top: 95px;
    }

    .wrapper .card{
        width: 65vw !important;
        padding: 16px;
        font-size: 16px;
    }

    .cirle-main .cspan{
        display: flex;
        align-items: end;
        justify-content: center;
        padding: 0;
        height: 50%;
        font-size: 3vw;
    }

    .gims{
        margin-top: 130px;
    }
}

.main {
    width: 100vw;
    background-image: url(assets/images/bg-main.png);
    height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.logo{
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: white;
    padding: 5px 10px;
}

.logo-text{
    margin: 0;
    text-align: center;
    color: #D9320D;
    font-weight: 400;
    font-size: 14px;
}

.home-container{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.title-text{
    width: 50%;
    margin: auto;
    text-align: center;
    z-index: 3;
}

.center-image{
    /* margin-top: 50px; */
    width: 30%;
    margin-right: 50px;
}

.activity-container{
    text-align: center;
    width: 85%;
    margin: auto;
    /* margin-top: -250px; */
    position: relative;
}
.activity-row{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #febc0f38; */
    border-radius: 30px;
}
.activity-col{
    width: 100%;
    text-align: center;
}
.activity-image{
    width: 80%;
}

/* Typeform-like Multi-step Form Styles */
.typeform-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.typeform-progress {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #faca53 0%, #f9c110 100%);
    width: 25%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.step-content {
    width: 100%;
}

.question-text-main{
    color: #2D3391;
    font-style: italic;
}

.question-text-clr{
    color: #D9320D;
}

.step-question {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Albert Sans', sans-serif;
}

.step-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.typeform-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Albert Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    resize: none;
}

.typeform-input:focus {
    outline: none;
    border-color: #faca53;
    box-shadow: 0 0 0 3px rgba(250, 202, 83, 0.1);
}

.typeform-input::placeholder {
    color: #999;
}

/* Animated Textarea Styles */
.animated-textarea {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    border: 2px solid #e0e0e0;
    animation: borderPulse 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(250, 202, 83, 0.1);
    text-align: center;
    resize: none;
    overflow-y: auto;
}

.animated-textarea::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #faca53, #f9c110, #faca53, #f9c110);
    background-size: 300% 300%;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.animated-textarea:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(250, 202, 83, 0.2);
    border-color: #faca53;
}

.animated-textarea:focus {
    outline: none;
    border-color: #f9c110;
    box-shadow: 0 0 0 4px rgba(250, 202, 83, 0.2), 0 4px 20px rgba(250, 202, 83, 0.3);
    transform: translateY(-2px) scale(1.01);
    animation: focusPulse 1.5s ease-in-out infinite;
}

.animated-textarea:focus::before {
    opacity: 0.3;
}

.animated-textarea::placeholder {
    color: #999;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.animated-textarea:focus::placeholder {
    opacity: 0.5;
    animation: placeholderFade 2s ease-in-out infinite;
}

@keyframes placeholderFade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: #e0e0e0;
        box-shadow: 0 2px 8px rgba(250, 202, 83, 0.1);
    }
    50% {
        border-color: #faca53;
        box-shadow: 0 2px 12px rgba(250, 202, 83, 0.2);
    }
}

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

@keyframes focusPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(250, 202, 83, 0.2), 0 4px 20px rgba(250, 202, 83, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(250, 202, 83, 0.15), 0 6px 25px rgba(250, 202, 83, 0.4);
    }
}

@keyframes placeholderShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Add a subtle typing indicator effect */
.animated-textarea:not(:placeholder-shown) {
    animation: none;
    border-color: #f9c110;
    box-shadow: 0 2px 12px rgba(250, 202, 83, 0.25);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group label {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    min-width: 120px;
    font-family: 'Albert Sans', sans-serif;
    flex-shrink: 0;
}

.typeform-btn {
    background: linear-gradient(135deg, #faca53 0%, #f9c110 100%);
    color: #000;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Albert Sans', sans-serif;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(250, 202, 83, 0.3);
}

.typeform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 202, 83, 0.4);
}

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

.typeform-btn-secondary {
    background: #f5f5f5;
    color: #333;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.typeform-btn-secondary:hover {
    background: #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

/* Age Selection */
.form-group:has(.age-selection) {
    align-items: flex-start;
}

.age-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    flex: 1;
}

.age-option {
    padding: 16px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.age-option:hover {
    border-color: #faca53;
    background-color: #fffbf0;
}

.age-option.selected {
    background: linear-gradient(135deg, #faca53 0%, #f9c110 100%);
    border-color: #f9c110;
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(250, 202, 83, 0.3);
}

/* OTP Input */
.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #faca53;
    box-shadow: 0 0 0 3px rgba(250, 202, 83, 0.1);
}

.resend-otp {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

.resend-otp a {
    color: #f9c110;
    text-decoration: none;
    font-weight: 600;
}

.resend-otp a:hover {
    text-decoration: underline;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content .step-question {
    color: #4caf50;
    margin-bottom: 15px;
}

.success-content .step-description {
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Social Media Section */
.social-media-section {
    margin: 40px 0 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid rgba(250, 202, 83, 0.2);
}

.social-media-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Albert Sans', sans-serif;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: #bc1888;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Share Section */
.share-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(250, 202, 83, 0.2);
}

.share-message {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin: 0;
    font-family: 'Albert Sans', sans-serif;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .typeform-container {
        padding: 20px 15px;
        /* min-height: 400px; */
    }

    .step-question {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-group label {
        min-width: auto;
        margin-bottom: 0;
    }

    .typeform-input {
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
    }

    .age-selection {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .age-option {
        padding: 14px;
        font-size: 14px;
    }

    .otp-input {
        width: 40px;
        height: 50px;
        font-size: 20px;
    }

    .otp-container {
        gap: 8px;
    }

    .form-actions {
        flex-direction: column;
    }

    .typeform-btn {
        width: 100%;
    }

    .typeform-btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social-media-section {
        padding: 20px 15px;
        margin: 30px 0 20px;
    }

    .social-media-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .share-message {
        font-size: 14px;
    }
}

/* Testimonials Carousel Styles */
.testimonials-section {
    width: 100%;
    padding: 60px 0 90px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    text-align: center;
    /* background: #FACA53;
background: radial-gradient(circle,rgba(250, 202, 83, 1) 0%, rgba(250, 202, 83, 0.32) 100%); */
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-section::before {
    left: 0;
    /* background: linear-gradient(to right, rgb(235 235 235 / 47%), rgba(255, 251, 240, 0)) */
}

.testimonials-section::after {
    right: 0;
    /* background: linear-gradient(to left, rgb(235 235 235 / 47%), rgba(255, 251, 240, 0)) */
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scrollCarousel 60s linear infinite;
    will-change: transform;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgb(250 202 83 / 0%);
    border: 2px solid rgb(250 202 83 / 69%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #ffefd01a;
}

/* .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #faca53, #f9c110, #faca53);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
} */

.testimonial-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 12px 32px rgba(250, 202, 83, 0.25);
    border-color: #faca53;
    /* border: 2px solid #2d3291; */
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-message {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-message p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    font-family: 'Albert Sans', sans-serif;
    position: relative;
    /* padding-left: 20px; */
}

/* .testimonial-message p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 48px;
    color: #faca53;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
} */

.testimonial-footer {
    border-top: 1px solid rgba(250, 202, 83, 0.2);
    padding-top: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: 'Albert Sans', sans-serif;
}

.author-date {
    font-size: 13px;
    color: #666;
    font-family: 'Albert Sans', sans-serif;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Pause animation on hover */
.testimonials-section:hover .testimonials-track {
    animation-play-state: paused;
}

/* Responsive Design for Carousel */
@media only screen and (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testimonial-message p {
        font-size: 14px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-date {
        font-size: 12px;
    }

    .testimonials-section::before,
    .testimonials-section::after {
        width: 80px;
    }
}

.path-1{
    position: absolute;
    left: 0%;
    top: 50%;
}

.path-2{
    position: absolute;
    right: 0%;
    transform: rotate(180deg);
    top: 50%;
}

.others{
    width: 200px;
    margin: auto;
    margin-bottom: 40px;
}

.flower-image{
    position: absolute;
    width: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

@media only screen and (max-width: 768px) {
    /* Main Container & Header */
    .main {
        height: auto;
        min-height: 60vh;
        padding-bottom: 20px;
    }

    .logo {
        position: relative;
        top: 0;
        width: 70%;
        margin: auto;
        left: 0;
        transform: none;
    }

    .logo img {
        width: 90% !important;
        max-width: 90%;
    }

    .home-container {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 20px;
        position: relative;
    }

    .title-text {
        width: 90% !important;
        margin: 0 auto 20px;
    }

    .center-image {
        width: 75% !important;
        margin: 0 auto !important;
        z-index: 100;
    }

    .flower-image {
        width: 65%;
        opacity: 0.6;
        position: absolute;
        bottom: -50px;
    }

    .question-text-main{
        font-size: 16px;
    }

    /* Activity Container */
    .activity-container {
        width: 100% !important;
        /* width: 95% !important;
        margin: 20px auto !important;
        padding: 0 10px; */
    }

    .activity-row {
        flex-direction: column;
        border-radius: 20px;
    }

    .activity-col {
        width: 100% !important;
        padding: 10px;
    }

    .activity-image {
        width: 100% !important;
        max-width: 100%;
    }

    /* Path Images */
    .path-1,
    .path-2 {
        display: none;
    }

    /* Typeform Container */
    .typeform-container {
        max-width: 100% !important;
        padding: 20px 15px !important;
        border-radius: 20px !important;
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
    }

    .typeform-progress {
        margin-bottom: 20px;
    }

    /* Form Steps */
    .step-question {
        font-size: 18px !important;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .step-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Form Inputs */
    .typeform-input {
        font-size: 16px !important;
        padding: 12px 16px !important;
        width: 100% !important;
    }

    .animated-textarea {
        width: 100% !important;
        font-size: 16px;
    }

    /* Form Groups */
    .form-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 20px;
    }

    .form-group label {
        min-width: auto !important;
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }

    /* Age Selection */
    .age-selection {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        width: 100%;
    }

    .age-option {
        padding: 12px 8px !important;
        font-size: 13px !important;
    }

    /* OTP Inputs */
    .otp-container {
        gap: 8px !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .otp-input {
        width: 40px !important;
        height: 50px !important;
        font-size: 18px !important;
    }

    /* Buttons */
    .typeform-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 15px !important;
        margin-top: 15px;
    }

    .form-actions {
        flex-direction: column !important;
        gap: 10px;
        margin-top: 20px;
    }

    .typeform-btn-secondary {
        margin-right: 0 !important;
        margin-bottom: 0;
        width: 100% !important;
    }

    /* Social Media Section in Success */
    .social-media-section {
        padding: 20px 15px !important;
        margin: 25px 0 20px !important;
    }

    .social-media-title {
        font-size: 14px !important;
        margin-bottom: 15px;
    }

    .social-media-links {
        gap: 10px;
        justify-content: center;
    }

    .social-link {
        width: 42px !important;
        height: 42px !important;
    }

    .social-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .share-message {
        font-size: 13px !important;
    }

    /* Success Content */
    .success-content {
        padding: 20px 15px !important;
    }

    .success-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 36px !important;
        margin-bottom: 20px;
    }

    /* Testimonials Carousel */
    .testimonials-section {
        padding: 30px 0 60px !important;
        margin-top: 30px;
    }

    .testimonial-card {
        width: 280px !important;
        padding: 18px !important;
    }

    .testimonial-message p {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .author-name {
        font-size: 13px !important;
    }

    .author-date {
        font-size: 11px !important;
    }

    .others {
        width: 150px !important;
        margin-bottom: 30px;
    }

    /* Footer */
    .main-footer {
        padding: 30px 0 0 !important;
        margin-top: 30px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding-bottom: 25px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo-img {
        max-width: 80% !important;
    }

    .footer-title {
        font-size: 18px !important;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 15px;
        /* flex-direction: column;
        align-items: flex-start; */
        gap: 8px;
    }

    .footer-icon {
        align-self: flex-start;
    }

    .footer-text {
        width: 100%;
    }

    .footer-text p {
        font-size: 13px !important;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .footer-text .separator {
        display: contents;
        margin: 5px 0;
    }

    .footer-social-links {
        justify-content: center !important;
        gap: 10px;
    }

    .footer-social-link {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-social-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .footer-social-description {
        text-align: center !important;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px;
        padding: 0 15px;
    }

    .copyright,
    .developer {
        font-size: 12px !important;
        line-height: 1.5;
    }

    /* General Mobile Fixes */
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }


}

/* Extra Small Devices */
@media only screen and (max-width: 480px) {
    .step-question {
        font-size: 17px !important;
    }

    .typeform-container {
        padding: 15px 10px !important;
    }

    .otp-input {
        width: 35px !important;
        height: 45px !important;
        font-size: 16px !important;
    }

    .testimonial-card {
        width: 250px !important;
        padding: 15px !important;
    }

    .footer-logo-img {
        max-width: 80% !important;
    }
}