/* =========================================================
   APISOLUTION RESPONSIVE NAVBAR
   ========================================================= */
h1 {
    color: #ffffff;
    box-shadow: #ffffff 0px 2px 0px 0px;
    padding: 10px;
}
.apisolution-header {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 9999;
    overflow: visible;
}

.apisolution-header *,
.apisolution-header *::before,
.apisolution-header *::after {
    box-sizing: border-box;
}


/* =========================================================
   NEWS BAR
   ========================================================= */

.apisolution-news-footer {
    width: 100%;
    height: 38px;

    display: flex;
    align-items: center;

    background: #071a33;
    color: #ffffff;

    overflow: hidden;
}

.apisolution-news {
    width: 70px;
    min-width: 70px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #763206;

    flex-shrink: 0;
}

#apisolution-news-head {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.apisolution-n-text {
    min-width: 0;
    flex: 1;

    height: 100%;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 0 12px;
}

.apisolution-marquee {
    width: max-content;

    white-space: nowrap;

    animation: apisolutionMarquee 22s linear infinite;
}

.apisolution-marquee span {
    font-size: 13px;
    color: #ffffff;
}

@keyframes apisolutionMarquee {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =========================================================
   INFORMATION BAR
   ========================================================= */

.apisolution-nav-info {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e6e6e6;

    overflow: hidden;
}

.apisolution-info-scroll {

    width: 100%;

    min-height: 43px;

    padding: 6px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

.apisolution-info-scroll::-webkit-scrollbar {
    display: none;
}

.apisolution-info-scroll a {

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #333333;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.apisolution-info-scroll a:hover {
    color: #f28c28;
}

.apisolution-info-scroll a span {
    color: #f28c28;
    font-size: 15px;
}


/* =========================================================
   MAIN NAVBAR
   ========================================================= */

.apisolution-navbar {

    width: 100%;
    height: auto;
    min-height: 70px;

    margin: 0;
    padding: 0;

    background: #020931;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);

    position: relative;
    z-index: 10000;
}

.apisolution-navbar-container {

    width: 100%;
    max-width: 1450px;

    min-height: 70px;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LOGO
   ========================================================= */

.apisolution-logo {

    display: flex;
    align-items: center;

    width: 150px;
    min-width: 150px;

    height: 50px;

    text-decoration: none;

    flex-shrink: 0;
}

.apisolution-logo img {

    display: block;

    width: 400px;
    height: 300px;

    max-width: 100%;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.apisolution-nav-links {

    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 3px;

    min-width: 0;
}

.apisolution-nav-links li {

    margin: 0;
    padding: 0;
    margin-right: 10px;

    flex: 0 0 auto;
}

.apisolution-nav-links li a {

    min-height: 44px;

    padding: 9px 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    border-radius: 5px;

    transition: all 0.25s ease;
}

.apisolution-nav-links li a:hover {

    color: #ffffff;

    background: #eb4306;
   

}

.apisolution-nav-icon {

    color: #f28c28;

    font-size: 16px;

    line-height: 1;

    transition: color 0.25s ease;
}

.apisolution-nav-links a:hover
.apisolution-nav-icon {

    color: #ffffff;

}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.apisolution-mobile-nav-toggle {

    display: none;

    width: 45px;
    height: 44px;

    padding: 6px;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    flex-shrink: 0;

    position: relative;

    z-index: 10003;
}

.apisolution-bar {

    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background: #ffffff;

    border-radius: 10px;

    transition: all 0.3s ease;
}


/* HAMBURGER → X */

.apisolution-mobile-nav-toggle.active
.apisolution-bar:nth-child(1) {

    transform: translateY(8px) rotate(45deg);

}

.apisolution-mobile-nav-toggle.active
.apisolution-bar:nth-child(2) {

    opacity: 0;

}

.apisolution-mobile-nav-toggle.active
.apisolution-bar:nth-child(3) {

    transform: translateY(-8px) rotate(-45deg);

}


/* =========================================================
   OVERLAY
   ========================================================= */

.apisolution-overlay {

    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9998;
}

.apisolution-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   LAPTOP
   ========================================================= */

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

    .apisolution-navbar-container {

        padding-left: 18px;
        padding-right: 18px;

        gap: 10px;

    }

    .apisolution-nav-links {

        gap: 0;

    }

    .apisolution-nav-links li a {

        padding-left: 8px;
        padding-right: 8px;

        font-size: 13px;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-nav-links li a {

        padding-left: 6px;
        padding-right: 6px;

        font-size: 12px;

    }

    .apisolution-logo,
    .apisolution-logo img {

        width: 135px;
        min-width: 135px;

    }

}


/* =========================================================
   TABLET / MOBILE MENU
   ========================================================= */

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

    .apisolution-navbar {

        min-height: 65px;

    }

    .apisolution-navbar-container {

        min-height: 65px;

        padding: 0 18px;

    }


    /* HAMBURGER */

    .apisolution-mobile-nav-toggle {

        display: block;

    }


    /* MOBILE MENU */

    .apisolution-nav-links {

        position: fixed;

        top: 0;
        right: 0;

        width: 330px;
        max-width: 85vw;

        height: 100vh;

        margin: 0;

        padding: 85px 18px 25px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 7px;

        background: #0b2a4a;

        box-shadow:
            -8px 0 25px rgba(0, 0, 0, 0.25);

        overflow-x: hidden;
        overflow-y: auto;

        transform: translateX(100%);

        transition: transform 0.35s ease;

        z-index: 10002;

    }

    .apisolution-nav-links.active {

        transform: translateX(0);

    }


    .apisolution-nav-links li {

        width: 100%;

    }


    .apisolution-nav-links li a {

        width: 100%;

        min-height: 48px;

        padding: 12px 15px;

        justify-content: flex-start;

        font-size: 15px;

    }


    .apisolution-nav-icon {

        width: 25px;

        text-align: center;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-news-footer {

        height: 35px;

    }

    .apisolution-news {

        width: 55px;
        min-width: 55px;

        height: 35px;

    }

    #apisolution-news-head {

        font-size: 14px;

    }

    .apisolution-marquee span {

        font-size: 11px;

    }


    /* INFO */

    .apisolution-info-scroll {

        min-height: 40px;

        justify-content: flex-start;

        padding: 6px 12px;

        gap: 18px;

    }

    .apisolution-info-scroll a {

        font-size: 12px;

    }


    /* NAV */

    .apisolution-navbar,
    .apisolution-navbar-container {

        min-height: 62px;

    }

    .apisolution-navbar-container {

        padding: 0 13px;

    }

    .apisolution-logo {

        width: 135px;
        min-width: 135px;

        height: 48px;

    }

    .apisolution-logo img {

        width: 135px;
        height: 46px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-navbar-container {

        padding-left: 10px;
        padding-right: 10px;

    }

    .apisolution-logo,
    .apisolution-logo img {

        width: 125px;
        min-width: 125px;

    }

    .apisolution-logo img {

        height: 43px;

    }

    .apisolution-nav-links {

        width: 88vw;

        max-width: 88vw;

        padding-left: 14px;
        padding-right: 14px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

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

    .apisolution-navbar-container {

        padding-left: 8px;
        padding-right: 8px;

    }

    .apisolution-logo,
    .apisolution-logo img {

        width: 115px;
        min-width: 115px;

    }

    .apisolution-logo img {

        height: 40px;

    }

    .apisolution-nav-links {

        width: 92vw;

        max-width: 92vw;

    }

}
/* =========================================================
   APISOLUTION AUTO IMAGE SLIDER
   ========================================================= */

.apisolution-slider-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.apisolution-slider {
    width: 100%;
    height: 520px;

    position: relative;
    overflow: hidden;

    background: #ffffff;
}

.apisolution-slides {
    width: 400%;
    height: 100%;

    display: flex;

    transform: translateX(0);

    transition: transform 0.8s ease-in-out;
}

.apisolution-slide {
    width: 25%;
    height: 100%;

    flex: 0 0 25%;

    position: relative;
    overflow: hidden;
}

.apisolution-slide img {
    width: 100%;
    height: 100%;
    margin: 5px;
    display: block;

    object-fit: cover;
    object-position: center;

    user-select: none;
    pointer-events: none;
}


/* =========================================================
   LAPTOP
   ========================================================= */

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

    .apisolution-slider {
        height: 450px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-slider {
        height: 380px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-slider {
        height: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-slider {
        height: 220px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

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

    .apisolution-slider {
        height: 195px;
    }

}
/* =========================================================
   APISOLUTION SERVICE CARDS
   ========================================================= */

.apisolution-service-section {
    width: 100%;
    padding: 70px 20px;

    background: #f5f7fa;

    overflow: hidden;
}


/* ================= CONTAINER ================= */

.apisolution-scontainer {

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;
}


/* ================= CARD ================= */

.apisolution-scard {

    width: 100%;
    min-width: 0;

    position: relative;

    display: flex;
}


/* ================= BOX ================= */

.apisolution-sbox {

    width: 100%;
    min-height: 360px;

    padding: 35px 30px;

    display: flex;
    align-items: center;

    position: relative;

    background: #0b2a4a;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Decorative circle */

.apisolution-sbox::before {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -70px;
    right: -60px;

    border-radius: 50%;

    background: rgba(242, 140, 40, 0.15);

    transition: 0.35s ease;
}


/* Bottom decoration */

.apisolution-sbox::after {

    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    bottom: -55px;
    left: -35px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

}


/* ================= HOVER ================= */

.apisolution-scard:hover .apisolution-sbox {

    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.20);

}

.apisolution-scard:hover .apisolution-sbox::before {

    transform: scale(1.3);

}


/* ================= CONTENT ================= */

.apisolution-scontent {

    width: 100%;

    position: relative;

    z-index: 2;

    text-align: left;
}


/* ================= ICON + API ================= */

.apisolution-scontent h2 {

    margin: 0 0 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 26px;
    font-weight: 700;
}

.apisolution-service-icon {

    width: 48px;
    height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #f28c28;

    color: #071a33;

    font-size: 22px;

    box-shadow:
        0 6px 15px rgba(242, 140, 40, 0.30);
}


/* ================= HEADING ================= */

.apisolution-scontent h3 {

    margin: 0 0 15px;

    color: #f28c28;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* ================= TEXT ================= */

.apisolution-scontent p {

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.75;

}


/* ================= READ MORE ================= */

.apisolution-scontent a {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 22px;

    border-radius: 6px;

    background: #f28c28;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.apisolution-scontent a:hover {

    background: #ffffff;

    color: #0b2a4a;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);

}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

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

    .apisolution-service-section {

        padding: 60px 18px;

    }

    .apisolution-scontainer {

        gap: 22px;

    }

    .apisolution-sbox {

        min-height: 350px;

        padding: 30px 25px;

    }

    .apisolution-scontent h2 {

        font-size: 24px;

    }

    .apisolution-scontent h3 {

        font-size: 18px;

    }

    .apisolution-scontent p {

        font-size: 14px;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-scontainer {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;

    }

    .apisolution-sbox {

        min-height: 330px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-service-section {

        padding: 45px 15px;

    }

    .apisolution-scontainer {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .apisolution-sbox {

        min-height: auto;

        padding: 30px 24px;

    }

    .apisolution-scontent h2 {

        font-size: 24px;

    }

    .apisolution-scontent h3 {

        font-size: 18px;

    }

    .apisolution-scontent p {

        font-size: 14px;

        line-height: 1.7;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-service-section {

        padding: 35px 12px;

    }

    .apisolution-sbox {

        padding: 25px 20px;

        border-radius: 12px;

    }

    .apisolution-service-icon {

        width: 43px;
        height: 43px;

        font-size: 19px;

    }

    .apisolution-scontent h2 {

        font-size: 21px;

    }

    .apisolution-scontent h3 {

        font-size: 17px;

    }

    .apisolution-scontent p {

        font-size: 13px;

    }

}
/* =========================================================
   APISOLUTION ABOUT SECTION
   ========================================================= */

.apisolution-about-section {

    width: 100%;

    padding: 80px 20px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.apisolution-about-container {

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 65px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.apisolution-about-image {

    width: 100%;

    display: flex;
    justify-content: center;

    min-width: 0;
}

.apisolution-about-image-box {

    width: 100%;

    position: relative;

    padding: 12px;

    border-radius: 18px;

    background: #f28c28;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.apisolution-about-image-box::before {

    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    top: -18px;
    left: -18px;

    border-radius: 50%;

    background: #0b2a4a;

    z-index: 0;
}

.apisolution-about-image-box::after {

    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -18px;
    bottom: -18px;

    border-radius: 50%;

    background: #0b2a4a;

    z-index: 0;
}

.apisolution-about-image-box img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 430px;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius: 12px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.apisolution-about-content {

    width: 100%;

    min-width: 0;
}

.apisolution-about-small-title {

    display: inline-block;

    margin-bottom: 8px;

    color: #f28c28;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
   ========================================================= */

.apisolution-about-content h2 {

    margin: 0 0 10px;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}

.apisolution-about-content h2 span {

    color: #f28c28;
}


/* =========================================================
   LINE
   ========================================================= */

.apisolution-about-line {

    width: 65px;

    height: 4px;

    margin-bottom: 25px;

    background: #f28c28;

    border-radius: 5px;
}


/* =========================================================
   PARAGRAPH
   ========================================================= */

.apisolution-about-content p {

    margin: 0 0 15px;

    color: #555555;

    font-size: 15px;

    line-height: 1.8;

    text-align: justify;
}


/* FIRST LETTER */

.apisolution-about-first-letter {

    float: left;

    margin-right: 5px;

    color: #f28c28;

    font-size: 42px;

    font-weight: 700;

    line-height: 0.9;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.apisolution-about-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}

.apisolution-about-btn {

    min-height: 45px;

    padding: 11px 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #f28c28;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.apisolution-about-btn:hover {

    background: #0b2a4a;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);
}


/* SIGN UP */

.apisolution-signup-btn {

    background: #0b2a4a;
}

.apisolution-signup-btn:hover {

    background: #f28c28;
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

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

    .apisolution-about-section {

        padding: 65px 18px;

    }

    .apisolution-about-container {

        gap: 40px;

    }

    .apisolution-about-content h2 {

        font-size: 36px;

    }

    .apisolution-about-image-box img {

        height: 390px;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-about-container {

        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 700px;

    }

    .apisolution-about-image {

        max-width: 650px;

        margin: 0 auto;

    }

    .apisolution-about-image-box img {

        height: 400px;

    }

    .apisolution-about-content h2 {

        font-size: 34px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-about-section {

        padding: 50px 15px;

    }

    .apisolution-about-container {

        gap: 35px;

    }

    .apisolution-about-image-box {

        padding: 8px;

        border-radius: 13px;

    }

    .apisolution-about-image-box img {

        height: 300px;

        border-radius: 8px;

    }

    .apisolution-about-image-box::before,
    .apisolution-about-image-box::after {

        width: 55px;
        height: 55px;

    }

    .apisolution-about-image-box::before {

        top: -12px;
        left: -12px;

    }

    .apisolution-about-image-box::after {

        right: -12px;
        bottom: -12px;

    }

    .apisolution-about-content h2 {

        font-size: 30px;

    }

    .apisolution-about-content p {

        font-size: 14px;

        line-height: 1.7;

        text-align: left;

    }

    .apisolution-about-buttons {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }

    .apisolution-about-btn {

        width: 100%;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-about-section {

        padding: 40px 12px;

    }

    .apisolution-about-image-box img {

        height: 250px;

    }

    .apisolution-about-content h2 {

        font-size: 27px;

    }

    .apisolution-about-small-title {

        font-size: 12px;

        letter-spacing: 1px;

    }

    .apisolution-about-first-letter {

        font-size: 36px;

    }

}



/* =========================================================
   APISOLUTION SERVICE CTA
   ========================================================= */

.apisolution-service-cta {

    width: 100%;

    padding: 75px 20px;

    background:
        linear-gradient(
            135deg,
            #0b2a4a 0%,
            #071a33 100%
        );

    position: relative;

    overflow: hidden;
}


/* Decorative circles */

.apisolution-service-cta::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -150px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(242, 140, 40, 0.15);

}

.apisolution-service-cta::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -130px;
    left: -80px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);

}


.apisolution-service-cta-container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    text-align: center;
}


.apisolution-service-cta-label {

    display: inline-block;

    margin-bottom: 10px;

    color: #f28c28;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}


.apisolution-service-cta h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 700;
}


.apisolution-service-cta p {

    max-width: 750px;

    margin: 0 auto 28px;

    color: rgba(255,255,255,0.82);

    font-size: 16px;

    line-height: 1.75;
}


.apisolution-service-cta-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 28px;

    border-radius: 6px;

    background: #f28c28;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.apisolution-service-cta-button:hover {

    background: #ffffff;

    color: #0b2a4a;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.20);
}


/* =========================================================
   APISOLUTION SERVICES SECTION
   ========================================================= */

.apisolution-services-section {

    width: 100%;

    padding: 80px 20px;

    background: #f5f7fa;

    overflow: hidden;

    box-sizing: border-box;
}


.apisolution-services-section *,
.apisolution-services-section *::before,
.apisolution-services-section *::after {

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.apisolution-services-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.apisolution-services-heading {

    width: 100%;

    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;

}


.apisolution-services-label {

    display: inline-block;

    margin-bottom: 10px;

    color: #f28c28;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.apisolution-services-heading h2 {

    margin: 0;

    padding: 0;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;

}


.apisolution-services-heading h2 span {

    color: #f28c28;

}


.apisolution-services-heading-line {

    width: 65px;

    height: 4px;

    margin: 16px auto 20px;

    background: #f28c28;

    border-radius: 10px;

}


.apisolution-services-heading p {

    margin: 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;

}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.apisolution-services-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 30px;

    row-gap: 30px;

    align-items: stretch;

}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.apisolution-service-card {

    width: 100%;

    min-width: 0;

    min-height: 400px;

    padding: 32px 28px;

    position: relative;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e8ec;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


/* TOP ORANGE LINE */

.apisolution-service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #f28c28;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;

}


/* CARD HOVER */

.apisolution-service-card:hover {

    transform: translateY(-8px);

    border-color: #f28c28;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.13);

}


.apisolution-service-card:hover::before {

    transform: scaleX(1);

}


/* =========================================================
   ICON
   ========================================================= */

.apisolution-service-icon {

    width: 65px;

    height: 65px;

    margin-bottom: 22px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff2e4;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.apisolution-service-icon span {

    display: block;

    font-size: 30px;

    line-height: 1;

}


.apisolution-service-card:hover
.apisolution-service-icon {

    background: #f28c28;

    transform: scale(1.06);

}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.apisolution-service-card h3 {

    margin: 0 0 15px;

    padding: 0;

    color: #0b2a4a;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;

}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.apisolution-service-card p {

    margin: 0;

    padding: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;

}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

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

    .apisolution-services-section {

        padding: 70px 18px;

    }


    .apisolution-services-grid {

        column-gap: 24px;

        row-gap: 24px;

    }


    .apisolution-service-card {

        min-height: 390px;

        padding: 28px 24px;

    }


    .apisolution-services-heading h2 {

        font-size: 38px;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-services-section {

        padding: 60px 18px;

    }


    .apisolution-services-heading {

        margin-bottom: 40px;

    }


    .apisolution-services-heading h2 {

        font-size: 35px;

    }


    .apisolution-services-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 22px;

        row-gap: 22px;

    }


    .apisolution-service-card {

        min-height: 360px;

        padding: 27px 23px;

    }


    .apisolution-service-card h3 {

        font-size: 19px;

    }


    .apisolution-service-card p {

        font-size: 14px;

        line-height: 1.7;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-services-section {

        padding: 50px 15px;

    }


    .apisolution-services-heading {

        margin-bottom: 35px;

    }


    .apisolution-services-label {

        font-size: 12px;

        letter-spacing: 1.5px;

    }


    .apisolution-services-heading h2 {

        font-size: 31px;

    }


    .apisolution-services-heading p {

        font-size: 14px;

        line-height: 1.7;

    }


    .apisolution-services-grid {

        grid-template-columns: 1fr;

        column-gap: 0;

        row-gap: 20px;

    }


    .apisolution-service-card {

        min-height: 0;

        padding: 27px 22px;

    }


    .apisolution-service-icon {

        width: 60px;

        height: 60px;

        margin-bottom: 18px;

    }


    .apisolution-service-icon span {

        font-size: 27px;

    }


    .apisolution-service-card h3 {

        font-size: 19px;

        margin-bottom: 12px;

    }


    .apisolution-service-card p {

        font-size: 14px;

        line-height: 1.7;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-services-section {

        padding: 42px 12px;

    }


    .apisolution-services-heading h2 {

        font-size: 28px;

    }


    .apisolution-services-heading p {

        font-size: 13px;

    }


    .apisolution-services-grid {

        row-gap: 16px;

    }


    .apisolution-service-card {

        padding: 24px 19px;

        border-radius: 11px;

    }


    .apisolution-service-icon {

        width: 55px;

        height: 55px;

    }


    .apisolution-service-icon span {

        font-size: 25px;

    }


    .apisolution-service-card h3 {

        font-size: 18px;

    }


    .apisolution-service-card p {

        font-size: 13px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

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

    .apisolution-services-section {

        padding-left: 10px;

        padding-right: 10px;

    }


    .apisolution-service-card {

        padding: 22px 17px;

    }


    .apisolution-services-heading h2 {

        font-size: 26px;

    }

}
/* =========================================================
   APISOLUTION MISSION SECTION
   ========================================================= */

.apisolution-mission-section {

    width: 100%;

    padding: 80px 20px;

    background: #ffffff;

    overflow: hidden;

}


.apisolution-mission-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

}


/* =========================================================
   MISSION HEADING
   ========================================================= */

.apisolution-mission-heading {

    text-align: center;

    margin-bottom: 50px;

}


.apisolution-mission-heading > span {

    display: block;

    margin-bottom: 8px;

    color: #f28c28;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.apisolution-mission-heading h2 {

    margin: 0;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;

}


.apisolution-mission-heading h2 b {

    color: #f28c28;

}


.apisolution-mission-line {

    width: 65px;

    height: 4px;

    margin: 15px auto 0;

    background: #f28c28;

    border-radius: 10px;

}


/* =========================================================
   MISSION CONTENT
   ========================================================= */

.apisolution-mission-content {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 55px;

    align-items: center;

}


/* =========================================================
   APISOLUTION MISSION IMAGE - FULLY RESPONSIVE
   ========================================================= */

.apisolution-mission-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.apisolution-mission-image-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 8px;
    background: #f28c28;
    border-radius: 18px;
    overflow: hidden;
    box-sizing: border-box;
}

.apisolution-mission-image-box img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    object-fit: contain;
    border: 0;
    border-radius: 11px;
    box-sizing: border-box;
}


/* =========================================================
   TABLET
   ========================================================= */

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

    .apisolution-mission-image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .apisolution-mission-image-box {
        width: 100%;
        padding: 7px;
        border-radius: 15px;
    }

    .apisolution-mission-image-box img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 9px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

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

    .apisolution-mission-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .apisolution-mission-image-box {
        width: 100%;
        padding: 5px;
        border-radius: 12px;
    }

    .apisolution-mission-image-box img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

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

    .apisolution-mission-image-box {
        padding: 4px;
        border-radius: 10px;
    }

    .apisolution-mission-image-box img {
        width: 100%;
        height: auto;
        border-radius: 7px;
    }

}
/* =========================================================
   FAQ
   ========================================================= */

.apisolution-mission-faq {

    width: 100%;

    min-width: 0;

}


.apisolution-mission-faq details {

    width: 100%;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e3e7eb;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);

}


.apisolution-mission-faq details:last-child {

    margin-bottom: 0;

}


.apisolution-mission-faq summary {

    min-height: 58px;

    padding: 16px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    cursor: pointer;

    list-style: none;

    color: #0b2a4a;

    font-size: 16px;

    font-weight: 700;

    user-select: none;

}


.apisolution-mission-faq summary::-webkit-details-marker {

    display: none;

}


.apisolution-mission-faq summary::after {

    content: "+";

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff1e2;

    color: #f28c28;

    font-size: 20px;

    line-height: 1;

    transition: transform 0.3s ease;

}


.apisolution-mission-faq details[open] summary {

    color: #f28c28;

}


.apisolution-mission-faq details[open] summary::after {

    content: "−";

    background: #f28c28;

    color: #ffffff;

}


.apisolution-mission-faq details p {

    margin: 0;

    padding: 0 20px 20px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;

}

/* =====================================================
   SHILPA REVIEWS
   COMPLETELY ISOLATED CSS
   ===================================================== */

#shilpa-client-reviews {
    width: 100%;
    padding: 80px 20px;
    background: #f5f7fa;
    overflow: hidden;
    box-sizing: border-box;
}

#shilpa-client-reviews *,
#shilpa-client-reviews *::before,
#shilpa-client-reviews *::after {
    box-sizing: border-box;
}


/* CONTAINER */

.shilpa-reviews-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* HEADING */

.shilpa-reviews-heading {
    text-align: center;
    margin-bottom: 45px;
}

.shilpa-reviews-label {
    display: block;
    margin-bottom: 10px;

    color: #f28c28;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.shilpa-reviews-heading h2 {
    margin: 0;

    color: #0b2a4a;

    font-size: 40px;
    font-weight: 700;

    line-height: 1.2;
}

.shilpa-reviews-heading h2 span {
    color: #f28c28;
}

.shilpa-reviews-line {
    width: 65px;
    height: 4px;

    margin: 16px auto 0;

    background: #f28c28;

    border-radius: 50px;
}


/* VIEWPORT */

.shilpa-reviews-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* TRACK */

.shilpa-reviews-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;

    gap: 25px;

    width: max-content;

    animation: shilpaReviewsAnimation 45s linear infinite;

    will-change: transform;
}


/* CARD */

.shilpa-review-card {
    flex: 0 0 380px;

    width: 380px;
    min-height: 265px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* CARD HOVER */

.shilpa-review-card:hover {
    transform: translateY(-8px);

    border-color: #f28c28;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.13);
}


/* USER */

.shilpa-review-user {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 16px;
}


/* AVATAR */

.shilpa-review-avatar {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f28c28;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}


/* USER INFO */

.shilpa-review-user-info h3 {
    margin: 0 0 4px;

    color: #0b2a4a;

    font-size: 16px;
    font-weight: 700;
}

.shilpa-review-user-info span {
    color: #888888;

    font-size: 12px;
}


/* STARS */

.shilpa-review-stars {
    margin-bottom: 15px;

    color: #f28c28;

    font-size: 20px;

    letter-spacing: 2px;
}


/* REVIEW */

.shilpa-review-card p {
    margin: 0;

    color: #555555;

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   AUTO ANIMATION
   ===================================================== */

@keyframes shilpaReviewsAnimation {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* PAUSE ONLY THIS SLIDER */

.shilpa-reviews-viewport:hover
.shilpa-reviews-track {
    animation-play-state: paused;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 800px) {

    #shilpa-client-reviews {
        padding: 60px 16px;
    }

    .shilpa-reviews-heading h2 {
        font-size: 34px;
    }

    .shilpa-review-card {
        flex-basis: 350px;
        width: 350px;
    }

    .shilpa-reviews-track {
        gap: 20px;
        animation-duration: 38s;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    #shilpa-client-reviews {
        padding: 50px 14px;
    }

    .shilpa-reviews-heading {
        margin-bottom: 32px;
    }

    .shilpa-reviews-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .shilpa-reviews-heading h2 {
        font-size: 28px;
    }

    .shilpa-reviews-line {
        width: 55px;
        height: 3px;
    }

    .shilpa-reviews-track {
        gap: 16px;
        animation-duration: 30s;
    }

    .shilpa-review-card {
        flex-basis: calc(100vw - 28px);
        width: calc(100vw - 28px);

        min-height: 240px;

        padding: 21px;

        border-radius: 13px;
    }

    .shilpa-review-avatar {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        font-size: 18px;
    }

    .shilpa-review-user-info h3 {
        font-size: 15px;
    }

    .shilpa-review-stars {
        font-size: 18px;
    }

    .shilpa-review-card p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    #shilpa-client-reviews {
        padding-left: 10px;
        padding-right: 10px;
    }

    .shilpa-reviews-heading h2 {
        font-size: 25px;
    }

    .shilpa-review-card {
        flex-basis: calc(100vw - 20px);
        width: calc(100vw - 20px);

        padding: 18px;
    }

}


/* =====================================================
   SM PREMIUM USER COUNTER
   COMPLETELY ISOLATED
   ===================================================== */

#sm-premium-counter {

    width: 100%;

    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 50%,
            #f7f9fc 100%
        );

    overflow: hidden;

    box-sizing: border-box;
}


#sm-premium-counter *,
#sm-premium-counter *::before,
#sm-premium-counter *::after {

    box-sizing: border-box;
}


/* =====================================================
   WRAPPER
   ===================================================== */

.sm-counter-wrapper {

    width: 100%;

    max-width: 1250px;

    margin: auto;
}


/* =====================================================
   HEADING
   ===================================================== */

.sm-counter-heading {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 55px;
}


.sm-counter-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #f28c28;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sm-counter-heading h2 {

    margin: 0;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


.sm-counter-heading h2 span {

    color: #f28c28;
}


.sm-counter-heading p {

    max-width: 760px;

    margin: 18px auto 12px;

    color: #666666;

    font-size: 15px;

    line-height: 1.7;
}


.sm-counter-heading h3 {

    margin: 12px 0 0;

    color: #555555;

    font-size: 15px;

    font-weight: 500;
}


.sm-heading-line {

    width: 70px;

    height: 4px;

    margin: 18px auto;

    background: #f28c28;

    border-radius: 20px;

    animation:
        smHeadingLine 2s ease-in-out infinite;
}


@keyframes smHeadingLine {

    0%,
    100% {

        width: 55px;

    }

    50% {

        width: 90px;

    }

}


/* =====================================================
   GRID
   ===================================================== */

.sm-counter-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;
}


/* =====================================================
   CARD
   ===================================================== */

.sm-counter-box {

    position: relative;

    min-width: 0;

    padding: 35px 25px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e9e9e9;

    border-radius: 18px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transform: translateY(0);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Animated background glow */

.sm-counter-box::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background: rgba(242, 140, 40, 0.08);

    transition:
        transform 0.5s ease;
}


.sm-counter-box:hover {

    transform:
        translateY(-12px);

    border-color: #f28c28;

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.13);
}


.sm-counter-box:hover::before {

    transform: scale(2.2);
}


/* =====================================================
   ICON
   ===================================================== */

.sm-counter-icon {

    position: relative;

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f28c28;

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 8px 22px
        rgba(242, 140, 40, 0.30);

    animation:
        smIconFloat 3s ease-in-out infinite;
}


@keyframes smIconFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-6px);

    }

}


/* =====================================================
   NUMBER
   ===================================================== */

.sm-counter-number {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: baseline;

    margin-bottom: 8px;
}


.sm-counter-value {

    color: #0b2a4a;

    font-size: 44px;

    font-weight: 800;

    line-height: 1;
}


.sm-counter-plus {

    margin-left: 3px;

    color: #f28c28;

    font-size: 28px;

    font-weight: 800;
}


/* =====================================================
   TITLE
   ===================================================== */

.sm-counter-box h3 {

    position: relative;

    margin: 0 0 6px;

    color: #0b2a4a;

    font-size: 17px;

    font-weight: 700;
}


.sm-counter-box p {

    position: relative;

    margin: 0;

    color: #888888;

    font-size: 13px;

    line-height: 1.5;
}


/* =====================================================
   PROGRESS
   ===================================================== */

.sm-counter-progress {

    width: 100%;

    height: 4px;

    margin-top: 23px;

    overflow: hidden;

    background: #eeeeee;

    border-radius: 20px;
}


.sm-counter-progress span {

    display: block;

    width: 0;

    height: 100%;

    background: #f28c28;

    border-radius: 20px;

    transition:
        width 2s
        cubic-bezier(.25,.8,.25,1);
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 950px) {

    #sm-premium-counter {

        padding: 70px 18px;

    }


    .sm-counter-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;

    }


    .sm-counter-heading h2 {

        font-size: 36px;

    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    #sm-premium-counter {

        padding: 55px 14px;

    }


    .sm-counter-heading {

        margin-bottom: 35px;

    }


    .sm-counter-label {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .sm-counter-heading h2 {

        font-size: 29px;

    }


    .sm-counter-heading p {

        font-size: 13px;

    }


    .sm-counter-heading h3 {

        font-size: 13px;

    }


    .sm-counter-grid {

        gap: 14px;

    }


    .sm-counter-box {

        padding: 25px 12px 22px;

        border-radius: 14px;

    }


    .sm-counter-icon {

        width: 54px;

        height: 54px;

        margin-bottom: 15px;

        font-size: 21px;

    }


    .sm-counter-value {

        font-size: 31px;

    }


    .sm-counter-plus {

        font-size: 21px;

    }


    .sm-counter-box h3 {

        font-size: 14px;

    }


    .sm-counter-box p {

        font-size: 11px;

    }


    .sm-counter-progress {

        margin-top: 17px;

    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    #sm-premium-counter {

        padding-left: 10px;

        padding-right: 10px;

    }


    .sm-counter-heading h2 {

        font-size: 25px;

    }


    .sm-counter-grid {

        gap: 10px;

    }


    .sm-counter-box {

        padding: 20px 8px;

    }


    .sm-counter-icon {

        width: 48px;

        height: 48px;

        font-size: 18px;
        color: #071a33;

    }


    .sm-counter-value {

        font-size: 27px;

    }


    .sm-counter-plus {

        font-size: 18px;

    }

}




