/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Loading pulse animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Button arrow bounce animation */
@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(5px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(3px);
    }
}

/* Gradient text animation */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

.gradient-text-animated {
    background: linear-gradient(-45deg, #3b85f4, #0cbfdf, #3b85f4, #0cbfdf);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Loading pulse animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

.gradient-text-animated {
    background: linear-gradient(-45deg, #3b85f4, #0cbfdf, #3b85f4, #0cbfdf);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(90deg, #3b85f4, #0cbfdf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Drop shadow utility */
.dropshadow {
    filter: drop-shadow(5px 20px 20px #00bfe158);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
}

.dwn-btn-container {
    display: flex;
    gap: 17px;
}

.logo {
    width: 118px;
    height: auto;
    aspect-ratio: 5.68;
    object-fit: contain;
}

.menu-icon {
    width: 32px;
    height: 32px;
    aspect-ratio: 1;
    object-fit: contain;
    cursor: pointer;
}

@media (max-width: 991px) {
    .header-nav {
        padding: 10px 20px;
    }
}

@media (max-width: 640px) {
    .header-nav {
        padding: 20px;
    }
}



/* REVAMP CSS */
.revamp-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.revamp-main {
    background: url('Media/main-bg.png') top center no-repeat white;
    background-size: auto 300px;
    padding-top: 150px;
    background-color: #F9FCFF;
    overflow: hidden;
}

/* Typography & Globals */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFF;
    border: 1px solid #E2E8F0;
    height: 21px;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 9.23px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 24px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 44px;
}

.text-blue {
    color: #0A4196;
}

.huge-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: #0F172A;
    text-align: center;
    margin-bottom: 32px;
}

/* CTA Buttons */
.cta-primary {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background: #3C6DF9;
    color: #FFF;
    border-radius: 100px;
    padding: 14.5px 5px 14.5px 37px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    gap: 24px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    width: 250px;
    height: 57px;
}

.cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1D4ED8;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.cta-dark {
    background: #0F172A;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.cta-dark .cta-icon-wrapper {
    background: #1E293B;
}

.cta-dark .invert {
    filter: brightness(0) invert(1);
}

/* Hero */
.hero-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0 146px;
}

.hero-main-title {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(90deg, #0D3678, #1864DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 18px;
    color: #566A87;
    margin-bottom: 40px;
    max-width: 600px;
}

.stats-section {
    margin-top: 20px;
    padding-bottom: 85px;
}

.stats-label {
    text-align: center;
    font-size: 11.47px;
    font-weight: 500;
    color: #566A87;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 218px);
    gap: 14px;
    justify-content: center;
}

.stat-card {
    background: #FFF;
    border: 1px solid #F4F7FA;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05);
}

.stat-card h3 {
    font-size: 27px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 2px;
    letter-spacing: -1px;
    line-height: 40px;
}

.stat-card p {
    font-size: 12.9px;

    color: #64748B;
}

/* About Section */
.revamp-about {
    padding: 85px 0;
}

.about-header {
    margin-bottom: 48px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 5.8fr 3.7fr;
    gap: 24px;
}

.info-card {
    background: linear-gradient(45deg, #FFFFFF 65%, #0077FF50 100%);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 78px 45px 45px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    min-height: 320px;
}

.info-text {
    font-size: 16px;
    color: #404755;
    line-height: 34px;
    margin-bottom: 30px;
}

.powered-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F3F7FD;
    border: 1.11px solid #F3F7FD;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11.71px;
    line-height: 15.44px;
    color: #2563EB;
    font-weight: 500;
    width: fit-content;
}

.powered-badge img {
    flex-shrink: 0;
}

.seconds-card {
    background: #0180F5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    border-radius: 20px;
    padding: 30px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.seconds-content h3 {
    font-size: 15px;
    font-weight: 500;
}

.seconds-content h2 {
    font-size: 54px;
    line-height: 59px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.seconds-card p {
    font-size: 14.41px;
    font-weight: 500;
}

/* Benefits Section */
.revamp-benefits {
    padding: 85px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-card {
    background: #FFF;
    border: 1px solid #E4E9F0;
    border-radius: 20px;
    padding: 26px 60px 38px 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.benefit-card img {
    width: 48px;
    height: 48px;
}

.b-card-text h4 {
    font-size: 18.87px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 11px;
}

.b-card-text p {
    font-size: 14px;
    color: #6F6F75;
    line-height: 19.34px;
    font-weight: 400;
}

/* How It Works */
.revamp-how-it-works {
    padding: 85px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 26px 28px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step-card img {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
}

.step-num {
    position: absolute;
    top: 26px;
    right: 19px;
    font-size: 26px;
    font-weight: 400;
    color: #C3C7CC;
}

.step-card p {
    font-size: 16px;
    color: #6F6F75;
    font-weight: 400;
    letter-spacing: -0.41px;
}

/* Pricing Section */
.revamp-pricing {
    padding: 85px 0;
}


.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 33px;
}

.addon-card {
    background: #FFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 26px 21px 21px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    text-align: left;
}


.addon-card img {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
}

.addon-card h4 {
    font-size: 15.97px;
    font-weight: 600;
    color: #292929;
    letter-spacing: -0.35px;
    margin-bottom: 11px;
}

.addon-card p {
    font-size: 14px;
    color: #6F6F75;
    line-height: 19.34px;
    font-weight: 400;
}

.addons-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.contact-text {
    font-weight: 600;
    color: #292929;
    letter-spacing: -0.32px;
}

.contact-link {
    font-weight: 600;
    color: #3164F6;
    text-decoration: none;
    letter-spacing: -0.32px;
}

/* CTA Footer */
.revamp-cta {
    padding: 85px 0;
}

.cta-blue-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #3C6DF9;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    border-radius: 30px;
    padding: 77px 40px;
    border: none;
    box-shadow: 0 10px 40px rgba(60, 109, 249, 0.25);
}

.cta-white-title {
    color: #FFFFFF !important;
    font-size: 29.7px;
    font-weight: 500;
    margin-bottom: 27px;
    line-height: 36.61px;
    letter-spacing: -0.74px;
}

.cta-buttons-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 32px;
    border-radius: 90px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 268px;
    height: 49px;
}

.cta-action-pill .main-con {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pill-icon-left,
.pill-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-blue-box img {
    width: auto;
    height: 16px;
}

.pill-white {
    background: #FFFFFF;
    color: #0F172A;
}

.pill-blue {
    background: #1097FB;
    border: 1px solid #4AA6FB;
    color: #FFFFFF;
}

.bottom-note {
    color: #C5E0FE;
    font-size: 15px;
    font-weight: 600;
    margin-top: 27px;
}

/* Legacy Partner Section & Slider */
.partner-section {
    padding: 120px 0 60px;
    overflow: hidden;
}

.image-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slider-row {
    display: flex;
    gap: 20px;
    transition: transform 0.8s ease;
}

.slider-top {
    transform: translateX(5%);
    margin-right: -100px;
}

.slider-bottom {
    transform: translateX(-5%);
    justify-content: flex-end;
    margin-left: 100px;
}

.image-slider:hover .slider-top,
.image-slider:hover .slider-bottom {
    transform: translateX(0);
}

.slider-image {
    width: 435px;
    aspect-ratio: 3.11;
    object-fit: cover;
    flex-shrink: 0;
}

/* Legacy Iframe Container */
.iframe-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: #FFF;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0px;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

/* Legacy Main Footer */
.main-footer {
    background: url('Media/footer-bg-v1.png') center left no-repeat white;
    background-size: auto 500px;
    padding: 60px 0 24px;
    padding-bottom: 200px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    gap: 25px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-logo {
    width: 118px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    line-height: 24px;
    color: black;
    font-weight: 400;
    text-align: left;
}

.footer-content {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 14.75px;
    font-weight: 500;
}

.footer-link:hover {
    color: #0F172A;
}

.footer-copyright {
    border-top: 1px solid #000;
    padding-top: 24px;
    text-align: center;
}

.copyright-text {
    font-size: 12px;
    color: #000;
    font-weight: 400;
}

/* Responsive Overrides */
@media (max-width: 1024px) {

    .stats-grid,
    .about-cards-grid,
    .benefits-grid,
    .steps-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-title {
        font-size: 56px;
    }

    .huge-heading {
        font-size: 48px;
    }

    .about-left {
        padding-right: 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-tagline {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero-main-title {
        font-size: 40px;
    }

    .huge-heading {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

    .stats-section {
        margin-top: 20px;
        padding: 40px 24px;
        padding-top: 0px;
    }

    .hero-flex,
    .revamp-about,
    .revamp-benefits,
    .revamp-pricing,
    .revamp-steps,
    .revamp-addons,
    .revamp-how-it-works {
        padding: 40px 24px;
    }



    .stats-grid {
        gap: 24px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 14px;
    }

    .info-card,
    .seconds-card {
        padding: 40px 24px;
        min-height: auto;
    }

    .powered-badge {
        border-radius: 20px;
        padding: 16px;
    }

    .seconds-content h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .free-card,
    .addons-card,
    .cta-flex,
    .stat-card,
    .benefit-card,
    .step-card {
        padding: 32px;
    }

    .cta-blue-box {
        border-radius: 0px;
    }

    .main-footer {
        padding-bottom: 60px;
        background-size: auto 300px;
    }

    .footer-container {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 100%;
        gap: 16px;
    }

    .footer-tagline {
        text-align: left;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        gap: 60px;
        width: 100%;
    }

    .social-links {
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        padding: 0 10px;
        width: 100%;
    }

    .footer-copyright {
        border-top: none;
        padding-top: 0;
        margin-top: 20px;
    }

    .partner-section {
        padding: 40px 0px !important;
        overflow: hidden;
    }

    .image-slider {
        gap: 16px;
    }

    .slider-row {
        gap: 12px;
    }

    .slider-top {
        margin-right: -40px;
        transform: translateX(10%);
    }

    .slider-bottom {
        margin-left: 40px;
        transform: translateX(-10%);
    }

    .slider-image {
        width: 240px;
    }
}