/* Root Variables */
:root {
    --primary-blue: #086ad8;
    --primary-orange: #ed5f00;
    --blue-dark: #0556b3;
    --orange-light: #ff7020;
    --orange-dark: #d94f00;

    --bg-light: #f8f9fc;
    --bg-lighter: #ffffff;
    --text-dark: #1a1f42;
    --text-primary: #2d3561;
    --text-muted: #5a6688;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    --shadow-blue: 0 10px 35px rgba(8, 106, 216, 0.2);
    --shadow-blue-hover: 0 20px 50px rgba(8, 106, 216, 0.3);
    --shadow-orange: 0 12px 35px rgba(237, 95, 0, 0.3);
    --shadow-orange-hover: 0 20px 50px rgba(237, 95, 0, 0.4);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 60px;
}

@font-face {
    font-family: "Product Sans";
    src: url("/font-new/ProductSans-Regular.woff2") format("woff2"),
        url("../font/ProductSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Product Sans";
    src: url("/font-new/ProductSans-Bold.woff2") format("woff2"),
        url("../font/ProductSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "Product Sans" !important;
}

a {
    text-decoration: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(237, 95, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow: 0 12px 40px rgba(237, 95, 0, 0.6), 0 0 30px rgba(237, 95, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 50%, #f0f2f8 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::before {
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 106, 216, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    bottom: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 95, 0, 0.05) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Typography */
.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-orange), #ff7b2e);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    display: inline-block;
    font-size: 28px;
    font-weight: inherit;
    animation: glow 3s ease-in-out infinite;
    position: relative;
    box-shadow: 0 4px 20px rgba(237, 95, 0, 0.25);
}

.highlight-text::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: var(--radius-sm);
    z-index: -1;
}

.hero-description {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 1000px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
}


/* Option Cards */
.option-card {
    background: var(--bg-lighter);
    border-radius: var(--radius-md);
    padding: 0px 35px;
    gap: 14px;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(8, 106, 216, 0.15);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(8, 106, 216, 0.2), 0 0 0 2px rgba(8, 106, 216, 0.4);
}

.option-text {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    gap: 22px;
    box-shadow: var(--shadow-blue), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.stat-card::before,
.stat-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.stat-card::before {
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05) 50%, transparent);
}

.stat-card::after {
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-blue-hover), 0 0 0 2px rgba(255, 255, 255, 0.25) inset, 0 0 40px rgba(8, 106, 216, 0.2);
}


/* CTA Button */
.cta-wrapper {
    margin-top: 60px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light) 50%, var(--orange-dark));
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    padding: 22px 55px;
    border: none;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-orange), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 50%, rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-orange-hover), 0 0 60px rgba(237, 95, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3) inset;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.03);
}