/* =====================================================
   SJML OUR PARTNERS
   COMPLETELY ISOLATED CSS
   ===================================================== */

#sjml-partners-section {

    width: 100%;

    padding: 75px 20px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


#sjml-partners-section *,
#sjml-partners-section *::before,
#sjml-partners-section *::after {

    box-sizing: border-box;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.sjml-partners-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =====================================================
   HEADING
   ===================================================== */

.sjml-partners-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 45px;
}


.sjml-partners-label {

    display: block;

    margin-bottom: 10px;

    color: #f28c28;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sjml-partners-heading h2 {

    margin: 0;

    color: #0b2a4a;

    font-size: 40px;

    font-weight: 800;

    line-height: 1.2;
}


.sjml-partners-heading h2 span {

    color: #f28c28;
}


.sjml-partners-heading p {

    max-width: 700px;

    margin: 15px auto 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}


.sjml-partners-line {

    width: 65px;

    height: 4px;

    margin: 17px auto 0;

    background: #f28c28;

    border-radius: 30px;

    animation:
        sjmlPartnerLine 2s
        ease-in-out infinite;
}


@keyframes sjmlPartnerLine {

    0%,
    100% {
        width: 55px;
    }

    50% {
        width: 90px;
    }

}


/* =====================================================
   VIEWPORT
   ===================================================== */

