body {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* navbar  */
.sca-navbar {
    width: 100%;
    background: #085af1;
    position: relative;
    z-index: 1000;
    padding: 18px 0;
}



.sca-navbar-inner {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sca-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
    font-size: 25px;
    flex-shrink: 0;
}

.sca-logo-text {
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.9px;
    color: #ffffff;
}

.sca-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-left: auto;
    margin-right: auto;
}

.sca-nav-link {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sca-nav-link:hover {
    color: #babbbb;
}

.sca-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.sca-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 33px;
    border-radius: 55px;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(11, 143, 104, 0.16);
    transition: background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sca-signin:hover {
    background: #222222;
    color: #ffffff;
    transform: translateY(-2px);
}

.sca-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 33px;
    border-radius: 55px;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(11, 143, 104, 0.16);
    transition: background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sca-get-started:hover {
    background: #f1f1f1;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.sca-mobile-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.sca-mobile-toggle:hover {
    background: #f5f5f5;
}

.sca-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #111827;
    transition: all 0.25s ease;
}

.sca-mobile-menu {
    width: min(360px, 90vw);
    border-left: 1px solid #eeeeee;
}

.sca-mobile-menu .offcanvas-header {
    padding: 25px 22px;
    border-bottom: 1px solid #eeeeee;
}

.sca-mobile-menu .offcanvas-body {
    padding: 25px 22px;
}

.sca-mobile-links {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sca-mobile-links a {
    display: block;
    width: 100%;
    padding: 16px 0;
    color: #172033;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.sca-mobile-links a:hover {
    color: #1963ec;
}

.sca-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
}

.sca-mobile-actions .sca-signin,
.sca-mobile-actions .sca-get-started {
    width: 100%;
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
}

.sca-mobile-actions .sca-signin {
    border: 1px solid #dfe3e8;
}

/* ==================================================
   LARGE TABLET / SMALL LAPTOP
   992px - 1199px
================================================== */

@media (max-width: 1199px) {

    .sca-navbar {
        padding: 16px 0;
    }

    .sca-nav-links {
        gap: 22px;
    }

    .sca-nav-link {
        font-size: 14px;
    }

    .sca-nav-actions {
        gap: 10px;
    }

    .sca-signin,
    .sca-get-started {
        padding: 0 22px;
        min-height: 46px;
        font-size: 14px;
    }
}

/* ==================================================
   TABLET
   768px - 991px
================================================== */
@media (max-width: 991px) {
    .sca-navbar {
        padding: 14px 0;
    }

    .sca-navbar-inner {
        min-height: 58px;
    }

    .sca-nav-links {
        display: none;
    }

    .sca-nav-actions {
        display: none;
    }

    .sca-mobile-toggle {
        display: flex;
    }

    .sca-logo {
        font-size: 23px;
    }

    .sca-logo-text {
        font-size: 23px;
    }
}

/* ==================================================
   MOBILE
   576px - 767px
================================================== */
@media (max-width: 767px) {
    .sca-navbar {
        padding: 12px 0;
    }

    .sca-navbar-inner {
        min-height: 54px;
        gap: 10px;
    }

    .sca-logo {
        font-size: 21px;
    }

    .sca-logo-text {
        font-size: 21px;
        letter-spacing: -0.6px;
    }

    .sca-mobile-toggle {
        width: 42px;
        height: 42px;
        padding: 8px;
    }

    .sca-mobile-menu {
        width: min(340px, 88vw);
    }

    .sca-mobile-menu .offcanvas-header {
        padding: 20px 18px;
    }

    .sca-mobile-menu .offcanvas-body {
        padding: 20px 18px;
    }

    .sca-mobile-links a {
        padding: 14px 0;
        font-size: 15px;
    }

    .sca-mobile-actions {
        margin-top: 25px;
    }
}

/* ==================================================
   SMALL MOBILE
   Below 576px
================================================== */
@media (max-width: 575px) {
    .sca-navbar {
        padding: 10px 0;
    }

    .sca-navbar-inner {
        min-height: 50px;
    }

    .sca-logo {
        font-size: 19px;
    }

    .sca-logo-text {
        font-size: 19px;
    }

    .sca-mobile-toggle {
        width: 40px;
        height: 40px;
    }

    .sca-mobile-toggle span {
        width: 19px;
    }

    .sca-mobile-menu {
        width: 85vw;
    }

    .sca-mobile-menu .offcanvas-header {
        padding: 18px 16px;
    }

    .sca-mobile-menu .offcanvas-body {
        padding: 18px 16px;
    }

    .sca-mobile-links a {
        padding: 13px 0;
        font-size: 15px;
    }

    .sca-mobile-actions {
        margin-top: 22px;
    }

    .sca-mobile-actions .sca-signin,
    .sca-mobile-actions .sca-get-started {
        min-height: 46px;
        font-size: 14px;
    }
}