.cta-button svg {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-button:hover svg {
    transform: translateX(6px);
}

/* API Integration Section */
.api-integration-section {
    margin-top: 80px;
}

.api-card {
    background: var(--bg-lighter);
    border: 2px solid rgba(8, 106, 216, 0.15);
    border-radius: var(--radius-md);
    padding: 10px 25px;
    gap: 15px;
    transition: var(--transition);
    min-height: 90px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    background: var(--bg-lighter);
    box-shadow: 0 12px 30px rgba(8, 106, 216, 0.15);
}

.api-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.api-text {
    text-align: left;
    flex: 1;
}

.api-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.api-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* Laptop Mockup */
.laptop-mockup {
    margin-top: 60px;
    padding: 0 20px;
}

.laptop-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.platform-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.laptop-base {
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, #d0d5e0 0%, #b8bfce 100%);
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 8px;
    background: linear-gradient(180deg, rgba(184, 191, 206, 0.3) 0%, transparent 100%);
    border-radius: 50%;
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

/* ===================================
   Features and Functions Section
   =================================== */

.features-section {
    padding: 80px 0;
    background: var(--bg-lighter);
}

.features-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.feature-card {
    background: #fff;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.72) 63%, rgba(237, 95, 0, 0.43) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(237, 95, 0, 0.08));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.feature-icon svg {
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #000000b8;
    line-height: 1.6;
    margin: 0;
}

.img-wrapper {
    height: 504px;
    border-radius: 20px;
    overflow: hidden;
}

/* ===================================
   Additional Features Section
   =================================== */

.additional-features-section {
    background: #155799;
    background: linear-gradient(150deg, rgba(21, 87, 153, 1) 0%, rgba(56, 149, 255, 0.96) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.feature-box {
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.feature-box:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.explore-more-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(237, 95, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.explore-more-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.explore-more-button:hover::before {
    transform: translateX(100%);
}

.explore-more-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(237, 95, 0, 0.5);
}

.explore-more-button svg {
    transition: var(--transition);
}

.explore-more-button:hover svg {
    transform: translateX(5px);
}

/* Mobile Mockup */
.mobile-mockup {
    position: relative;
    display: inline-block;
    max-width: 320px;
    margin: 0 auto;
}

.mobile-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 8px #2d2d2d,
        0 0 0 10px #1a1a1a;
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.mobile-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.mobile-screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 19.5;
}

.mobile-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Why Choose Section
   =================================== */

.why-choose-section {
    background: var(--bg-lighter);
    padding: 80px 0;
    position: relative;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.why-choose-card {
    background: #f5f6fa;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(8, 106, 216, 0.15);
    background: #ffffff;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(8, 106, 216, 0.25);
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(8, 106, 216, 0.35);
}

.why-choose-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-choose-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    background: var(--bg-lighter);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.testimonials-swiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #e8f1ff 0%, #f5f8fc 50%, #e8f1ff 100%);
    border-radius: var(--radius-lg);
    padding: 45px 35px 35px;
    text-align: center;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(8, 106, 216, 0.1);
    transition: var(--transition);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 25px 0 20px;
    flex: 1;
    font-weight: 500;
}

.testimonial-rating {
    margin: 20px 0;
}

.testimonial-rating .star {
    font-size: 24px;
    color: #FFD700;
    margin: 0 3px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
}

.author-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.demo-button {
    background: linear-gradient(135deg, #ed5f00, #ff7020);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(237, 95, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.demo-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.demo-button:hover::before {
    transform: translateX(100%);
}

.demo-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(237, 95, 0, 0.45);
}

.demo-button svg {
    transition: var(--transition);
}

.demo-button:hover svg {
    transform: translateX(5px);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #1e2aa8;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ---Form Section----- */
/* --- Main Section Styling --- */
.hero-contact-section {
    background-color: #086ad8;
    /* Brand Blue */
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

/* --- Left Column: Typography & Stats --- */
.hero-headline {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* Modernized Stats Boxes */
.stat-box {
    /* Using a slightly lighter blue for the box background to create depth */
    background-color: #1a77e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #ffffff;
}

.stat-box .stat-label {
    margin-top: 17px;
}


.predition_page .header {
    display: none;
}

.ctaNav .cta-button {
    padding: 16px 52px;
    box-shadow: none;
}

.ctaNav .cta-button:hover {
    box-shadow: none;
}

.topbar-prediction {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
}

.cta-button:hover {
    color: #fff;
}

.footerBar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.pred-footer-brand {
    max-width: 125px;
}

.footerBar {
    background: #086ad8;
    padding: 15px 0;
}

.predition_page .footer-area {
    display: none;
}

.ctaNav a {
    font-weight: 600;
}

.ctaNav a:hover {
    color: var(--primary-orange) !important;
}

.ctaNav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weeks {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    background: #fff;
    font-size: 31px;
    padding: 10px 60px;
    border-radius: 40px;
    margin: 12px 0;
    display: inline-block;
    color: #000;
}

.portfolio-link {
    display: block;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}

.calTo {
    padding: 5px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upwork-box {
    background: var(--bg-light);
    padding: 20px;
    border-left: 3px solid #8de269;
    border-radius: 17px;
    height: 262px;
}

.testimonials-section .swiper-wrapper {
    height: fit-content;
}

.testimonials-section .swiper-button-next:after,
.testimonials-section .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    background: var(--blue-dark);
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--bg-light);
    font-weight: 900;
}

.upwork-body {
    margin: 12px 0;
}

.cta-button:focus,
.option-card:focus,
.stat-card:focus,
.explore-more-button:focus,
.feature-box:focus,
.why-choose-card:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 3px;
}

.prediction_nav {
    position: sticky;
    top: 0;
    height: fit-content;
    z-index: 9;
    background: var(--bg-lighter);
}

.api-video-content {
    max-width: 100%;
    height: 735px;
    border-radius: 24px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1399px) {
    .api-video-content {
        height: 628px;
    }
}

@media (max-width: 1199px) {
    .api-video-content {
        height: 523px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        padding: 46px 0 100px;
    }
}

@media (max-width: 991px) {

    .hero-title,
    .highlight-text {
        font-size: 42px;
    }

    .api-video-content {
        height: 392px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
        min-width: 80px;
    }

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

    .features-main-title {
        font-size: 36px;
    }

    .feature-card {
        min-height: 350px;
        padding: 35px 25px;
    }

    .additional-features-section {
        padding: 60px 0;
    }

    .feature-box {
        min-height: 85px;
        font-size: 15px;
        padding: 20px 15px;
    }

    .mobile-mockup {
        max-width: 280px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-title {
        font-size: 34px;
    }

    .why-choose-card {
        min-height: 200px;
        padding: 30px 20px;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-text {
        font-size: 16px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonial-card {
        min-height: 420px;
        padding: 40px 30px 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

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

    .demo-button {
        font-size: 18px;
        padding: 16px 45px;
    }

    .hero-headline {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .api-video-content {
        height: 291px;
    }

    .hero-title,
    .highlight-text {
        font-size: 32px;
    }

    .highlight-text {
        padding: 6px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .option-card {
        padding: 15px 25px;
        min-height: 55px;
    }

    .option-text {
        font-size: 16px;
    }

    .stat-card {
        padding: 15px 20px;
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
        min-width: 70px;
        padding: 8px 15px;
    }

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

    .cta-button {
        font-size: 18px;
        padding: 16px 40px;
    }

    .api-card {
        padding: 15px 20px;
        min-height: 80px;
    }

    .api-icon {
        width: 56px;
        height: 56px;
    }

    .api-title {
        font-size: 18px;
        text-align: left;
    }

    .api-subtitle {
        font-size: 14px;
    }

    .laptop-base {
        height: 16px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-main-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .feature-card {
        min-height: 320px;
        padding: 30px 20px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon svg {
        width: 70px;
        height: 70px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .additional-features-section {
        padding: 50px 0;
    }

    .feature-box {
        min-height: 80px;
        font-size: 14px;
        padding: 18px 12px;
    }

    .explore-more-button {
        font-size: 16px;
        padding: 15px 35px;
        justify-content: center;
    }

    .mobile-mockup {
        max-width: 260px;
    }

    .mobile-frame {
        border-radius: 35px;
        padding: 10px;
    }

    .mobile-screen {
        border-radius: 28px;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .why-choose-card {
        min-height: 190px;
        padding: 28px 18px;
    }

    .why-choose-icon {
        width: 65px;
        height: 65px;
    }

    .why-choose-text {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 30px;
        margin-bottom: 45px;
    }

    .testimonial-card {
        min-height: 400px;
        padding: 38px 25px 28px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

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

    .demo-button {
        font-size: 17px;
        padding: 15px 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .img-wrapper {
        height: 311px;
    }

    .footerBar-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }

    .copyright-pred span {
        font-size: 14px;
    }

    .brandlogo-predict {
        max-width: 111px;
    }

    .calTo {
        height: 30px;
        width: 30px
    }


}

@media (max-width: 575px) {
    .hero-section {
        padding: 50px 0 70px;
    }

    .upwork-box {
        margin: 0 22px;
    }

    .hero-title,
    .highlight-text {
        font-size: 28px;
    }

    .highlight-text {
        padding: 5px 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .option-card {
        padding: 12px 20px;
        min-height: 50px;
    }

    .option-text {
        font-size: 15px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 10px;
    }

    .stat-number {
        font-size: 36px;
        min-width: 100%;
    }

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

    .cta-button {
        font-size: 16px;
        padding: 14px 35px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .api-integration-section {
        margin-top: 60px;
    }

    .api-card {
        padding: 12px 18px;
        min-height: 75px;
        text-align: center;
    }

    .api-icon {
        width: 50px;
        height: 50px;
    }

    .api-text {
        text-align: center;
    }

    .api-title {
        font-size: 16px;
    }

    .api-subtitle {
        font-size: 13px;
    }

    .laptop-mockup {
        margin-top: 40px;
        padding: 0 10px;
    }

    .laptop-base {
        height: 12px;
    }

    .features-section {
        padding: 50px 0;
    }

    .features-main-title {
        font-size: 26px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .feature-card {
        min-height: 300px;
        padding: 25px 18px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
    }

    .additional-features-section {
        padding: 40px 0;
    }

    .feature-box {
        min-height: 75px;
        font-size: 17px;
        padding: 15px 10px;
    }

    .explore-more-button {
        font-size: 15px;
        padding: 14px 30px;
        width: 100%;
        max-width: 300px;
    }

    .mobile-mockup {
        max-width: 240px;
        margin-bottom: 30px;
    }

    .mobile-frame {
        border-radius: 30px;
        padding: 8px;
    }

    .mobile-notch {
        width: 120px;
        height: 24px;
    }

    .mobile-screen {
        border-radius: 24px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-title {
        font-size: 24px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .why-choose-card {
        min-height: 180px;
        padding: 25px 15px;
        gap: 15px;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-icon svg {
        width: 40px;
        height: 40px;
    }

    .why-choose-text {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .testimonial-card {
        min-height: 380px;
        padding: 35px 20px 25px;
    }

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

    .testimonial-rating .star {
        font-size: 22px;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
    }

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

    .demo-button {
        font-size: 16px;
        padding: 14px 35px;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 375px) {
    .api-video-content {
        height: 204px;
    }

    .hero-title,
    .highlight-text {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .cta-button {
        font-size: 15px;
        padding: 12px 30px;
        gap: 10px;
    }

    .cta-button svg {
        width: 20px;
        height: 20px;
    }

    .api-card {
        padding: 10px 15px;
    }

    .api-icon {
        width: 44px;
        height: 44px;
    }

    .api-title {
        font-size: 15px;
    }

    .features-main-title {
        font-size: 22px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-title {
        font-size: 17px;
    }

    .additional-features-section {
        padding: 35px 0;
    }

    .feature-box {
        min-height: 70px;
        font-size: 12px;
        padding: 12px 8px;
    }

    .explore-more-button {
        font-size: 14px;
        padding: 12px 25px;
        gap: 8px;
    }

    .explore-more-button svg {
        width: 18px;
        height: 18px;
    }

    .mobile-mockup {
        max-width: 220px;
    }

    .why-choose-section {
        padding: 35px 0;
    }

    .why-choose-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .why-choose-card {
        min-height: 170px;
        padding: 22px 12px;
        gap: 12px;
    }

    .why-choose-icon {
        width: 55px;
        height: 55px;
    }

    .why-choose-text {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 35px 0;
    }

    .testimonials-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        min-height: 360px;
        padding: 30px 18px 22px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .quote-icon svg {
        width: 50px;
        height: 50px;
    }

    .testimonial-rating .star {
        font-size: 20px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

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

    .demo-button {
        font-size: 15px;
        padding: 12px 30px;
        gap: 8px;
    }

    .demo-button svg {
        width: 18px;
        height: 18px;
    }
}