.sjml-partners-viewport {

    width: 100%;

    overflow: hidden;

    position: relative;

    padding: 12px 0 20px;
}


/* =====================================================
   TRACK
   ===================================================== */

.sjml-partners-track {

    display: flex;

    flex-wrap: nowrap;

    align-items: center;

    width: max-content;

    gap: 22px;

    animation:
        sjmlPartnersMove
        30s
        linear
        infinite;

    will-change: transform;
}


/* =====================================================
   PARTNER ITEM
   ===================================================== */

.sjml-partner-item {

    width: 190px;

    height: 115px;

    flex: 0 0 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 14px;

    box-shadow:
        0 7px 22px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =====================================================
   IMAGE
   ===================================================== */

.sjml-partner-item img {

    display: block;

    width: 100%;

    max-width: 145px;

    height: 65px;

    object-fit: contain;

    object-position: center;

    filter: grayscale(0%);

    opacity: 0.75;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =====================================================
   HOVER
   ===================================================== */

.sjml-partner-item:hover {

    transform: translateY(-7px);

    border-color: #f28c28;

    box-shadow:
        0 14px 30px
        rgba(0, 0, 0, 0.505);
}


.sjml-partner-item:hover img {

    filter: grayscale(100%);

    opacity: 1;

    transform: scale(1.06);
}


/* =====================================================
   AUTO LOOP
   ===================================================== */

@keyframes sjmlPartnersMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(
            calc(-50% - 11px)
        );

    }

}


/* =====================================================
   PAUSE ON HOVER
   ===================================================== */

.sjml-partners-viewport:hover
.sjml-partners-track {

    animation-play-state: paused;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    #sjml-partners-section {

        padding: 65px 18px;

    }


    .sjml-partners-heading h2 {

        font-size: 35px;

    }


    .sjml-partners-track {

        gap: 18px;

        animation-duration: 27s;

    }


    .sjml-partner-item {

        width: 170px;

        height: 105px;

        flex-basis: 170px;

        padding: 17px;

    }


    .sjml-partner-item img {

        max-width: 130px;

        height: 58px;

    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    #sjml-partners-section {

        padding: 50px 14px;

    }


    .sjml-partners-heading {

        margin-bottom: 30px;

    }


    .sjml-partners-label {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .sjml-partners-heading h2 {

        font-size: 29px;

    }


    .sjml-partners-heading p {

        font-size: 13px;

        line-height: 1.6;

    }


    .sjml-partners-track {

        gap: 14px;

        animation-duration: 23s;

    }


    .sjml-partner-item {

        width: 145px;

        height: 90px;

        flex-basis: 145px;

        padding: 14px;

        border-radius: 11px;

    }


    .sjml-partner-item img {

        max-width: 110px;

        height: 50px;

    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    #sjml-partners-section {

        padding-left: 10px;

        padding-right: 10px;

    }


    .sjml-partners-heading h2 {

        font-size: 25px;

    }


    .sjml-partners-track {

        gap: 10px;

        animation-duration: 20s;

    }


    .sjml-partner-item {

        width: 130px;

        height: 82px;

        flex-basis: 130px;

        padding: 10px;

    }


    .sjml-partner-item img {

        max-width: 100px;

        height: 45px;

    }

}


/* =====================================================
   REDUCE MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

    .sjml-partners-track {

        animation: none;

    }

    .sjml-partners-line {

        animation: none;

    }

}



/* =====================================================
   SJML PREMIUM FOOTER
   COMPLETELY ISOLATED
   ===================================================== */

#sjml-footer {

    --sjml-orange: #f28c28;
    --sjml-dark: #072740;
    --sjml-dark-two: #0b2a4a;
    --sjml-text: #c4ced8;
    --sjml-white: #ffffff;

    position: relative;

    width: 100%;

    background: rgb(2, 2, 41);

    color: var(--sjml-text);

    overflow: hidden;

    box-sizing: border-box;
}


#sjml-footer *,
#sjml-footer *::before,
#sjml-footer *::after {

    box-sizing: border-box;
}


/* =====================================================
   DECORATIVE BACKGROUND
   ===================================================== */

#sjml-footer::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    left: -150px;

    border-radius: 50%;

    background:
        rgba(242, 140, 40, 0.09);

    filter: blur(5px);

    animation:
        sjmlFooterGlow 7s
        ease-in-out
        infinite alternate;

    pointer-events: none;
}


#sjml-footer::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: 60px;

    border-radius: 50%;

    background:
        rgba(242, 140, 40, 0.07);

    filter: blur(5px);

    animation:
        sjmlFooterGlowTwo 8s
        ease-in-out
        infinite alternate;

    pointer-events: none;
}


@keyframes sjmlFooterGlow {

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

    to {
        transform: translate(80px, 50px) scale(1.3);
    }

}


@keyframes sjmlFooterGlowTwo {

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

    to {
        transform: translate(-70px, -40px) scale(1.25);
    }

}


/* =====================================================
   TOP LINE
   ===================================================== */

.sjml-footer-top-line {

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f28c28,
            #ffb15c,
            #f28c28,
            transparent
        );

    background-size: 200% 100%;

    animation:
        sjmlFooterLine 4s
        linear
        infinite;
}


@keyframes sjmlFooterLine {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }

}


/* =====================================================
   MAIN CONTAINER
   ===================================================== */

.sjml-footer-container {

    position: relative;
    z-index: 2;

    width: 100%;

    max-width: 1350px;

    margin: 0 auto;

    padding:
        75px 25px
        60px;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 45px;
}