/* ==================================================
   EXTRA SMALL MOBILE
   Below 400px
================================================== */
@media (max-width: 400px) {
    .sca-navbar-inner {
        min-height: 48px;
    }

    .sca-logo {
        font-size: 17px;
    }

    .sca-logo-text {
        font-size: 17px;
    }

    .sca-mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .sca-mobile-menu {
        width: 90vw;
    }
}



/* =========================================================
   SECTION 1 - HERO
========================================================= */

.hero-section {
    padding: 100px 0 80px;

    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    height: 1250px;
}


.hero-label {
    display: inline-block;

    color: #ffffff;
    font-size: 15px;

    margin-bottom: 20px;

    border: 1px solid #ffffff27;

    padding: 8px 18px;

    border-radius: 50px;

    max-width: 100%;
}

.hero-label i {


    font-size: 11px;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;

    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;

    color: #ffffff;

    margin-bottom: 25px;

    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-content p {
    color: #ffffff;

    font-size: 18px;
    line-height: 1.7;

    max-width: 570px;

    margin-bottom: 32px;
}


.hero-buttons {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 13px 23px;

    border-radius: 55px;

    font-weight: 600;
}

.hero-buttons i {
    margin-left: 7px;
}


.hero-image {
    width: 1600px !important;
    max-width: none !important;
    height: auto;

    display: block;
}


/* =========================================================
   LARGE DESKTOP
   1200px - 1399px
========================================================= */

@media (max-width: 1399px) {

    .hero-image {
        width: 1350px !important;
    }

}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .hero-section {
        padding: 85px 0 70px;
        height: 1050px;
    }

    .hero-content h1 {
        font-size: 52px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 17px;
        max-width: 520px;
    }

    .hero-image {
        width: 1150px !important;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 75px 0 60px;
        height: 900px;
    }

    .hero-label {
        font-size: 14px;
        padding: 7px 16px;
        margin-bottom: 18px;
    }

    .hero-content h1 {
        font-size: 46px;
        line-height: 1.08;
        letter-spacing: -1.2px;
        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 12px 21px;
    }

    .hero-image {
        width: 950px !important;
        max-width: none !important;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .hero-section {
        padding: 60px 0 50px;
        height: 750px;
    }

    .hero-label {
        font-size: 13px;
        padding: 7px 14px;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 11px 19px;
        font-size: 14px;
    }

    .hero-image {
        width: 750px !important;
        max-width: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
   400px - 575px
========================================================= */

@media (max-width: 575px) {

    .hero-section {
        padding: 50px 0 45px;
        height: 650px;
    }

    .hero-label {
        font-size: 12px;
        padding: 6px 13px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -0.7px;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .hero-buttons {
        width: 100%;
        gap: 9px;
    }

    .hero-buttons .btn {
        padding: 10px 17px;
        font-size: 13px;
    }

    .hero-image {
        width: 620px !important;
        max-width: none !important;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   320px - 399px
========================================================= */

@media (max-width: 399px) {

    .hero-section {
        padding: 40px 0 40px;
        height: 600px;
    }

    .hero-label {
        font-size: 11px;
        padding: 6px 11px;
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-image {
        width: 520px !important;
        max-width: none !important;
    }

}


/* =========================================================
   320px SCREEN - FINAL FIX
========================================================= */

@media (max-width: 320px) {

    .hero-section {
        padding: 35px 0 35px;
        height: 580px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-image {
        width: 480px !important;
        max-width: none !important;
    }

}







/* =========================================================
   FEATURES SECTION
========================================================= */

.features-section {
    padding: 100px 0 110px;
    background: #ffffff;
}


/* =========================================================
   FEATURES HEADING
========================================================= */

.features-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
    display: inline-block;

    color: #383838;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;

    margin-bottom: 18px;

    max-width: 100%;
}

.section-label i {
    color: #1475ff;

    margin-right: 5px;
}


/* =========================================================
   FEATURES HEADING H2
========================================================= */

.features-heading h2 {
    font-family: 'Inter', sans-serif;

    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;

    color: #050505;

    margin: 0;

    letter-spacing: -1.8px;
    word-spacing: normal;

    /* Prevent text overflow */
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}


/* =========================================================
   FEATURES DESCRIPTION
========================================================= */

.features-heading p {
    color: #666666;

    font-size: 15px;
    line-height: 1.55;

    margin: 18px auto 0;

    max-width: 650px;

    overflow-wrap: break-word;
}


/* =========================================================
   BOOTSTRAP ROW
========================================================= */

.features-section .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card {
    width: 100%;

    /* Desktop card height */
    height: 525px;

    padding: 28px 34px 30px;

    background: #f5f6f8;

    border: 1px solid #e6e7e9;

    border-radius: 18px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* =========================================================
   FEATURE CARD HOVER
========================================================= */

.feature-card:hover {
    transform: translateY(-5px);

    border-color: #d8dce2;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   BLUE FEATURE CARD
========================================================= */

.feature-card-blue {
    background: linear-gradient(145deg,
            #1475ff 0%,
            #b9d9ff 100%);

    border: none;
}


/* =========================================================
   FEATURE IMAGE AREA
========================================================= */

.feature-image {
    width: 100%;

    height: 375px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.feature-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 470px;

    object-fit: contain;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-content {
    margin-top: auto;

    max-width: 100%;
}


/* Feature title */
.feature-content h4 {
    font-family: 'Inter', sans-serif;

    margin: 0 0 8px;

    color: #111111;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 600;

    letter-spacing: -0.4px;

    max-width: 100%;
    overflow-wrap: break-word;
}


/* Feature description */
.feature-content p {
    margin: 0;

    color: #6b6b6b;

    font-size: 14px;
    line-height: 1.5;

    max-width: 500px;

    overflow-wrap: break-word;
}


/* =========================================================
   SECOND ROW
========================================================= */

.feature-second-row {
    margin-top: 20px !important;
}


/* =========================================================
   LARGE DESKTOP
   1200px AND ABOVE
========================================================= */

@media (min-width: 1200px) {

    .features-section .container {
        max-width: 1200px;
    }

}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .features-section {
        padding: 90px 0 100px;
    }

    .features-heading {
        margin-bottom: 42px;
    }

    .features-heading h2 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .feature-card {
        height: 500px;
        padding: 25px 28px 28px;
    }

    .feature-image {
        height: 350px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    /* Features section spacing */
    .features-section {
        padding: 80px 0 90px;
    }


    /* Heading area */
    .features-heading {
        max-width: 700px;
        margin-bottom: 38px;
    }


    /* Section label */
    .section-label {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 15px;
    }


    /* Tablet heading */
    .features-heading h2 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }


    /* Tablet description */
    .features-heading p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 600px;
    }


    /* Tablet card */
    .feature-card {
        height: 480px;

        padding: 24px 22px 25px;

        border-radius: 16px;
    }


    /* Tablet image */
    .feature-image {
        height: 325px;
    }


    /* Tablet card title */
    .feature-content h4 {
        font-size: 19px;
    }


    /* Tablet card paragraph */
    .feature-content p {
        font-size: 13px;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    /* Section spacing */
    .features-section {
        padding: 65px 0 70px;
    }


    /* Heading */
    .features-heading {
        margin-bottom: 32px;
    }


    /* Label */
    .section-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }


    /* Mobile H2 */
    .features-heading h2 {
        font-size: 35px;
        line-height: 1.1;
        letter-spacing: -0.9px;
    }


    /* Description */
    .features-heading p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 15px;
    }


    /* Card */
    .feature-card {
        height: auto;
        min-height: 470px;

        padding: 22px 20px 24px;

        border-radius: 16px;
    }


    /* Image */
    .feature-image {
        height: 315px;
    }


    /* Card title */
    .feature-content h4 {
        font-size: 19px;
        line-height: 1.3;
    }


    /* Card paragraph */
    .feature-content p {
        font-size: 14px;
        line-height: 1.5;
    }


    /* Second row spacing */
    .feature-second-row {
        margin-top: 20px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   400px - 575px
========================================================= */

@media (max-width: 575px) {

    /* Section */
    .features-section {
        padding: 55px 0 60px;
    }


    /* Heading */
    .features-heading {
        margin-bottom: 28px;
    }


    /* Label */
    .section-label {
        font-size: 11px;
        letter-spacing: 0.9px;
        margin-bottom: 12px;
    }


    /* H2 */
    .features-heading h2 {
        font-size: 31px;
        line-height: 1.1;
        letter-spacing: -0.7px;
    }


    /* Description */
    .features-heading p {
        font-size: 13px;
        line-height: 1.55;
        margin-top: 14px;
    }


    /* Feature card */
    .feature-card {
        min-height: 430px;

        padding: 20px 17px 22px;

        border-radius: 15px;
    }


    /* Image */
    .feature-image {
        height: 280px;
    }


    /* Card title */
    .feature-content h4 {
        font-size: 18px;
        margin-bottom: 7px;
    }


    /* Card paragraph */
    .feature-content p {
        font-size: 13px;
        line-height: 1.5;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   320px - 399px
========================================================= */

@media (max-width: 399px) {

    /* Section spacing */
    .features-section {
        padding: 45px 0 50px;
    }


    /* Heading */
    .features-heading {
        margin-bottom: 24px;
    }


    /* Label */
    .section-label {
        font-size: 10px;
        letter-spacing: 0.7px;
        margin-bottom: 11px;
    }


    /* 320px H2 */
    .features-heading h2 {
        font-size: 27px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }


    /* 320px description */
    .features-heading p {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 12px;
    }


    /* 320px card */
    .feature-card {
        min-height: 390px;

        padding: 17px 14px 19px;

        border-radius: 14px;
    }


    /* 320px image */
    .feature-image {
        height: 245px;
    }


    /* 320px card title */
    .feature-content h4 {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 6px;
    }


    /* 320px card paragraph */
    .feature-content p {
        font-size: 12px;
        line-height: 1.45;
    }


    /* Second row */
    .feature-second-row {
        margin-top: 15px !important;
    }

}


/* =========================================================
   EXACT 320px SCREEN
========================================================= */

@media (max-width: 320px) {

    .features-section {
        padding: 40px 0 45px;
    }


    .features-heading h2 {
        font-size: 25px;
        letter-spacing: -0.4px;
    }


    .features-heading p {
        font-size: 12px;
    }


    .feature-card {
        min-height: 370px;

        padding: 15px 12px 18px;
    }


    .feature-image {
        height: 225px;
    }


    .feature-content h4 {
        font-size: 16px;
    }


    .feature-content p {
        font-size: 12px;
    }

}






/* =========================================================
   SECTION 3 - AI ASSIST SECTION
========================================================= */

.ai-assist-section {
    /* Desktop spacing */
    padding: 50px 0;

    /* Background image */
    background-image: url('images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Prevent horizontal overflow */
    overflow: hidden;
}
.ai-image {
    width: 100%;
    height: 100%;
}
/* =========================================================
   AI ASSIST CONTENT
========================================================= */

.ai-assist-content {
    width: 100%;
    max-width: 800px;
}


/* =========================================================
   AI LABEL
========================================================= */

.ai-label {
    display: inline-block;

    color: #ffffff;
    font-size: 15px;

    margin-bottom: 20px;

    border: 1px solid #ffffff27;

    padding: 8px 18px;

    border-radius: 50px;

    max-width: 100%;
}

.ai-label i {

    font-size: 14px;
}

/* =========================================================
   AI ASSIST HEADING
========================================================= */

.ai-assist-content h2 {
    font-size: 52px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -2px;

    color: #ffffff;

    margin-bottom: 22px;

    /* Prevent heading overflow */
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}


/* =========================================================
   AI ASSIST PARAGRAPH
========================================================= */

.ai-assist-content p {
    max-width: 420px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.7;

    overflow-wrap: break-word;
}


/* =========================================================
   SMART BUTTON
========================================================= */

.smart-btn {
    background: #0a6cf5;

    color: #ffffff;

    padding: 13px 24px;

    border-radius: 55px;

    font-weight: 600;

    border: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 30px;

    /* Prevent button text breaking */
    white-space: nowrap;

    transition: all 0.3s ease;
}


/* Button hover */
.smart-btn:hover {
    background: #085dcc;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .ai-assist-section {
        padding: 90px 0;
    }

    .ai-assist-content {
        max-width: 700px;
    }

    .ai-assist-content h2 {
        font-size: 48px;

        letter-spacing: -1.5px;
    }

    .ai-assist-content p {
        font-size: 16px;

        max-width: 410px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .ai-assist-section {
        padding: 80px 0;
    }

    .ai-label {
        font-size: 14px;

        padding: 7px 16px;

        margin-bottom: 18px;
    }

    .ai-assist-content {
        max-width: 650px;
    }

    .ai-assist-content h2 {
        font-size: 43px;

        line-height: 1.1;

        letter-spacing: -1.2px;

        margin-bottom: 20px;
    }

    .ai-assist-content p {
        font-size: 16px;

        line-height: 1.6;

        max-width: 400px;
    }

    .smart-btn {
        padding: 12px 22px;

        margin-top: 27px;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .ai-assist-section {
        padding: 65px 0;
    }

    .ai-label {
        font-size: 13px;

        padding: 7px 14px;

        margin-bottom: 16px;
    }

    .ai-assist-content {
        max-width: 100%;
    }

    .ai-assist-content h2 {
        font-size: 37px;

        line-height: 1.1;

        letter-spacing: -1px;

        margin-bottom: 18px;
    }

    .ai-assist-content p {
        font-size: 15px;

        line-height: 1.6;

        max-width: 390px;
    }

    .smart-btn {
        padding: 12px 21px;

        font-size: 14px;

        margin-top: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   400px - 575px
========================================================= */

@media (max-width: 575px) {

    .ai-assist-section {
        padding: 55px 0;
    }

    .ai-label {
        font-size: 12px;

        padding: 6px 13px;

        margin-bottom: 15px;
    }

    .ai-assist-content h2 {
        font-size: 32px;

        line-height: 1.1;

        letter-spacing: -0.7px;

        margin-bottom: 17px;
    }

    .ai-assist-content p {
        font-size: 14px;

        line-height: 1.55;

        max-width: 100%;
    }

    .smart-btn {
        padding: 11px 19px;

        font-size: 13px;

        margin-top: 22px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   320px - 399px
========================================================= */

@media (max-width: 399px) {

    .ai-assist-section {
        padding: 45px 0;
    }

    .ai-label {
        font-size: 11px;

        padding: 6px 11px;

        margin-bottom: 13px;
    }

    .ai-assist-content h2 {
        font-size: 28px;

        line-height: 1.12;

        letter-spacing: -0.5px;

        margin-bottom: 15px;
    }

    .ai-assist-content p {
        font-size: 13px;

        line-height: 1.5;

        max-width: 100%;
    }

    .smart-btn {
        padding: 10px 17px;

        font-size: 12px;

        margin-top: 20px;

        gap: 6px;
    }

}


/* =========================================================
   EXACT 320px SCREEN
========================================================= */

@media (max-width: 320px) {

    .ai-assist-section {
        padding: 40px 0;
    }

    .ai-label {
        font-size: 10px;

        padding: 5px 10px;

        margin-bottom: 12px;
    }

    .ai-assist-content h2 {
        font-size: 25px;

        line-height: 1.12;

        letter-spacing: -0.4px;

        margin-bottom: 14px;
    }

    .ai-assist-content p {
        font-size: 12px;

        line-height: 1.5;
    }

    .smart-btn {
        padding: 9px 15px;

        font-size: 12px;

        margin-top: 18px;
    }

}






/* =========================================================
   SECTION 4
   FEATURES FOR AGENCIES
========================================================= */

.agency-section {
    padding: 100px 0 110px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

@media (min-width: 1200px) {

    .agency-section .container {
        max-width: 1180px;
    }

}


/* =========================================================
   HEADING
========================================================= */

.agency-heading {
    max-width: 800px;
    margin-bottom: 48px;
}

.agency-label {
    display: inline-block;
    color: #383838;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.agency-label i {
    color: #1475ff;

}

.agency-heading h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    color: #050505;
    margin: 0;
    letter-spacing: -1.8px;
    overflow-wrap: break-word;
}

.agency-heading p {
    color: #666666;
    font-size: 15px;
    line-height: 1.55;
    max-width: 650px;
    margin: 18px auto 0;
}


/* =========================================================
   GRID
========================================================= */

.agency-feature-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    margin-top: 0;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.agency-feature {
    width: 100%;
    height: 525px;
    padding: 28px 34px 30px;

    background: #f5f6f8;
    border: 1px solid #e6e7e9;
    border-radius: 18px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* =========================================================
   BLUE CARD
========================================================= */

.agency-feature-blue {
    background: linear-gradient(145deg,
            #1475ff 0%,
            #b9d9ff 100%);

    border: none;
}


/* =========================================================
   HOVER
========================================================= */

.agency-feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.agency-feature-blue:hover {
    box-shadow:
        0 18px 40px rgba(22, 119, 255, 0.20);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.agency-image {
    width: 100%;
    height: 375px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.agency-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 470px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
========================================================= */

.agency-content {
    margin-top: auto;
}

.agency-content h4 {
    font-family: 'Inter', sans-serif;

    margin: 0 0 8px;

    color: #111111;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;

    letter-spacing: -0.4px;
}

.agency-content p {
    margin: 0;

    color: #6b6b6b;

    font-size: 14px;
    line-height: 1.5;

    max-width: 500px;
}


/* =========================================================
   BLUE CARD TEXT
========================================================= */

.agency-feature-blue .agency-content h4 {
    color: #111111;
}

.agency-feature-blue .agency-content p {
    color: #333333;
}


/* =========================================================
   LARGE TABLET / LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .agency-section {
        padding: 90px 0 100px;
    }

    .agency-heading {
        max-width: 750px;
        margin-bottom: 45px;
    }

    .agency-heading h2 {
        font-size: 45px;
    }

    .agency-feature {
        height: 510px;
        padding: 26px 30px 28px;
    }

    .agency-image {
        height: 360px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .agency-section {
        padding: 70px 0 80px;
    }

    .agency-heading {
        margin-bottom: 40px;
    }

    .agency-heading h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .agency-heading p {
        font-size: 15px;
    }

    .agency-feature {
        height: 500px;
        padding: 25px 28px 28px;
    }

    .agency-image {
        height: 350px;
    }

    .agency-content h4 {
        font-size: 20px;
    }

    .agency-content p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .agency-section {
        padding: 60px 15px 70px;
    }

    .agency-heading {
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .agency-heading h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .agency-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .agency-feature-row {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 20px;
    }

    .agency-feature {
        height: auto;
        min-height: 470px;

        padding: 24px;

        border-radius: 16px;
    }

    .agency-image {
        height: 325px;
    }

    .agency-image img {
        max-width: 100%;
    }

    .agency-content h4 {
        font-size: 19px;
    }

    .agency-content p {
        font-size: 14px;
        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .agency-section {
        padding: 55px 15px 60px;
    }

    .agency-heading {
        margin-bottom: 30px;
    }

    .agency-heading h2 {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.8px;
    }

    .agency-heading p {
        font-size: 14px;
        line-height: 1.55;
    }

    .agency-feature {
        min-height: 430px;
        padding: 22px;
    }

    .agency-image {
        height: 280px;
    }

    .agency-content h4 {
        font-size: 18px;
    }

    .agency-content p {
        font-size: 13px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   399px AND BELOW
========================================================= */

@media (max-width: 399px) {

    .agency-section {
        padding: 45px 12px 50px;
    }

    .agency-heading {
        margin-bottom: 28px;
    }

    .agency-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .agency-heading h2 {
        font-size: 27px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .agency-heading p {
        font-size: 13px;
        line-height: 1.55;
    }

    .agency-feature-row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 15px;
    }

    .agency-feature {
        min-height: 400px;
        padding: 20px;

        border-radius: 15px;
    }

    .agency-image {
        height: 250px;
    }

    .agency-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .agency-content p {
        font-size: 13px;
        line-height: 1.5;
    }

}


/* =========================================================
   320px MOBILE
========================================================= */

@media (max-width: 320px) {

    .agency-section {
        padding: 40px 10px 45px;
    }

    .agency-heading {
        margin-bottom: 25px;
    }

    .agency-label {
        font-size: 11px;
        letter-spacing: 0.8px;
        margin-bottom: 12px;
    }

    .agency-heading h2 {
        font-size: 25px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .agency-heading p {
        font-size: 12px;
        line-height: 1.55;
    }

    .agency-feature-row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 15px;
    }

    .agency-feature {
        min-height: 370px;
        padding: 18px;

        border-radius: 14px;
    }

    .agency-image {
        height: 225px;
    }

    .agency-content h4 {
        font-size: 16px;
        line-height: 1.3;
    }

    .agency-content p {
        font-size: 12px;
        line-height: 1.5;
    }

}



/* =========================================================
   BENEFITS SECTION
========================================================= */

.benefits-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.benefits-heading {
    max-width: 780px;
    width: 100%;
}

.benefits-label {
    display: inline-block;
    color: #383838;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.benefits-label i {
    color: #1475ff;

}

.benefits-heading h2 {
    color: #0e1216;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.benefits-heading p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}


/* =========================================================
   BENEFIT CARD
========================================================= */

.benefit-card {
    width: 100%;
    height: 100%;
    padding: 30px;

    background: #f8fbff;
    border: 1px solid #e7eef7;
    border-radius: 14px;

    box-sizing: border-box;

    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.benefit-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #1677ff;

    border-radius: 10px;

    font-size: 19px;
    margin-bottom: 22px;

    flex-shrink: 0;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.benefit-card h4 {
    color: #10243e;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.benefit-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
   LARGE TABLET / LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .benefits-section {
        padding: 90px 0;
    }

    .benefits-heading {
        max-width: 700px;
    }

    .benefits-heading h2 {
        font-size: 48px;
    }

    .benefits-heading p {
        font-size: 16px;
    }

    .benefit-card {
        padding: 28px;
    }

    .benefit-card h4 {
        font-size: 22px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .benefits-section {
        padding: 80px 0;
    }

    .benefits-heading {
        max-width: 650px;
    }

    .benefits-label {
        font-size: 13px;
    }

    .benefits-heading h2 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .benefits-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .benefit-card {
        padding: 26px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .benefit-card h4 {
        font-size: 21px;
    }

    .benefit-card p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .benefits-section {
        padding: 65px 15px 70px;
    }

    .benefits-heading {
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .benefits-label {
        font-size: 13px;
        letter-spacing: 0.8px;
        margin-bottom: 13px;
    }

    .benefits-heading h2 {
        font-size: 35px;
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }

    .benefits-heading p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .benefit-card {
        height: auto;
        padding: 25px;
        border-radius: 14px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 18px;
    }

    .benefit-card h4 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 14px;
        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .benefits-section {
        padding: 55px 15px 60px;
    }

    .benefits-heading {
        margin-bottom: 30px;
    }

    .benefits-heading h2 {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.7px;
    }

    .benefits-heading p {
        font-size: 14px;
    }

    .benefit-card {
        padding: 23px;
    }

    .benefit-icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
        margin-bottom: 17px;
    }

    .benefit-card h4 {
        font-size: 19px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   399px AND BELOW
========================================================= */

@media (max-width: 399px) {

    .benefits-section {
        padding: 45px 12px 50px;
    }

    .benefits-heading {
        margin-bottom: 28px;
    }

    .benefits-label {
        font-size: 12px;
        letter-spacing: 0.7px;
        margin-bottom: 12px;
    }

    .benefits-heading h2 {
        font-size: 28px;
        line-height: 1.16;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .benefits-heading p {
        font-size: 13px;
        line-height: 1.55;
    }

    .benefit-card {
        padding: 20px;
        border-radius: 13px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .benefit-card h4 {
        font-size: 18px;
        line-height: 1.3;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.55;
    }

}


/* =========================================================
   320px MOBILE
========================================================= */

@media (max-width: 320px) {

    .benefits-section {
        padding: 40px 10px 45px;
    }

    .benefits-heading {
        margin-bottom: 25px;
    }

    .benefits-label {
        font-size: 11px;
        letter-spacing: 0.6px;
        margin-bottom: 10px;
    }

    .benefits-heading h2 {
        font-size: 25px;
        line-height: 1.18;
        letter-spacing: -0.3px;
        margin-bottom: 13px;
    }

    .benefits-heading p {
        font-size: 12px;
        line-height: 1.55;
    }

    .benefit-card {
        padding: 18px;
        border-radius: 12px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 15px;
        border-radius: 9px;
        margin-bottom: 14px;
    }

    .benefit-card h4 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 7px;
    }

    .benefit-card p {
        font-size: 12px;
        line-height: 1.55;
    }

}



/* ############ */
/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    padding: 105px 0 115px;
    background: #ffffff;
}


/* =========================================
   HEADER
========================================= */

.testimonials-header {
    max-width: 820px;
    margin: 0 auto 55px;
}

.testimonials-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #383838;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}



.testimonials-label i {
    font-size: 14px;
    color: #1475ff;
}

.testimonials-header h2 {
    font-family: 'Inter', sans-serif;

    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;

    color: #050505;

    margin: 0;

    letter-spacing: -1.8px;
}

.testimonials-header p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   TESTIMONIAL GRID
========================================= */

.testimonials-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.testimonials-grid>.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    min-height: 250px;

    padding: 32px 34px;

    background: #f5f6f8;

    border: 1px solid #e6e7e9;

    border-radius: 18px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* Tall cards */

.testimonial-card-tall {
    min-height: 520px;
}


/* Middle second card */

.testimonial-card-small {
    margin-top: 20px;
    min-height: 250px;
}


/* Hover */

.testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   QUOTE ICON
========================================= */

.testimonial-quote {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-quote i {
    color: #1475ff;

    font-size: 16px;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-card p {
    margin: 0;

    max-width: 470px;

    color: #171717;

    font-family: 'Inter', sans-serif;

    font-size: 20px;
    line-height: 1.45;

    font-weight: 500;

    letter-spacing: -0.3px;
}


/* =========================================
   AUTHOR
========================================= */

.testimonial-author {
    margin-top: auto;

    padding-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #111111;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 700;
}

.testimonial-author span {
    color: #777777;

    font-size: 13px;
    line-height: 1.4;
}


/* tablet */
@media (max-width: 991px) {

    .testimonials-section {
        padding: 80px 0 90px;
    }

    .testimonials-header {
        margin-bottom: 45px;
    }

    .testimonials-header h2 {
        font-size: 42px;
    }

    .testimonial-card-tall {
        min-height: 420px;
    }

    .testimonial-card {
        min-height: 230px;
    }

}


/* RESPONSIVE - MOBILE */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 65px 15px 75px;
    }

    .testimonials-header {
        margin-bottom: 35px;
    }

    .testimonials-header h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .testimonials-header p {
        font-size: 14px;
        line-height: 1.55;
    }

    .testimonial-card,
    .testimonial-card-tall {
        min-height: 300px;
        padding: 28px;
    }

    .testimonial-card-small {
        margin-top: 20px;
    }

    .testimonial-card p {
        font-size: 18px;
    }

}


/* SMALL MOBILE */
@media (max-width: 575px) {

    .testimonials-header h2 {
        font-size: 30px;
    }

    .testimonials-label {
        font-size: 12px;
    }

    .testimonial-card,
    .testimonial-card-tall {
        min-height: 280px;
        padding: 25px;
        border-radius: 16px;
    }

    .testimonial-card p {
        font-size: 17px;
    }

}





/* blog #################  */
.blog-section {
    padding: 110px 0;
    background: #ffffff;
}

.blog-header {
    max-width: auto;
    margin-bottom: 55px;
}

.blog-label {
    display: inline-block;
    color: #383838;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-label i{
    
    color: #1475ff;

    font-size:14px;
}
.blog-header h2 {
    color: #10243e;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.blog-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

.blog-header p {
    text-align: center !important;
    margin: 18px auto 0 !important;
}

.blog-grid {
    margin-top: 10px;
}

.blog-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e6eef7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 36, 62, 0.08);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #edf4fb;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-meta span {
    color: #1677ff;
    font-size: 12px;
    font-weight: 700;
}

.blog-meta span+span {
    color: #64748b;
    font-weight: 500;
}

.blog-card h3 {
    color: #10243e;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}

.blog-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.blog-card a {
    color: #1677ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.blog-card a i {
    margin-left: 6px;
    transition: 0.2s ease;
}

.blog-card a:hover i {
    margin-left: 10px;
}

@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .blog-header h2 {
        font-size: 32px;
    }

    .blog-card-content {
        padding: 24px;
    }
}





/*faqs #############   */
.faq-section {
    padding: 110px 0;
    background: #ffffff;
}

.faq-header {
    max-width: 760px;
    margin: 0 auto 55px;
}

.faq-label {
    display: inline-block;
    color: #383838;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}



.faq-header h2 {
    color: #10243e;
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.faq-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5edf6;
}

.faq-question {
    width: 100%;
    padding: 24px 5px;
    border: 0;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: #10243e;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.faq-question i {
    color: #1677ff;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 35px 24px 5px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }
}



/* footer  */
.footer-cta {
    padding: 60px 0;
    background: #040505;
}

.footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta h2 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.footer-cta p {
    color: #b9c7d8;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 25px;
    background: #1677ff;
    color: #ffffff;

    border-radius: 55px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.footer-cta-btn:hover {
    background: #ffffff;
    color: #1677ff;
}

.main-footer {
    background: #ffffff;
    padding: 70px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-icon {
    color: var(--bs-primary);
    font-size: 28px;
}

.footer-logo-text {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
}

.footer-brand p {
    color: #8fa1b5;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-column h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #8fa1b5;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: #1677ff;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #71859b;
    font-size: 15px;
    margin: 0;
}


/* Tablet */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 35px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .main-footer {
        padding: 55px 15px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-logo-text {
        font-size: 26px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}


/* Small Mobile */
@media (max-width: 575px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: auto;
    }
}


/* 320px */
@media (max-width: 320px) {
    .main-footer {
        padding: 40px 10px 20px;
    }

    .footer-logo-text {
        font-size: 23px;
    }

    .footer-logo-icon {
        font-size: 24px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}





/* =========================================
   GLOBAL RESPONSIVE FIX
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
}

/* =========================================
   MOBILE - 320px TO 575px
========================================= */

@media (max-width: 575px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Prevent fixed width elements */
    section,
    div {
        max-width: 100%;
    }

    /* Headings */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Buttons */
    a,
    button {
        max-width: 100%;
    }
}

/* =========================================
   VERY SMALL MOBILE - 320px
========================================= */

@media (max-width: 360px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1 {
        max-width: 100%;
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -1.5px;
        overflow-wrap: anywhere;
    }

    h2 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1.1;
    }

    h3 {
        max-width: 100%;
        font-size: 26px;
    }

    p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
    }
}