/* =====================================================
   COLUMN
   ===================================================== */

.sjml-footer-column {

    min-width: 0;
}


.sjml-footer-column h3 {

    position: relative;

    margin:
        5px 0
        12px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}


.sjml-footer-title-line {

    width: 45px;

    height: 3px;

    margin-bottom: 20px;

    background: var(--sjml-orange);

    border-radius: 20px;

    transition:
        width 0.35s ease;
}


.sjml-footer-column:hover
.sjml-footer-title-line {

    width: 75px;
}


/* =====================================================
   LOGO
   ===================================================== */

.sjml-footer-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;

    text-decoration: none;
}


.sjml-footer-logo img {

    display: block;

    width: 150px;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}


/* =====================================================
   ABOUT
   ===================================================== */

.sjml-footer-about p {

    margin:
        0 0
        14px;

    color: #b8c4cf;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   LINKS
   ===================================================== */

.sjml-footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}


.sjml-footer-column ul li {

    margin-bottom: 12px;
}


.sjml-footer-column ul li a {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #b8c4cf;

    font-size: 13px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.sjml-footer-column ul li a i {

    width: 18px;

    color: var(--sjml-orange);

    text-align: center;

    transition:
        transform 0.3s ease;
}


.sjml-footer-column ul li a:hover {

    color: #ffffff;

    transform: translateX(7px);
}


.sjml-footer-column ul li a:hover i {

    transform:
        scale(1.15)
        rotate(-5deg);
}


/* =====================================================
   SOCIAL
   ===================================================== */

.sjml-footer-social {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 28px;
}


.sjml-footer-social a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.sjml-footer-social a:hover {

    color: #ffffff;

    background: var(--sjml-orange);

    border-color: var(--sjml-orange);

    transform:
        translateY(-7px)
        rotate(8deg);

    box-shadow:
        0 8px 20px
        rgba(242, 140, 40, 0.35);
}


/* =====================================================
   CONTACT
   ===================================================== */

.sjml-footer-contact {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.sjml-footer-contact > a,
.sjml-footer-address {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #b8c4cf;

    text-decoration: none;
}


.sjml-footer-contact > a:hover {

    color: #ffffff;
}


.sjml-footer-contact span {

    flex: 0 0 32px;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--sjml-orange);

    background:
        rgba(242, 140, 40, 0.10);

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.sjml-footer-contact a:hover span {

    color: #ffffff;

    background: var(--sjml-orange);

    transform: translateY(-3px);
}


.sjml-footer-contact p {

    margin: 0;

    font-size: 12px;

    line-height: 1.7;

    word-break: break-word;
}


/* =====================================================
   BOTTOM
   ===================================================== */

.sjml-footer-bottom {

    position: relative;

    z-index: 2;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(0, 0, 0, 0.18);
}


.sjml-footer-bottom-container {

    width: 100%;

    max-width: 1350px;

    min-height: 70px;

    margin: 0 auto;

    padding:
        18px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.sjml-footer-bottom p {

    margin: 0;

    color: #aebbc7;

    font-size: 12px;

    line-height: 1.6;
}


.sjml-footer-bottom p span {

    color: var(--sjml-orange);

    font-weight: 600;
}


.sjml-footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 10px;
}


.sjml-footer-bottom-links a {

    color: #aebbc7;

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.sjml-footer-bottom-links a:hover {

    color: var(--sjml-orange);
}


.sjml-footer-bottom-links span {

    color: #526273;
}


/* =====================================================
   BACK TO TOP
   ===================================================== */

#sjml-back-to-top {

    position: fixed;

    z-index: 9999;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    color: #ffffff;

    background: var(--sjml-orange);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px)
        scale(0.8);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


#sjml-back-to-top.sjml-show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


#sjml-back-to-top:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 10px 25px
        rgba(242, 140, 40, 0.35);
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1100px) {

    .sjml-footer-container {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;

        padding:
            60px 25px
            50px;
    }


    .sjml-footer-about {

        grid-column:
            1 / -1;

        max-width: 750px;
    }

}


/* =====================================================
   TABLET / SMALL LAPTOP
   ===================================================== */

@media (max-width: 800px) {

    .sjml-footer-container {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 25px;
    }


    .sjml-footer-about {

        grid-column:
            1 / -1;

        max-width: none;
    }


    .sjml-footer-connect {

        grid-column:
            1 / -1;
    }


    .sjml-footer-social {

        margin-bottom: 20px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .sjml-footer-container {

        display: flex;

        flex-direction: column;

        gap: 35px;

        padding:
            50px 18px
            40px;
    }


    .sjml-footer-about {

        max-width: 100%;
    }


    .sjml-footer-logo {

        margin-bottom: 18px;
    }


    .sjml-footer-logo img {

        width: 140px;
    }


    .sjml-footer-about p {

        font-size: 12px;

        line-height: 1.7;
    }


    .sjml-footer-column h3 {

        font-size: 17px;
    }


    .sjml-footer-column ul li {

        margin-bottom: 10px;
    }


    .sjml-footer-column ul li a {

        font-size: 12px;
    }


    .sjml-footer-connect {

        width: 100%;
    }


    .sjml-footer-social {

        gap: 8px;
    }


    .sjml-footer-social a {

        width: 36px;

        height: 36px;
    }


    .sjml-footer-bottom-container {

        min-height: auto;

        padding:
            20px 18px;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }


    #sjml-back-to-top {

        right: 15px;

        bottom: 15px;

        width: 42px;

        height: 42px;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    .sjml-footer-container {

        padding:
            42px 14px
            35px;

        gap: 30px;
    }


    .sjml-footer-about p {

        font-size: 11px;
    }


    .sjml-footer-column ul li a {

        font-size: 11px;
    }


    .sjml-footer-contact p {

        font-size: 11px;
    }


    .sjml-footer-bottom p {

        font-size: 10px;
    }

}


/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

    #sjml-footer::before,
    #sjml-footer::after,
    .sjml-footer-top-line {

        animation: none;
    }

}


/* =====================================================
   APIS RECHARGE GUIDE SECTION
   ===================================================== */

.apis-recharge-guide {
    width: 100%;
    padding: 90px 20px;
    background: #f7fafc;
    overflow: hidden;
}

.apis-recharge-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* Heading */
.apis-recharge-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.apis-recharge-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 17px;
    border-radius: 50px;
    background: rgba(122, 73, 8, 0.1);
    color: #080c7a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.apis-recharge-heading h2 {
    margin: 0 0 15px;
    color: #d1690e;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 800;
}

.apis-recharge-heading p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
}

/* Steps */
.apis-recharge-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Connecting line */
.apis-recharge-steps::before {
    content: "";
    position: absolute;
    top: 43px;
    left: 13%;
    right: 13%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #7a5608,
        #b99d36,
        #7a5f08
    );
    opacity: .18;
    z-index: 0;
}

/* Card */
.apis-recharge-card {
    position: relative;
    z-index: 1;
    padding: 32px 28px 30px;
    min-height: 320px;
    background: #ffffff;
    border: 1px solid #e7edf2;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .07);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.apis-recharge-card:hover {
    transform: translateY(-9px);
    border-color: rgba(122, 90, 8, 0.25);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .13);
}

/* Number */
.apis-recharge-number {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #dcefe8;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

/* Icon */
.apis-recharge-icon {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #e6f7f1,
        #f2fbf8
    );
    color: #120e93;
    font-size: 28px;
    box-shadow:
        0 10px 25px rgba(122, 59, 8, 0.401);
    transition: .35s ease;
}

.apis-recharge-card:hover .apis-recharge-icon {
    transform: scale(1.08) rotate(-3deg);
    background: #f48815;
    color: #ffffff;
}

/* Content */
.apis-recharge-content h3 {
    margin: 0 0 13px;
    color: #090776;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.apis-recharge-content p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.85;
}

.apis-recharge-content strong {
    color: #f25a19;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 900px) {

    .apis-recharge-guide {
        padding: 70px 20px;
    }

    .apis-recharge-steps {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 20px;
    }

    .apis-recharge-steps::before {
        display: none;
    }

    .apis-recharge-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .apis-recharge-icon {
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .apis-recharge-guide {
        padding: 55px 15px;
    }

    .apis-recharge-heading {
        margin-bottom: 35px;
    }

    .apis-recharge-heading h2 {
        font-size: 29px;
    }

    .apis-recharge-heading p {
        font-size: 14px;
    }

    .apis-recharge-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .apis-recharge-icon {
        width: 68px;
        height: 68px;
        border-radius: 19px;
        font-size: 25px;
    }

    .apis-recharge-content h3 {
        font-size: 18px;
    }

    .apis-recharge-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .apis-recharge-number {
        font-size: 25px;
    }
}

/* AboutUs */
.shilpa-hero {
    margin: 5px;
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 5px 0.1% 5px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(210,105,30,.18), transparent 30%), radial-gradient(circle at 20% 80%, rgba(210,105,30,.10), transparent 30%), linear-gradient(135deg, #fff 0%, #fff8f2 50%, #f7f7f7 100%);
    display: flex;
    align-items: center;
    isolation: isolate;
}

.shilpa-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(210,105,30,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(210,105,30,.035) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: -1;
}

.shilpa-hero-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    margin: 5px;
}


/* =========================================
   HERO CONTENT
========================================= */

.shilpa-hero-content h1 {
    max-width: 720px;
    animation: shilpaHeroContent .9s ease both;
}

.shilpa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 50px;
    background: rgba(210,105,30,.09);
    border: 1px solid rgba(210,105,30,.22);
    color: #d2481e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}

    .shilpa-hero-badge h1 i {
        animation: shilpaPulse 1.5s infinite;
    }

.shilpa-hero h5 {
    margin: 0;
    color: #06054e;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .shilpa-hero h5 span {
        display: block;
        color: #d2691e;
        margin-top: 8px;
    }

.shilpa-hero-content > p {
    max-width: 650px;
    margin: 25px 0 30px;
    color: #606060;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.shilpa-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.shilpa-hero-btn {
    min-width: 155px;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    transition: .3s ease;
}

    .shilpa-hero-btn.primary {
        background: #031143;
        color: #fff !important;
        box-shadow: 0 10px 25px rgba(210,105,30,.25);
    }

        .shilpa-hero-btn.primary:hover {
            background: #b9570d;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(210,105,30,.30);
        }

    .shilpa-hero-btn.secondary {
        background: #fff;
        color: #d2691e !important;
        border: 1px solid #d2691e;
    }

        .shilpa-hero-btn.secondary:hover {
            background: #d2691e;
            color: #fff !important;
            transform: translateY(-3px);
        }


/* =========================================
   FEATURES
========================================= */

.shilpa-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
}

.shilpa-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .shilpa-hero-feature > i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(210,105,30,.10);
        color: #d2691e;
    }

    .shilpa-hero-feature strong,
    .shilpa-hero-feature span {
        display: block;
    }

    .shilpa-hero-feature strong {
        color: #222;
        font-size: 14px;
    }

    .shilpa-hero-feature span {
        color: #777;
        font-size: 12px;
        margin-top: 2px;
    }


/* =========================================
   RIGHT VISUAL
========================================= */

.shilpa-hero-visual {
    min-height: 470px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shilpa-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(210,105,30,.12);
    filter: blur(5px);
    animation: shilpaGlow 4s ease-in-out infinite;
}


/* Main Card */

.shilpa-hero-card {
    position: relative;
    z-index: 3;
    width: min(420px, 90%);
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(210,105,30,.18);
    box-shadow: 0 25px 70px rgba(0,0,0,.12), 0 5px 20px rgba(210,105,30,.08);
    backdrop-filter: blur(12px);
    animation: shilpaCardFloat 4s ease-in-out infinite;
}

.shilpa-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #222;
    font-weight: 800;
}

.shilpa-card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d2691e;
    color: #fff;
    border-radius: 12px;
}

.shilpa-card-status {
    margin-left: auto;
    font-size: 11px;
    color: #299447;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .shilpa-card-status span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #299447;
        box-shadow: 0 0 0 5px rgba(41,148,71,.10);
    }


/* API Lines */

.shilpa-api-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 14px;
}

    .shilpa-api-line strong {
        color: #299447;
        font-size: 11px;
        padding: 5px 9px;
        background: rgba(41,148,71,.09);
        border-radius: 20px;
    }


/* Card Bottom */

.shilpa-card-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

    .shilpa-card-bottom small,
    .shilpa-card-bottom b {
        display: block;
    }

    .shilpa-card-bottom small {
        font-size: 9px;
        color: #888;
        margin-bottom: 5px;
    }

    .shilpa-card-bottom b {
        font-size: 22px;
        color: #d2691e;
    }


/* =========================================
   FLOATING CARDS
========================================= */

.shilpa-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid rgba(210,105,30,.12);
    box-shadow: 0 12px 35px rgba(0,0,0,.10);
}

    .shilpa-floating-card i {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(210,105,30,.10);
        color: #d2691e;
        border-radius: 10px;
    }

    .shilpa-floating-card strong,
    .shilpa-floating-card small {
        display: block;
    }

    .shilpa-floating-card strong {
        font-size: 13px;
        color: #222;
    }

    .shilpa-floating-card small {
        font-size: 10px;
        color: #888;
        margin-top: 3px;
    }

.card-one {
    left: 0;
    top: 65px;
    animation: shilpaFloatOne 4s ease-in-out infinite;
}

.card-two {
    right: 0;
    top: 145px;
    animation: shilpaFloatTwo 4.5s ease-in-out infinite;
}

.card-three {
    left: 35px;
    bottom: 50px;
    animation: shilpaFloatThree 5s ease-in-out infinite;
}


/* =========================================
   SCROLL
========================================= */

.shilpa-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777 !important;
    text-decoration: none !important;
    font-size: 12px;
    animation: shilpaScroll 1.7s ease-in-out infinite;
}

    .shilpa-hero-scroll i {
        color: #d2691e;
    }


/* =========================================
   ANIMATIONS
========================================= */

@keyframes shilpaHeroContent {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes shilpaFloatOne {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-8px,-12px);
    }
}

@keyframes shilpaFloatTwo {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(8px,-10px);
    }
}

@keyframes shilpaFloatThree {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-5px,10px);
    }
}

@keyframes shilpaGlow {
    0%,100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes shilpaPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes shilpaScroll {
    0%,100% {
        transform: translate(-50%,0);
    }

    50% {
        transform: translate(-50%,7px);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .shilpa-hero {
        padding: 70px 5% 80px;
    }

    .shilpa-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .shilpa-hero-content {
        margin: auto;
    }

        .shilpa-hero-content > p {
            margin-left: auto;
            margin-right: auto;
        }

    .shilpa-hero-buttons,
    .shilpa-hero-features {
        justify-content: center;
    }

    .shilpa-hero-visual {
        min-height: 430px;
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .shilpa-hero {
        min-height: auto;
        padding: 55px 18px 75px;
    }

        .shilpa-hero h5 {
            font-size: 36px;
            letter-spacing: -.5px;
        }

    .shilpa-hero-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .shilpa-hero-buttons {
        flex-direction: column;
    }

    .shilpa-hero-btn {
        width: 100%;
    }

    .shilpa-hero-features {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 8px;
    }

    .shilpa-hero-feature {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

        .shilpa-hero-feature > i {
            width: 34px;
            height: 34px;
        }

    .shilpa-hero-visual {
        min-height: 380px;
    }

    .shilpa-hero-card {
        width: 94%;
        padding: 20px;
    }

    .shilpa-card-top span {
        font-size: 12px;
    }

    .shilpa-floating-card {
        transform: scale(.82);
    }

    .card-one {
        left: -15px;
        top: 25px;
    }

    .card-two {
        right: -15px;
        top: 120px;
    }

    .card-three {
        left: -15px;
        bottom: 15px;
    }

    .shilpa-hero-glow {
        width: 280px;
        height: 280px;
    }
}


/* Small Mobile */

@media (max-width: 380px) {

    .shilpa-hero h5 {
        font-size: 31px;
    }

    .shilpa-hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .shilpa-hero-feature {
        flex-direction: row;
        text-align: left;
    }

    .shilpa-hero-visual {
        min-height: 350px;
    }

    .shilpa-floating-card {
        display: none;
    }
}

.about-section,
.mission-section,
.shilpa-faq {
    width: 100%;
    box-sizing: border-box;
}

    .about-section *,
    .mission-section *,
    .shilpa-faq * {
        box-sizing: border-box;
    }
/* =========================================================
   SHILPA QUEEN
========================================================= */

.shilpa-queen {
    width: 100%;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 10% 10%, rgb(255, 255, 255), transparent 30% ), radial-gradient( circle at 90% 90%, rgba(210,105,30,.06), transparent 30% ), #ffffff;
}

.shilpa-queen-container {
    width: 100%;
    max-width: 1250px;
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.shilpa-queen-header {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.shilpa-queen-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    border-radius: 50px;
    color: #d2691e;
    background: rgba(210,105,30,.08);
    border: 1px solid rgba(210,105,30,.18);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

    .shilpa-queen-badge i {
        animation: shilpaQueenPulse 1.5s infinite;
    }

.shilpa-queen-header h2 {
    margin: 0;
    font-size: clamp(36px,5vw,60px);
    line-height: 1.1;
    font-weight: 800;
    color: #050950;
}

    .shilpa-queen-header h2 span {
        display: block;
        color: #d2691e;
    }

.shilpa-queen-header p {
    max-width: 780px;
    margin: 25px auto 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.shilpa-queen-header strong {
    color: #d2691e;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.shilpa-queen-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

    .shilpa-queen-section-title > span {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #d2691e;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(210,105,30,.20);
    }

    .shilpa-queen-section-title small {
        display: block;
        color: #d2691e;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .shilpa-queen-section-title h3 {
        margin: 0;
        font-size: 28px;
        color: #0c177b;
        font-weight: 800;
    }


/* =========================================================
   CORE FEATURE CARDS
========================================================= */

.shilpa-queen-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.shilpa-queen-card {
    position: relative;
    padding: 28px 24px;
    min-height: 330px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 35px rgba(0,0,0,.055);
    overflow: hidden;
    transition: .35s ease;
}

    .shilpa-queen-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -55px;
        top: -55px;
        border-radius: 50%;
        background: rgba(210,105,30,.07);
        transition: .4s ease;
    }

    .shilpa-queen-card:hover {
        transform: translateY(-10px);
        border-color: rgba(210,105,30,.25);
        box-shadow: 0 20px 50px rgba(210,105,30,.12);
    }

        .shilpa-queen-card:hover::before {
            transform: scale(2);
        }

.shilpa-queen-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(210,105,30,.10);
    color: #d2691e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    transition: .3s ease;
}

.shilpa-queen-card:hover .shilpa-queen-icon {
    background: #d2691e;
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.shilpa-queen-number {
    position: absolute;
    top: 28px;
    right: 23px;
    color: #eeeeee;
    font-size: 35px;
    font-weight: 900;
}

.shilpa-queen-card h4 {
    position: relative;
    margin: 0 0 13px;
    color: #000000;
    font-size: 19px;
    font-weight: 800;
}

.shilpa-queen-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

.shilpa-queen-line {
    height: 1px;
    background: #eeeeee;
    margin: 20px 0 15px;
}

.shilpa-queen-tag {
    color: #d2691e;
    font-size: 11px;
    font-weight: 800;
}

    .shilpa-queen-tag i {
        margin-right: 5px;
    }


/* =========================================================
   DEVELOPER
========================================================= */

.shilpa-queen-developer-title {
    margin-bottom: 35px;
}

.shilpa-queen-developer {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 100px;
}

.shilpa-queen-dev-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #eeeeee;
    background: #fff;
    transition: .35s ease;
}

    .shilpa-queen-dev-card:hover {
        transform: translateX(7px);
        border-color: rgba(210,105,30,.25);
        box-shadow: 0 15px 35px rgba(0,0,0,.07);
    }

.shilpa-queen-dev-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(210,105,30,.10);
    color: #d2691e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.shilpa-queen-dev-card h4 {
    margin: 3px 0 8px;
    color: #000000;
    font-size: 17px;
    font-weight: 800;
}

.shilpa-queen-dev-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

.shilpa-queen-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #ddd;
    transition: .3s;
}

.shilpa-queen-dev-card:hover .shilpa-queen-arrow {
    color: #d2691e;
    transform: translateX(4px);
}


/* =========================================================
   USERS
========================================================= */

.shilpa-queen-users {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-bottom: 80px;
}

.shilpa-queen-user {
    padding: 25px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eeeeee;
    transition: .35s ease;
}

    .shilpa-queen-user:hover {
        transform: translateY(-7px);
        border-color: rgba(210,105,30,.25);
        box-shadow: 0 15px 35px rgba(0,0,0,.07);
    }

.shilpa-queen-user-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(210,105,30,.10);
    color: #d2691e;
    margin-bottom: 18px;
    font-size: 19px;
}

.shilpa-queen-user h4 {
    margin: 0 0 9px;
    color: #000000;
    font-size: 16px;
    font-weight: 800;
}

.shilpa-queen-user p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.shilpa-queen-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #fff7f0, #ffffff );
    border: 1px solid rgba(210,105,30,.16);
}

.shilpa-queen-cta-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #d2691e;
    color: #fff;
    font-size: 25px;
}

.shilpa-queen-cta-content {
    flex: 1;
}

    .shilpa-queen-cta-content small {
        color: #d2691e;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .shilpa-queen-cta-content h3 {
        margin: 5px 0;
        color: #222;
        font-size: 23px;
        font-weight: 800;
    }

    .shilpa-queen-cta-content p {
        margin: 0;
        color: #777;
        font-size: 13px;
    }

.shilpa-queen-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 9px;
    background: #d2691e;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
}

    .shilpa-queen-cta-btn:hover {
        background: #b9570d;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(210,105,30,.25);
    }


/* =========================================================
   ANIMATION
========================================================= */

.shilpa-queen-card,
.shilpa-queen-dev-card,
.shilpa-queen-user {
    opacity: 0;
    transform: translateY(25px);
}

    .shilpa-queen-card.shilpa-queen-show,
    .shilpa-queen-dev-card.shilpa-queen-show,
    .shilpa-queen-user.shilpa-queen-show {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes shilpaQueenPulse {

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

    50% {
        transform: scale(1.2);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .shilpa-queen-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .shilpa-queen-users {
        grid-template-columns: repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .shilpa-queen {
        padding: 70px 16px;
    }

    .shilpa-queen-header {
        margin-bottom: 55px;
    }

        .shilpa-queen-header h2 {
            font-size: 35px;
        }

        .shilpa-queen-header p {
            font-size: 14px;
            line-height: 1.7;
        }

    .shilpa-queen-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 70px;
    }

    .shilpa-queen-card {
        min-height: auto;
    }

    .shilpa-queen-section-title h3 {
        font-size: 22px;
    }

    .shilpa-queen-developer {
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }

    .shilpa-queen-users {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .shilpa-queen-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .shilpa-queen-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .shilpa-queen-header h2 {
        font-size: 30px;
    }

    .shilpa-queen-section-title {
        gap: 12px;
    }

        .shilpa-queen-section-title > span {
            width: 43px;
            height: 43px;
            font-size: 12px;
        }

        .shilpa-queen-section-title h3 {
            font-size: 19px;
        }

    .shilpa-queen-dev-card {
        padding: 20px 17px;
    }
}



/* =========================
   ABOUT MAIN
========================= */

.about-section {
    padding: 90px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-section .about-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}


.about-image-frame {
    position: relative;
    width: 100%;
    border-radius: 25px;
    padding: 12px;
    background: linear-gradient(135deg, #d2691e, #f4b183);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

    .about-image-frame img {
        width: 100%;
        height: 500px;
        display: block;
        object-fit: cover;
        border-radius: 18px;
    }


.experience-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 145px;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    text-align: center;
}

    .experience-badge strong {
        display: block;
        font-size: 34px;
        line-height: 1;
        color: #d2691e;
    }

    .experience-badge span {
        display: block;
        margin-top: 7px;
        font-size: 12px;
        color: #555;
    }


.section-tag {
    color: #d2691e;
    margin-bottom: 12px;
}

.about-content h2 {
    margin: 0;
    font-size: 44px;
    color: #08064a;
}

.heading-line {
    width: 75px;
    height: 4px;
    margin: 15px 0 25px;
    border-radius: 10px;
    background: #d2691e;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 17px;
}

.first-letter {
    float: left;
    font-size: 55px;
    line-height: .8;
    margin-right: 7px;
    font-weight: 700;
    color: #d2691e;
}


.more-about-content {
    display: none;
    animation: aboutFade .5s ease;
}

    .more-about-content.show {
        display: block;
    }

@keyframes aboutFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

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


.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 25px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    border: 0;
    border-radius: 8px;
    background: #d2691e;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s ease, background .3s ease;
}

    .about-btn:hover {
        background: #b9560e;
        transform: translateY(-3px);
    }

.signup-btn {
    background: #20242a;
}

    .signup-btn:hover {
        background: #000;
    }


/* =========================
   TWO HEADING
========================= */

.two-heading {
    width: 100%;
    padding: 75px 20px;
    text-align: center;
    background: linear-gradient(135deg, #111827, #202936);
    color: #fff;
}

    .two-heading p {
        max-width: 800px;
        margin: 0 auto 15px;
        color: rgba(255, 255, 255, .75);
        font-size: 16px;
        line-height: 1.7;
    }

    .two-heading h2 {
        margin: 10px 0;
        font-size: 38px;
    }

    .two-heading h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, .75);
    }


/* =========================
   OVERVIEW
========================= */

.mission-section {
    padding: 90px 20px;
    background: #f7f8fb;
}

    .mission-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

.mission-title span {
    color: #d2691e;
}

.mission-title h2 {
    margin: 7px 0 15px;
    font-size: 42px;
    color: #060a4c;
}

.sec-title h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.Overview-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.overview-image {
    position: relative;
    border-radius: 25px;
    overflow: visible;
}

    .overview-image img {
        width: 100%;
        height: 430px;
        display: block;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
    }

.overview-floating-card {
    position: absolute;
    left: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

    .overview-floating-card i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff0e5;
        color: #d2691e;
    }

    .overview-floating-card strong,
    .overview-floating-card span {
        display: block;
    }

    .overview-floating-card strong {
        font-size: 14px;
    }

    .overview-floating-card span {
        font-size: 12px;
        color: #777;
    }


/* =========================
   MISSION
========================= */

.shilpa-objectivet {
    padding: 70px 20px 30px;
    text-align: center;
    font-size: 43px;
    font-weight: 700;
    background: #fff;
}

    .shilpa-objectivet span {
        color: #d2691e;
    }


.shilpa-faq {
    padding: 30px 20px 100px;
    background: #fff;
}

.faq {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}


.faq-left-image-desktop {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
}

    .faq-left-image-desktop img {
        width: 100%;
        height: 520px;
        display: block;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .faq-left-image-desktop:hover img {
        transform: scale(1.04);
    }


.mission-image-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    backdrop-filter: blur(8px);
}

    .mission-image-caption > i {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #d2691e;
    }

    .mission-image-caption strong,
    .mission-image-caption span {
        display: block;
    }

    .mission-image-caption strong {
        font-size: 16px;
    }

    .mission-image-caption span {
        margin-top: 4px;
        font-size: 11px;
        color: rgba(255, 255, 255, .7);
    }


.faq-title > span {
    color: #d2691e;
}

.faq-title h2 {
    margin: 10px 0;
    font-size: 40px;
    line-height: 1.2;
}

    .faq-title h2 strong {
        color: #d2691e;
    }

.faq-title > p {
    color: #777;
    line-height: 1.7;
}


.faq-body {
    margin-top: 30px;
}

    .faq-body details {
        border-bottom: 1px solid #e5e5e5;
        padding: 0;
    }

    .faq-body summary {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 70px;
        cursor: pointer;
        font-weight: 600;
        color: #222;
    }

        .faq-body summary::-webkit-details-marker {
            display: none;
        }

.faq-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0e5;
    color: #d2691e;
}

.faq-plus {
    margin-left: auto;
    color: #d2691e;
    transition: transform .3s ease;
}

.faq-body details[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-body details p {
    padding: 0 45px 22px 54px;
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .about-section .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image {
        max-width: 700px;
        margin: auto;
        width: 100%;
    }

    .about-content {
        max-width: 850px;
        margin: auto;
    }

    .mission-section .row {
        grid-template-columns: 1fr;
    }

    .image-column {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .faq {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-left-desktop {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {


    .main-story {
        min-height: 260px;
    }

        .main-story h2 {
            font-size: 30px;
        }

        .main-story p {
            font-size: 15px;
        }

    .image-box {
        min-height: 260px !important;
    }


    .about-section {
        padding: 55px 15px;
    }

        .about-section .about-container {
            gap: 40px;
        }

    .about-image-frame img {
        height: 350px;
    }

    .experience-badge {
        right: 15px;
        bottom: 20px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-buttons {
        width: 100%;
    }

    .about-btn {
        flex: 1;
        min-width: 145px;
    }


    .two-heading {
        padding: 55px 18px;
    }

        .two-heading h2 {
            font-size: 29px;
        }

        .two-heading h3 {
            font-size: 14px;
            line-height: 1.6;
        }


    .mission-section {
        padding: 55px 15px;
    }

        .mission-section .row {
            gap: 40px;
        }

    .mission-title h2 {
        font-size: 34px;
    }

    .Overview-text p {
        font-size: 15px;
    }

    .overview-image img {
        height: 330px;
    }

    .overview-floating-card {
        left: 15px;
        bottom: 15px;
    }


    .shilpa-objectivet {
        padding: 50px 15px 20px;
        font-size: 34px;
    }

    .shilpa-faq {
        padding: 20px 15px 60px;
    }

    .faq {
        gap: 35px;
    }

    .faq-left-image-desktop img {
        height: 350px;
    }

    .faq-title h2 {
        font-size: 32px;
    }

    .faq-body summary {
        font-size: 14px;
        min-height: 65px;
    }

    .faq-body details p {
        padding: 0 10px 20px 54px;
        font-size: 13px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .about-image-frame img {
        height: 280px;
    }

    .experience-badge {
        min-width: 125px;
        padding: 14px;
    }

        .experience-badge strong {
            font-size: 27px;
        }

        .experience-badge span {
            font-size: 10px;
        }

    .about-content h2 {
        font-size: 30px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
    }

    .faq-left-image-desktop img {
        height: 290px;
    }

    .mission-image-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}


/* =========================
   REDUCE MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/*Contactus */
/* =====================================================
       API CONTACT PAGE
       FRESH RESPONSIVE DESIGN
       ===================================================== */

:root {
    --api-white: #ffffff;
    --api-light: #f6f6f6;
    --api-border: rgba(0, 0, 0, 0.10);
    --api-green: #ff6c0b;
    --api-green-dark: #ff8605;
    --api-shadow: 0 15px 45px rgba(42, 22, 5, 0.303);
    --api-radius: 20px;
}


html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* =====================================================
       PAGE HERO
       ===================================================== */

.api-contact-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #1e1102;
    margin-top: 5px;
}


    .api-contact-hero::before,
    .api-contact-hero::after {
        content: "";
        position: absolute;
        border: 1px dotted rgb(250, 250, 250);
        border-radius: 50%;
        animation: apiContactHeroRotate 15s linear infinite;
    }


    .api-contact-hero::before {
        width: 450px;
        height: 450px;
        left: -180px;
        top: -160px;
    }


    .api-contact-hero::after {
        width: 550px;
        height: 550px;
        right: -220px;
        bottom: -260px;
        animation-direction: reverse;
    }


@keyframes apiContactHeroRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.api-contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}


.api-contact-hero-small {
    display: inline-block;
    color: #faad11;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-style: oblique;
    border: #fcfcfc double 1px;
    border-radius: 50px;
    padding: 15px;
    box-shadow: #ffffff 2px 2px 2px 2px;
}


.api-contact-hero h5 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}


    .api-contact-hero h5 span {
        color: #ff8716;
    }


.api-contact-hero-line {
    width: 75px;
    height: 3px;
    background: #f8960d;
    margin: 25px auto 0;
    animation: apiContactLinePulse 2s ease-in-out infinite;
}


@keyframes apiContactLinePulse {

    0%, 100% {
        width: 55px;
    }

    50% {
        width: 110px;
    }
}


/* =====================================================
               APISOLUTION  MAIN CONTACT SECTION CSS AREA
       ===================================================== */

.api-contact-main {
    width: 100%;
    padding: 90px 20px;
    background: #f7f7f7;
}


.api-contact-wrapper {
    max-width: 1200px;
    margin: auto;
}


.api-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
    align-items: stretch;
}


/* =====================================================
           APISOLUTION CONTACT SECTION CSS DETAILS
       ===================================================== */

.api-contact-details {
    background: #011c37;
    color: #ffffff;
    border-radius: var(--api-radius);
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--api-shadow);
}


    .api-contact-details::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50%;
        right: -100px;
        top: -100px;
    }


    .api-contact-details::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50%;
        left: -90px;
        bottom: -90px;
    }


.api-contact-details-content {
    position: relative;
    z-index: 2;
}


.api-contact-details-label {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}


.api-contact-details h2 {
    color: #ffffff;
    margin: 12px 0 18px;
    font-size: 38px;
    line-height: 1.15;
}


    .api-contact-details h2 span {
        color: #ff9114;
    }


.api-contact-details-intro {
    color: #fdfdfd;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 35px;
}


.api-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


    .api-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 27px;
    }


.api-contact-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #ff7513;
    border-radius: 12px;
    transition: .3s ease;
}


.api-contact-list li:hover .api-contact-icon {
    background: #ff0303;
    color: #ffffff;
    transform: rotate(8deg) scale(1.08);
}


.api-contact-list-text strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 5px;
}


.api-contact-list-text a,
.api-contact-list-text span {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.6;
}


    .api-contact-list-text a:hover {
        color: #ffffff;
    }


/* =====================================================
              APISOLUTION MAIN CONTACT TOP MAP. CSS
       ===================================================== */

.api-contact-map-card {
    background: #ffffff;
    padding: 12px;
    border-radius: var(--api-radius);
    box-shadow: var(--api-shadow);
    min-height: 85%;
    overflow: hidden;
    border: 1px solid rgb(255, 106, 0);
}


.api-contact-map {
    width: 100%;
    height: 100%;
    min-height: 490px;
    border: 0;
    display: block;
    border-radius: 14px;
}


/* =====================================================
             APISOLUTION DIRECT CONTACT SERVICE ARIA
       ===================================================== */

.api-contact-direct {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}


.api-contact-section-label {
    display: block;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.api-contact-direct h2 {
    margin: 0 0 12px;
    color: #000000;
    font-size: clamp(30px, 4vw, 46px);
}


    .api-contact-direct h2 span {
        color: #ff8e1e;
    }


.api-contact-direct-description {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #000000;
    line-height: 1.8;
}


.api-contact-direct-buttons {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.api-contact-direct-button {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    color: #111111;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.632);
    transition: .35s ease;
}


    .api-contact-direct-button i {
        width: 42px;
        height: 42px;
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #ff7d12;
        color: #f8f8f8;
        transition: .35s ease;
    }


    .api-contact-direct-button strong {
        display: block;
        font-size: 14px;
        text-align: left;
    }


    .api-contact-direct-button small {
        display: block;
        margin-top: 3px;
        color: #888888;
        text-align: left;
    }


    .api-contact-direct-button:hover {
        transform: translateY(-8px);
        border-color: #ff9822;
        box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
    }


        .api-contact-direct-button:hover i {
            background: #000000;
            transform: rotate(8deg);
        }


/* =====================================================
            APISOLUTION CONTACT WHATSAPP FORM SECTION
       ===================================================== */

.api-contact-form-section {
    padding: 90px 20px;
    background: #f7f7f7;
}


.api-contact-form-wrapper {
    max-width: 850px;
    margin: auto;
}


.api-contact-form-heading {
    text-align: center;
    margin-bottom: 45px;
}


    .api-contact-form-heading h2 {
        margin: 0 0 10px;
        font-size: clamp(32px, 5vw, 48px);
        color: #000000;
    }


        .api-contact-form-heading h2 span {
            color: #ff7c02;
        }


    .api-contact-form-heading p {
        max-width: 600px;
        margin: auto;
        color: #000000;
        line-height: 1.8;
    }


.api-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--api-radius);
    box-shadow: var(--api-shadow);
}


.api-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.api-contact-field {
    position: relative;
}


    .api-contact-field.full {
        grid-column: 1 / -1;
    }


    .api-contact-field label {
        display: block;
        margin-bottom: 8px;
        color: #222222;
        font-size: 13px;
        font-weight: 600;
    }


    .api-contact-field input,
    .api-contact-field textarea {
        width: 100%;
        border: 1px solid #dddddd;
        background: #fafafa;
        border-radius: 10px;
        padding: 14px 15px;
        color: #111111;
        outline: none;
        transition: .3s ease;
        font-size: 14px;
    }


    .api-contact-field input {
        height: 50px;
    }


    .api-contact-field textarea {
        min-height: 140px;
        resize: vertical;
    }


        .api-contact-field input:focus,
        .api-contact-field textarea:focus {
            border-color: #000000;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
        }


.api-contact-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}


.api-contact-submit-button {
    min-width: 190px;
    min-height: 52px;
    padding: 12px 25px;
    border: 0;
    border-radius: 10px;
    background: #fe831f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s ease;
}


    .api-contact-submit-button i {
        margin-left: 8px;
        color: #ffffff;
    }


    .api-contact-submit-button:hover {
        background: #000000;
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgb(255, 125, 25);
    }


.api-contact-form-message {
    display: none;
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
}


    .api-contact-form-message.show {
        display: block;
    }


    .api-contact-form-message.error {
        background: #fff0f0;
        color: #c40000;
    }


/* =====================================================
            APISOLUTION MAIN CONTACT  FEATURE CARDS  CSS
       ===================================================== */

.api-contact-features {
    padding: 90px 20px;
    background: #ffffff;
}


.api-contact-features-heading {
    text-align: center;
    margin-bottom: 45px;
}


    .api-contact-features-heading h2 {
        margin: 0 0 12px;
        color: #000000;
        font-size: clamp(30px, 4vw, 44px);
    }


        .api-contact-features-heading h2 span {
            color: #ff7525;
        }


    .api-contact-features-heading p {
        color: #000000;
    }


.api-contact-feature-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.api-contact-feature-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 35px 30px;
    overflow: hidden;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.313);
}


    .api-contact-feature-card::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #f2f2f2;
        right: -45px;
        top: -45px;
        transition: .4s ease;
    }


    .api-contact-feature-card:hover {
        transform: translateY(-10px);
        border-color: #ff8026;
        box-shadow: 0 20px 45px rgba(255, 104, 22, 0.346);
    }


        .api-contact-feature-card:hover::before {
            background: #ff7d0c;
        }


.api-contact-feature-number {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 800;
    color: #1f0b0b;
    letter-spacing: 2px;
}


.api-contact-feature-icon {
    width: 65px;
    height: 65px;
    margin: 25px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff700b;
    color: #ffffff;
    border-radius: 16px;
    font-size: 24px;
    transition: .4s ease;
}


.api-contact-feature-card:hover .api-contact-feature-icon {
    background: #000000;
    transform: rotate(-8deg) scale(1.08);
}


.api-contact-feature-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #000000;
}


.api-contact-feature-card p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
}






/* =====================================================
          APISOLUTION SERVICE SECTION RESPONCIVE CSS MOBILE
       ===================================================== */

@media (max-width: 767px) {
    .api-contact-hero {
        min-height: 260px;
    }

    .api-contact-hero-content {
        padding: 50px 15px;
    }


    .api-contact-hero h5 {
        font-size: 46px;
        letter-spacing: -2px;
    }


    .api-contact-main {
        padding: 55px 15px;
    }


    .api-contact-details {
        padding: 30px 23px;
        border-radius: 16px;
    }


        .api-contact-details h2 {
            font-size: 31px;
        }


    .api-contact-map {
        min-height: 350px;
    }


    .api-contact-direct {
        padding: 55px 15px;
    }


    .api-contact-direct-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .api-contact-form-section {
        padding: 55px 15px;
    }


    .api-contact-form {
        padding: 25px 18px;
        border-radius: 15px;
    }


    .api-contact-form-grid {
        grid-template-columns: 1fr;
    }


    .api-contact-field.full {
        grid-column: auto;
    }


    .api-contact-submit {
        grid-column: auto;
    }


    .api-contact-features {
        padding: 55px 15px;
    }


    .api-contact-feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .api-contact-feature-card {
        padding: 28px 23px;
    }
}

/* =====================================================
       SMALL MOBILE
       ===================================================== */

@media (max-width: 420px) {

    .api-contact-hero h5 {
        font-size: 39px;
    }


    .api-contact-details h2 {
        font-size: 28px;
    }


    .api-contact-list li {
        gap: 10px;
    }


    .api-contact-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }


    .api-contact-form {
        padding: 22px 15px;
    }


    .api-contact-submit-button {
        width: 100%;
    }
}
/*servicedetail*/
/* =========================================================
       APISOLUTION SERVICES PAGE
       ALL NEW CLASSES START WITH sm-
       ========================================================= */

:root {
    --sm-primary: #111111;
    --sm-secondary: #222222;
    --sm-accent: chocolate;
    --sm-accent-light: #d88948;
    --sm-white: #ffffff;
    --sm-light: #f7f7f7;
    --sm-border: rgba(0, 0, 0, 0.10);
    --sm-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
    --sm-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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


/* =========================================================
       PAGE HERO
       ========================================================= */

.sm-page-hero {
    margin: 5px;
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(210, 105, 30, .14), transparent 30%), radial-gradient(circle at 85% 80%, rgba(210, 105, 30, .12), transparent 30%), #111111;
    isolation: isolate;
}

    .sm-page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .04) 45%, rgba(255, 255, 255, .04) 46%, transparent 46%);
        background-size: 45px 45px;
        opacity: .7;
        z-index: -1;
    }

.sm-page-hero-content {
    width: min(1150px, 92%);
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
    animation: smHeroIn .8s ease both;
}

.sm-page-hero-badge h1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: #f5f5f5 2px 2px 2px 2px;
}

.sm-page-hero h5 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
}

    .sm-page-hero h5 span {
        color: var(--sm-accent);
    }

.sm-page-hero p {
    max-width: 750px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, .75);
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.8;
}

@keyframes smHeroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


/* =========================================================
       INTRO
       ========================================================= */

.sm-intro {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 75px 0 45px;
    text-align: center;
}

.sm-section-label {
    display: inline-block;
    color: var(--sm-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sm-intro h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    color: #0a0536;
}

    .sm-intro h2 span {
        color: var(--sm-accent);
    }

.sm-intro-line {
    width: 70px;
    height: 4px;
    background: var(--sm-accent);
    margin: 18px auto;
    border-radius: 10px;
}

.sm-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}


/* =========================================================
       FEATURE CARDS
       ========================================================= */

.sm-feature-section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 20px 0 75px;
}

.sm-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sm-feature-card {
    position: relative;
    padding: 35px 28px;
    min-height: 285px;
    border-radius: var(--sm-radius);
    background: #ffffff;
    border: 1px solid var(--sm-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    opacity: 0;
    transform: translateY(35px);
}

    .sm-feature-card.sm-show {
        opacity: 1;
        transform: translateY(0);
    }

    .sm-feature-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -45px;
        top: -45px;
        border-radius: 50%;
        background: rgba(8, 6, 46, 0.89);
    }

    .sm-feature-card:hover {
        transform: translateY(-9px);
        border-color: rgba(210, 105, 30, .35);
        box-shadow: var(--sm-shadow);
    }

.sm-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(8, 6, 46, 0.89);
    color: whitesmoke;
    font-size: 28px;
    margin-bottom: 22px;
    transition: .35s ease;
}

.sm-feature-card:hover .sm-feature-icon {
    background: var(--sm-accent);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.05);
}

.sm-feature-card h3 {
    margin: 0 0 13px;
    font-size: 20px;
    font-weight: 700;
}

.sm-feature-card p {
    margin: 0;
    color: #666666;
    line-height: 1.75;
    font-size: 14px;
}

.sm-feature-link {
    display: inline-flex;
    margin-top: 20px;
    color: rgba(8, 6, 46, 0.89);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

    .sm-feature-link:hover {
        color: #ff6e25;
        text-decoration: none;
    }


/* =========================================================
       SERVICES
       ========================================================= */

.sm-services {
    background: #f7f7f7;
    padding: 85px 0 100px;
}

.sm-services-header {
    width: min(1000px, 92%);
    margin: 0 auto 55px;
    text-align: center;
}

    .sm-services-header h2 {
        margin: 0;
        font-size: clamp(31px, 4vw, 48px);
        font-weight: 800;
    }

        .sm-services-header h2 span {
            color: var(--sm-accent);
        }

    .sm-services-header p {
        max-width: 750px;
        margin: 18px auto 0;
        color: #666666;
        line-height: 1.8;
        font-size: 15px;
    }

.sm-service-grid {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sm-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 535px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .055);
    overflow: hidden;
    transition: .4s ease;
    opacity: 0;
    transform: translateY(45px);
}

    .sm-service-card.sm-show {
        opacity: 1;
        transform: translateY(0);
    }

    .sm-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: var(--sm-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: .4s ease;
    }

    .sm-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    }

        .sm-service-card:hover::before {
            transform: scaleX(1);
        }

.sm-service-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 6, 46, 0.89);
    color: #f5f5f5;
    font-size: 29px;
    margin-bottom: 25px;
    transition: .35s ease;
}

.sm-service-card:hover .sm-service-icon {
    background: var(--sm-accent);
    color: #ffffff;
    transform: translateY(-4px);
}

.sm-service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(0, 0, 0, .035);
    line-height: 1;
}

.sm-service-card h3 {
    margin: 0 0 17px;
    font-size: 21px;
    font-weight: 750;
    color: #111111;
}

.sm-service-card p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.85;
}

.sm-service-bottom {
    margin-top: auto;
    padding-top: 25px;
}

.sm-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

    .sm-service-btn i {
        color: var(--sm-accent);
        transition: .3s ease;
    }

    .sm-service-btn:hover {
        color: var(--sm-accent);
        text-decoration: none;
    }

        .sm-service-btn:hover i {
            transform: translateX(5px);
        }


/* =========================================================
       CTA
       ========================================================= */

.sm-cta {
    width: min(1150px, 92%);
    margin: 80px auto;
    padding: 60px 50px;
    border-radius: 25px;
    background: rgba(8, 6, 46, 0.89);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

    .sm-cta::before,
    .sm-cta::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 3px solid rgba(210, 105, 30, 0.597);
    }

    .sm-cta::before {
        width: 260px;
        height: 260px;
        left: -100px;
        top: -130px;
    }

    .sm-cta::after {
        width: 220px;
        height: 220px;
        right: -80px;
        bottom: -120px;
    }

    .sm-cta h2 {
        position: relative;
        margin: 0 0 15px;
        font-size: clamp(27px, 4vw, 42px);
        font-weight: 800;
    }

    .sm-cta p {
        position: relative;
        max-width: 700px;
        margin: 0 auto 28px;
        color: rgba(255, 255, 255, .72);
        line-height: 1.8;
    }

.sm-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 27px;
    border-radius: 50px;
    border: 0;
    background: var(--sm-accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

    .sm-cta-btn:hover {
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(63, 34, 255, 0.728);
    }


/* =========================================================
       PRICING
       ========================================================= */

.sm-pricing {
    background: #ffffff;
    padding: 85px 0 100px;
}

.sm-pricing-header {
    width: min(900px, 92%);
    margin: 0 auto 45px;
    text-align: center;
}

    .sm-pricing-header h2 {
        margin: 0;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 800;
    }

        .sm-pricing-header h2 span {
            color: var(--sm-accent);
        }

    .sm-pricing-header p {
        color: #666666;
        margin: 15px auto 0;
        line-height: 1.8;
    }

.sm-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 30px auto 45px;
    flex-wrap: wrap;
}

.sm-toggle-label {
    font-size: 14px;
    font-weight: 600;
}

.sm-toggle {
    position: relative;
    width: 58px;
    height: 31px;
    display: inline-block;
}

    .sm-toggle input {
        display: none;
    }

.sm-toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #222222;
    border-radius: 50px;
    transition: .3s;
}

    .sm-toggle-slider::before {
        content: "";
        position: absolute;
        width: 23px;
        height: 23px;
        left: 4px;
        top: 4px;
        background: #ffffff;
        border-radius: 50%;
        transition: .3s;
    }

.sm-toggle input:checked + .sm-toggle-slider {
    background: var(--sm-accent);
}

    .sm-toggle input:checked + .sm-toggle-slider::before {
        transform: translateX(27px);
    }

.sm-pricing-grid {
    width: min(1200px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sm-price-card {
    position: relative;
    border: 1px solid var(--sm-border);
    border-radius: 22px;
    padding: 35px 30px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .35s ease;
    overflow: hidden;
}

    .sm-price-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sm-shadow);
    }

    .sm-price-card.sm-popular {
        border: 2px solid var(--sm-accent);
    }

.sm-popular-label {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--sm-accent);
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
}

.sm-plan-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.sm-price {
    font-size: 39px;
    font-weight: 800;
    color: var(--sm-accent);
    margin-bottom: 25px;
}

    .sm-price small {
        font-size: 13px;
        color: #777777;
        font-weight: 500;
    }

.sm-price-live {
    display: none;
}

.sm-pricing-grid.sm-live .sm-price-general {
    display: none;
}

.sm-pricing-grid.sm-live .sm-price-live {
    display: block;
}

.sm-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sm-features li {
        padding: 11px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        color: #555555;
        font-size: 14px;
    }

        .sm-features li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--sm-accent);
            margin-right: 9px;
        }

.sm-price-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding: 13px 20px;
    background: rgba(8, 6, 46, 0.89);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .sm-price-btn:hover {
        background: var(--sm-accent);
        color: #ffffff;
        text-decoration: none;
    }


/* =========================================================
       WHY CHOOSE US
       ========================================================= */

.sm-why {
    background: #f7f7f7;
    padding: 90px 0;
}

.sm-why-container {
    width: min(1150px, 92%);
    margin: auto;
}

.sm-why-heading {
    text-align: center;
    margin-bottom: 45px;
}

    .sm-why-heading h2 {
        margin: 0;
        font-size: clamp(30px, 4vw, 45px);
        font-weight: 800;
    }

        .sm-why-heading h2 span {
            color: rgba(255, 112, 29, 0.866);
        }

    .sm-why-heading p {
        max-width: 700px;
        margin: 15px auto 0;
        color: #666666;
        line-height: 1.8;
    }

.sm-why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sm-why-item {
    display: flex;
    gap: 17px;
    padding: 25px;
    background: #ffffff;
    border-radius: 17px;
    border: 1px solid rgba(0, 0, 0, .07);
    transition: .3s ease;
}

    .sm-why-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

.sm-why-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #081445;
    color: white;
}

.sm-why-item strong {
    color: #ff5112;
}

.sm-why-item span {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
       PARTNERS
       ========================================================= */

.sm-partners {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.sm-partners-header {
    text-align: center;
    width: min(900px, 92%);
    margin: 0 auto 40px;
}

    .sm-partners-header h2 {
        margin: 0;
        font-size: clamp(30px, 4vw, 44px);
        font-weight: 800;
    }

        .sm-partners-header h2 span {
            color: var(--sm-accent);
        }

    .sm-partners-header p {
        color: #666666;
        margin-top: 13px;
    }

.sm-partner-window {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sm-partner-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 25px;
    animation: smPartnerMove 25s linear infinite;
}

.sm-partner-window:hover .sm-partner-track {
    animation-play-state: paused;
}

.sm-partner-item {
    width: 180px;
    height: 100px;
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
}

    .sm-partner-item img {
        filter: grayscale(60%);
        max-width: 100%;
        max-height: 65px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

@keyframes smPartnerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
       RESPONSIVE
       ========================================================= */

@media (max-width: 1100px) {

    .sm-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-price-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        width: 100%;
        margin: auto;
    }
}


@media (max-width: 768px) {

    .sm-page-hero {
        min-height: 280px;
    }

    .sm-page-hero-content {
        padding: 45px 15px;
    }

    .sm-intro {
        padding-top: 55px;
    }

    .sm-feature-grid,
    .sm-service-grid,
    .sm-pricing-grid,
    .sm-why-list {
        grid-template-columns: 1fr;
    }

    .sm-feature-card {
        min-height: auto;
    }

    .sm-service-card {
        min-height: auto;
        padding: 27px;
    }

    .sm-pricing-grid {
        gap: 22px;
    }

    .sm-price-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .sm-cta {
        padding: 45px 25px;
        margin: 55px auto;
    }

    .sm-why {
        padding: 65px 0;
    }

    .sm-partners {
        padding: 60px 0;
    }

    .sm-partner-item {
        width: 155px;
        flex-basis: 155px;
        height: 90px;
    }
}


@media (max-width: 480px) {

    .sm-page-hero {
        min-height: 245px;
    }

        .sm-page-hero h1 {
            font-size: 38px;
        }

        .sm-page-hero p {
            font-size: 13px;
            line-height: 1.7;
        }

    .sm-feature-section {
        padding-bottom: 50px;
    }

    .sm-feature-card {
        padding: 25px 21px;
    }

    .sm-services {
        padding: 60px 0 70px;
    }

    .sm-service-card {
        padding: 24px 21px;
        border-radius: 18px;
    }

        .sm-service-card h3 {
            font-size: 19px;
        }

        .sm-service-card p {
            font-size: 13.5px;
        }

    .sm-cta {
        border-radius: 18px;
    }

    .sm-price-card {
        padding: 28px 22px;
    }

    .sm-price {
        font-size: 34px;
    }

    .sm-why-item {
        padding: 20px;
    }

    .sm-partner-track {
        gap: 15px;
        animation-duration: 20s;
    }

    .sm-partner-item {
        width: 140px;
        flex-basis: 140px;
        height: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   TRUSTX - COMPLETELY NEW SECTION
   ========================================================= */

.trustx-section {
    width: 100%;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
    background: #f5f8f7;
    font-family: Arial, Helvetica, sans-serif;
}

    /* Background decoration */

    .trustx-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(7, 126, 91, 0.07);
        top: -250px;
        left: -180px;
        pointer-events: none;
    }

    .trustx-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255, 139, 0, 0.06);
        bottom: -200px;
        right: -150px;
        pointer-events: none;
    }


/* Main container */

.trustx-wrap {
    width: min(1180px, 100%);
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
   ========================================================= */

.trustx-titlebox {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.trustx-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: #e5f5ef;
    color: #ff8d13;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

    .trustx-label i {
        width: 20px;
        height: 20px;
        display: block;
        border-radius: 50%;
        background: #ff930f;
        animation: trustxPulse 1.7s infinite;
    }

.trustx-title {
    margin: 0;
    color: #03044a;
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.15;
    font-weight: 800;
}

    .trustx-title span {
        color: #ff7519;
    }

.trustx-description {
    max-width: 680px;
    margin: 18px auto 0;
    color: #697783;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CARDS GRID
   ========================================================= */

.trustx-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================================
   CARD
   ========================================================= */

.trustx-box {
    position: relative;
    min-height: 350px;
    padding: 30px 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4ebe8;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(45, 35, 20, 0.06);
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


    /* Active animation */

    .trustx-box.trustx-show {
        opacity: 1;
        transform: translateY(0);
    }


        /* Hover */

        .trustx-box.trustx-show:hover {
            transform: translateY(-10px);
            border-color: rgba(126, 94, 7, 0.3);
            box-shadow: 0 25px 55px rgba(20, 35, 45, 0.13);
        }


    /* Top glow */

    .trustx-box::before {
        content: "";
        position: absolute;
        width: 160px;
        height: 160px;
        top: -90px;
        right: -80px;
        border-radius: 50%;
        background: rgba(126, 94, 7, 0.07);
        transition: transform .5s ease;
    }

    .trustx-box:hover::before {
        transform: scale(1.5);
    }


/* =========================================================
   TOP AREA
   ========================================================= */

.trustx-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


/* =========================================================
   ICON
   ========================================================= */

.trustx-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #020956;
    color: #ff8800;
    transition: transform .35s ease, background .35s ease, color .35s ease;
    font-size: 27px;
    font-weight: bold;
}

.trustx-box:hover .trustx-icon {
    background: #ff8c00;
    color: #ffffff;
    transform: scale(1.08) rotate(-5deg);
}


/* =========================================================
   STEP NUMBER
   ========================================================= */

.trustx-step {
    color: #faf3d5;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.trustx-content {
    position: relative;
    margin-top: 30px;
}

    .trustx-content h3 {
        margin: 0 0 14px;
        color: #0d044b;
        font-size: 18px;
        line-height: 1.4;
        font-weight: 800;
    }

    .trustx-content p {
        margin: 0;
        color: #697783;
        font-size: 13.5px;
        line-height: 1.85;
    }

    .trustx-content strong {
        color: #ff9b18;
    }


/* =========================================================
   BOTTOM LINE
   ========================================================= */

.trustx-line {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;
    height: 3px;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}

    .trustx-line span {
        display: block;
        width: 0;
        height: 100%;
        border-radius: inherit;
        background: #fd9c14;
        transition: width 1.2s ease;
    }

.trustx-box.trustx-show .trustx-line span {
    width: 100%;
}


/* =========================================================
   BOTTOM TRUST BAR
   ========================================================= */

.trustx-footer {
    width: min(900px, 100%);
    margin: 40px auto 0;
    padding: 18px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    border: 1px solid #e2eae7;
    border-radius: 18px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 10px 30px rgba(20,35,45,.05);
}

.trustx-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #130344;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.trustx-footer-icon {
    color: #f89913;
    font-size: 16px;
    font-weight: bold;
}

.trustx-divider {
    width: 1px;
    height: 25px;
    background: #dce5e1;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes trustxPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(27, 7, 126, 0.35);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(23, 7, 126, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(126, 98, 7, 0);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .trustx-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .trustx-section {
        padding: 60px 15px;
    }

    .trustx-titlebox {
        margin-bottom: 38px;
    }

    .trustx-title {
        font-size: 31px;
    }

    .trustx-description {
        font-size: 13.5px;
    }

    .trustx-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trustx-box {
        min-height: 300px;
        padding: 25px 22px;
    }

    .trustx-content {
        margin-top: 24px;
    }

    .trustx-footer {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .trustx-divider {
        width: 80%;
        height: 1px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .trustx-box {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .trustx-label i {
        animation: none;
    }
}
/*termcondition*/
/* =====================================================
       TERMS SECTION - BASE CSS START 
    ===================================================== */

.terms,
.terms * {
    box-sizing: border-box;
}

.terms {
    --terms-primary: #d2691e;
    --terms-primary-dark: #a94f0d;
    --terms-secondary: #111827;
    --terms-text: #4b5563;
    --terms-muted: #6b7280;
    --terms-bg: #f6f8fb;
    --terms-card: #ffffff;
    --terms-border: #e5e7eb;
    --terms-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    padding: 70px 20px;
    background: radial-gradient(circle at 10% 10%, rgba(210, 105, 30, 0.08), transparent 30%), radial-gradient(circle at 90% 90%, rgba(210, 105, 30, 0.06), transparent 30%), var(--terms-bg);
    color: var(--terms-text);
    font-family: inherit;
    overflow: hidden;
}

    .terms::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(210, 105, 30, 0.05);
        top: -150px;
        right: -100px;
        pointer-events: none;
    }

    .terms::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(210, 105, 30, 0.04);
        bottom: -120px;
        left: -100px;
        pointer-events: none;
    }

.terms-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =====================================================
       HEADER
    ===================================================== */

.terms-header {
    text-align: center;
    margin-bottom: 35px;
}

.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(210, 105, 30, 0.1);
    color: var(--terms-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

    .terms-badge i {
        font-size: 14px;
    }

.terms-header h1 {
    margin: 0 0 12px;
    color: var(--terms-secondary);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

    .terms-header h1 span {
        color: var(--terms-primary);
    }

.terms-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--terms-muted);
    font-size: 16px;
    line-height: 1.8;
}

.terms-updated {
    margin-top: 16px;
    display: inline-block;
    color: #777;
    font-size: 13px;
    background: #fff;
    border: 1px solid var(--terms-border);
    padding: 7px 14px;
    border-radius: 30px;
}

/* =====================================================
       TOP TOOLBAR
    ===================================================== */

.terms-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.terms-search {
    position: relative;
    flex: 1;
    max-width: 600px;
}

    .terms-search i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        pointer-events: none;
    }

    .terms-search input {
        width: 100%;
        height: 48px;
        border: 1px solid #ddd;
        outline: none;
        border-radius: 12px;
        padding: 0 18px 0 45px;
        font-size: 14px;
        background: #fff;
        color: #222;
        transition: 0.25s ease;
    }

        .terms-search input:focus {
            border-color: var(--terms-primary);
            box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.1);
        }

.terms-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.terms-action-btn {
    border: 0;
    cursor: pointer;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    transition: 0.25s ease;
}

    .terms-action-btn:hover {
        background: var(--terms-primary);
        color: #fff;
        transform: translateY(-2px);
    }

/* =====================================================
       READING PROGRESS
    ===================================================== */

.terms-progress {
    width: 100%;
    height: 5px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.terms-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--terms-primary), #f59e0b);
    border-radius: inherit;
    transition: width 0.15s linear;
}

/* =====================================================
       INTRO CARD
    ===================================================== */

.terms-intro-card {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--terms-shadow);
    position: relative;
    overflow: hidden;
}

    .terms-intro-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(210, 105, 30, 0.18);
        right: -60px;
        top: -70px;
    }

    .terms-intro-card h2 {
        position: relative;
        z-index: 2;
        margin: 0 0 12px;
        font-size: 24px;
        color: #fff;
    }

    .terms-intro-card p {
        position: relative;
        z-index: 2;
        margin: 0;
        color: #d1d5db;
        font-size: 15px;
        line-height: 1.85;
    }

/* =====================================================
       TERMS CONTENT
    ===================================================== */

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.terms-item {
    background: var(--terms-card);
    border: 1px solid var(--terms-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.035);
    transition: 0.3s ease;
}

    .terms-item:hover {
        border-color: rgba(210, 105, 30, 0.25);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    }

    .terms-item.active {
        border-color: rgba(210, 105, 30, 0.4);
    }

.terms-title {
    width: 100%;
    border: 0;
    outline: none;
    cursor: pointer;
    background: transparent;
    color: var(--terms-secondary);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.4;
}

    .terms-title:hover {
        color: var(--terms-primary);
    }

.terms-title-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--terms-primary);
    background: rgba(210, 105, 30, 0.1);
    font-size: 16px;
}

.terms-title-text {
    flex: 1;
}

.terms-arrow {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    transition: 0.3s ease;
}

.terms-item.active .terms-arrow {
    transform: rotate(180deg);
    background: var(--terms-primary);
    color: #fff;
}

.terms-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.terms-body-inner {
    padding: 0 24px 25px 79px;
}

.terms-body p {
    margin: 0 0 15px;
    color: var(--terms-text);
    font-size: 14px;
    line-height: 1.9;
}

    .terms-body p:last-child {
        margin-bottom: 0;
    }

.terms-body ul {
    margin: 10px 0 18px;
    padding-left: 20px;
}

.terms-body li {
    margin-bottom: 10px;
    color: var(--terms-text);
    font-size: 14px;
    line-height: 1.8;
}

.terms-body strong {
    color: var(--terms-secondary);
}

/* =====================================================
       HIGHLIGHT BOXES
    ===================================================== */

.terms-note {
    padding: 18px 20px;
    border-left: 4px solid var(--terms-primary);
    background: #fff8f2;
    border-radius: 0 10px 10px 0;
    margin: 15px 0;
}

    .terms-note p {
        margin: 0;
    }

.terms-important {
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

    .terms-important strong {
        color: #9a3412;
    }

/* =====================================================
       REFUND SPECIAL CARD
    ===================================================== */

.terms-item.refund-card {
    border: 2px solid rgba(210, 105, 30, 0.35);
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(210, 105, 30, .7), rgba(245, 158, 11, .4)) border-box;
}

.refund-card .terms-title-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.refund-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.refund-box {
    padding: 20px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

    .refund-box h4 {
        margin: 0 0 8px;
        color: var(--terms-secondary);
        font-size: 15px;
    }

    .refund-box p {
        margin: 0;
    }

/* =====================================================
       SECURED FOOTER
    ===================================================== */

.terms-secured {
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--terms-border);
    box-shadow: var(--terms-shadow);
    text-align: center;
}

.terms-secured-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 24px;
}

.terms-secured h3 {
    margin: 0 0 8px;
    color: var(--terms-secondary);
    font-size: 20px;
}

.terms-secured p {
    max-width: 800px;
    margin: auto;
    color: var(--terms-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
       NO RESULT
    ===================================================== */

.terms-no-result {
    display: none;
    padding: 35px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--terms-border);
    border-radius: 15px;
    color: #6b7280;
}

    .terms-no-result i {
        font-size: 32px;
        margin-bottom: 10px;
        color: var(--terms-primary);
    }

/* =====================================================
       RESPONSIVE
    ===================================================== */

@media (max-width: 900px) {
    .terms {
        padding: 55px 16px;
    }

    .terms-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .terms-search {
        max-width: none;
    }

    .terms-actions {
        justify-content: stretch;
    }

    .terms-action-btn {
        flex: 1;
    }
}

@media (max-width: 700px) {
    .terms {
        padding: 45px 12px;
    }

    .terms-header {
        margin-bottom: 25px;
    }

        .terms-header h1 {
            font-size: 30px;
        }

        .terms-header p {
            font-size: 14px;
            line-height: 1.7;
        }

    .terms-intro-card {
        padding: 22px 18px;
        border-radius: 15px;
    }

        .terms-intro-card h2 {
            font-size: 20px;
        }

    .terms-toolbar {
        padding: 13px;
        border-radius: 14px;
    }

    .terms-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .terms-title {
        padding: 16px;
        font-size: 15px;
    }

    .terms-title-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .terms-arrow {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .terms-body-inner {
        padding: 0 16px 20px 16px;
    }

    .terms-body p,
    .terms-body li {
        font-size: 13.5px;
        line-height: 1.8;
    }

    .refund-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .terms {
        padding-left: 8px;
        padding-right: 8px;
    }

    .terms-header h1 {
        font-size: 26px;
    }

    .terms-title {
        gap: 10px;
        padding: 14px 12px;
    }

    .terms-title-icon {
        width: 32px;
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .terms-title-text {
        font-size: 14px;
    }

    .terms-actions {
        grid-template-columns: 1fr;
    }

    .terms-body-inner {
        padding-left: 14px;
        padding-right: 14px;
    }
}