/*==================================================
        PREMIUM HERO CSS - STEP 2
==================================================*/

.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f7f9fd;
}

/* Background */

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    /* पहले 42% था */
    height: 93%;
    background: #0b4dbb;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    width: 90px;
    /* पहले 180px था */
    height: 93%;
    background: #2f6be6;
    opacity: .18;
    clip-path: polygon(45% 0, 100% 0, 55% 100%, 0 100%);
}

.hero-banner .container {
    position: relative;
    z-index: 10;
}

/*==========================
LEFT
==========================*/

.hero-content {

    padding-right: 60px;

}

.top-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: #fff;

    color: #0b4dbb;

    font-weight: 700;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    margin-bottom: 25px;

}

.hero-content h1 {

    font-size: 60px;

    line-height: 1.1;

    font-weight: 800;

    color: #1d1d1d;

    margin-bottom: 25px;

}

.hero-content h1 span {

    color: #0b4dbb;

}

.hero-content p {

    color: #666;

    font-size: 18px;

    line-height: 32px;

    max-width: 520px;

}

/*==========================
FEATURE ICONS
==========================*/

.hero-icons {

    display: flex;

    gap: 2px;

    flex-wrap: wrap;

    margin: 35px 0;

}

.hero-icon {

    width: 120px;

    text-align: center;

}

.hero-icon i {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    background: #fff;

    color: #0b4dbb;

    font-size: 26px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

}

.hero-icon span {

    display: block;

    margin-top: 10px;

    font-size: 14px;

    font-weight: 600;

}

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

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 10px;

}

.btn-main {

    padding: 16px 38px;

    border-radius: 8px;

    background: #0b4dbb;

    color: #fff;

    font-weight: 900;

    text-decoration: none;

}

.btn-main:hover {

    color: #fff;

    background: #07378b;

}

.btn-light {

    padding: 16px 38px;

    border: 2px solid #0b4dbb;

    color: #0b4dbb;

    border-radius: 8px;

    font-weight: 700;

    text-decoration: none;

    background: #fff;

}

.btn-light:hover {

    background: #0b4dbb;

    color: #fff;

}

.trust-line {

    margin-top: 28px;

    font-weight: 600;

    color: #666;

}

.trust-line i {

    color: #0b4dbb;

    margin-right: 8px;

}

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

.hero-right {

    position: relative;

    padding-left: 40px;

}

/* Slider */

.hero-slider {

    border-radius: 24px;

    overflow: hidden;

}

.hero-image {

    width: 100%;

    height: 600px;

    object-fit: cover;

    display: block;

}

/* Floating Card */

.security-card {

    position: absolute;

    left: -40px;

    bottom: 35px;

    width: 310px;

    background: #fff;

    border-radius: 18px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

.security-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #eef4ff;

    color: #0b4dbb;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}

.security-card h5 {

    margin: 0;

    font-weight: 700;

    color: #1d1d1d;

}

.security-card p {

    margin: 5px 0 0;

    font-size: 14px;

    color: #666;

}

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

.hero-icon,
.btn-main,
.btn-light,
.security-card {

    transition: .35s;

}

.hero-icon:hover {

    transform: translateY(-8px);

}

.btn-main:hover,
.btn-light:hover {

    transform: translateY(-3px);

}

.security-card:hover {

    transform: translateY(-6px);

}

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

@media(max-width:991px) {

    .hero-banner {
        padding-top: 180px;
        padding-bottom: 0px;
    }

    .hero-banner::before,

    .hero-banner::after {

        display: none;

    }

    .hero-content {

        padding-right: 0;

        text-align: center;

        margin-bottom: 50px;

    }

    .hero-content h1 {

        font-size: 42px;

    }

    .hero-icons {

        justify-content: center;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-right {

        padding-left: 0;

    }

    .hero-image {

        height: 420px;

    }

    .security-card {

        position: relative;

        left: auto;

        bottom: auto;

        margin: 20px auto 0;

        width: 100%;

        max-width: 320px;

    }

}

@media(max-width:576px) {

    .hero-content h1 {

        font-size: 34px;

    }

    .hero-content p {

        font-size: 16px;

        line-height: 28px;

    }

    .hero-image {

        height: 320px;

    }

    .hero-icon {

        width: 46%;

    }

    .btn-main,

    .btn-light {

        width: 100%;

        text-align: center;

    }

}

/*====================================================
        STEP 3 - PREMIUM FINISH
====================================================*/

/* Decorative Shapes */
.hero-banner .shape-1 {
    position: absolute;
    top: -120px;
    right: 18%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, .08);
    border-radius: 30px;
    transform: rotate(45deg);
    z-index: 1;
}

.hero-banner .shape-2 {
    position: absolute;
    bottom: -120px;
    right: 6%;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, .05);
    border-radius: 40px;
    transform: rotate(45deg);
    z-index: 1;
}

/* Right Side */
.hero-right {

    position: relative;

    z-index: 5;

}

/* Image Frame */

.hero-slider {

    position: relative;

    border-radius: 30px;

    overflow: hidden;

    background: #fff;

    padding: 12px;

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

}

/* Golden Border */

.hero-slider::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid rgba(255, 215, 0, .4);

    border-radius: 30px;

    pointer-events: none;

}

/* Shine */

.hero-slider::after {

    content: "";

    position: absolute;

    top: -40%;

    left: -80%;

    width: 60%;

    height: 180%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: rotate(25deg);

    transition: 1s;

}

.hero-slider:hover::after {

    left: 150%;

}

/* Image */

.hero-image {

    border-radius: 22px;

    transition: .6s;

}

.hero-slider:hover .hero-image {

    transform: scale(1.04);

}

/* Floating Card */

.security-card {

    border-left: 5px solid #0b4dbb;

    animation: floatCard 4s ease-in-out infinite;

}

/* Trust Line */

.trust-line {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

}

/* Icons */

.hero-icon i {

    transition: .35s;

}

.hero-icon:hover i {

    background: #0b4dbb;

    color: #fff;

    transform: rotate(8deg);

}

/* Buttons */

.btn-main {

    position: relative;

    overflow: hidden;

}

.btn-main::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .18);

    transition: .5s;

}

.btn-main:hover::before {

    left: 100%;

}

/* Floating Animation */

@keyframes floatCard {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/* Image Floating */

.hero-slider {

    animation: heroFloat 6s ease-in-out infinite;

}

@keyframes heroFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

/* Background Glow */

.hero-banner {

    background-image:
        radial-gradient(circle at left, #dcecff 0%, transparent 30%),
        radial-gradient(circle at right, #cddfff 0%, transparent 28%),
        linear-gradient(135deg, #f7f9fd, #ffffff);

}

/*==================================================
            HERO MOBILE CSS
==================================================*/

@media (max-width:991.98px) {

    .hero-banner {
        padding: 8px 0 20px;
    }

    /* Hide Shapes */
    .shape-1,
    .shape-2,
    .hero-banner::before,
    .hero-banner::after {
        display: none;
    }

    /* Desktop Content Hide */
    .hero-content {
        display: none !important;
    }

    /* Mobile Content */
    .mobile-hero-content {
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }

    .mobile-tag {

        display: inline-block;

        padding: 8px 20px;

        background: #0B4DBB;

        color: #fff;

        border-radius: 30px;

        font-size: 13px;

        font-weight: 700;

        margin-bottom: 18px;
    }

    .mobile-hero-content h2 {

        font-size: 34px;

        font-weight: 800;

        color: #222;

        line-height: 1.2;

        margin-bottom: 15px;
    }

    .mobile-hero-content h2 span {

        color: #0B4DBB;

    }

    .mobile-hero-content p {

        font-size: 15px;

        line-height: 28px;

        color: #666;

        margin-bottom: 22px;
    }

    .mobile-register-btn {

        display: inline-block;

        width: 100%;

        max-width: 300px;

        padding: 15px;

        border-radius: 50px;

        background: #0B4DBB;

        color: #fff;

        font-weight: 700;

        text-decoration: none;

        box-shadow: 0 12px 25px rgba(11, 77, 187, .25);
    }

    .mobile-register-btn:hover {

        color: #fff;

        background: #083D97;
    }

    /* Image */

    .hero-right {

        padding: 0;

        margin-top: 20px;
    }

    .hero-slider {

        border-radius: 18px;

        overflow: hidden;

        padding: 0;

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

    .hero-image {

        width: 100%;

        height: 340px;

        object-fit: cover;

        border-radius: 18px;
    }

    /* Floating Card */

    .security-card {

        position: relative;

        left: auto;

        right: auto;

        bottom: auto;

        width: 100%;

        max-width: 320px;

        margin: 18px auto 0;

        border-radius: 16px;

        padding: 18px;
    }

}


/*=========================
Extra Small Mobile
=========================*/

@media (max-width:575.98px) {

    .hero-banner {

        padding: 25px 0;
    }

    .mobile-hero-content h2 {

        font-size: 28px;
    }

    .mobile-hero-content p {

        font-size: 14px;

        line-height: 24px;
    }

    .hero-image {

        height: 260px;
    }

    .security-card {

        max-width: 95%;
    }

}

.mobile-floating-btn {

    display: none;

}

@media(max-width:991px) {

    .mobile-floating-btn {

        display: flex;

        position: absolute;

        top: 195px;

        right: 15px;

        z-index: 100;

        padding: 12px 18px;

        background: #0B4DBB;

        color: #fff;

        border-radius: 40px;

        font-weight: 700;

        text-decoration: none;

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

    }

    .mobile-floating-btn:hover {

        color: #fff;

        background: #083b94;

    }

}

/*==================================================
        HOW IT WORKS - FINAL CSS (PART 1)
==================================================*/

.how-section {
    position: relative;
    padding: 20px 0;
    background: #f8fbff;
    overflow: hidden;
}

.how-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .05);
}

.how-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .04);
}

/*======================
Heading
======================*/

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #0B4DBB;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    position: relative;
    display: inline-block;

    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;

    color: #1f2937;

    padding: 0 35px 18px;

    margin-bottom: 20px;

    text-transform: capitalize;

    transition: .4s;
}

/* Gold Top Icon */

.section-heading h2::before {
    position: absolute;

    top: -28px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 22px;

    color: #FFD700;

    text-shadow: 0 0 12px rgba(255, 215, 0, .7);
}

/* Premium Underline */

.section-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 320px;
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(90deg,
            transparent,
            #a10909,
            #0B4DBB,
            #FFD700,
            transparent);
}

/* Hover */

.section-heading h2:hover {

    transform: translateY(-4px);

}

/* Subtitle */

.section-heading p {

    max-width: 760px;

    margin: auto;

    font-size: 18px;

    line-height: 32px;

    color: #141414;

    font-weight: 500;

}

/* Mobile */

@media(max-width:768px) {

    .section-heading h2 {

        font-size: 34px;

    }

    .section-heading p {

        font-size: 16px;

        line-height: 28px;

    }

}

/*======================
Wrapper
======================*/

.work-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 35px;
}

/*======================
Item
======================*/

.work-item {
    flex: 1;
    position: relative;
}

/*======================
Card
======================*/

.work-card {

    position: relative;

    background: #fff;

    border-radius: 22px;

    padding: 45px 30px;

    text-align: center;

    border: 1px solid #edf2ff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: all .35s ease;

    height: 100%;

}

.work-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: #0B4DBB;

    border-radius: 22px 22px 0 0;

}

.work-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(11, 77, 187, .18);

    border-color: #0B4DBB;

}

/*======================
Number
======================*/

.work-number {

    width: 58px;

    height: 58px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #0B4DBB;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 700;

    box-shadow: 0 10px 25px rgba(11, 77, 187, .28);

    transition: .35s;

}

.work-card:hover .work-number {

    transform: scale(1.08);

}

/*======================
Icon
======================*/

.work-icon-box {

    width: 110px;

    height: 110px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #eef4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

    overflow: hidden;

}

.work-icon {

    width: 65px;

    height: 65px;

    object-fit: contain;

    display: block;

    transition: .35s;

    filter: none !important;

    opacity: 1 !important;

}

.work-card:hover .work-icon-box {

    background: #dfeaff;

}

.work-card:hover .work-icon {

    transform: scale(1.08);

    filter: none !important;

    opacity: 1 !important;

}

/*======================
Title
======================*/

.work-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: #111;

    margin-bottom: 15px;

}

/*======================
Text
======================*/

.work-card p {

    font-size: 15px;

    color: #101010;
    text-align: justify;
    line-height: 28px;

    margin: 0;

}

/*======================
Connector
======================*/

.work-connector {

    position: absolute;

    top: 30px;

    right: -55px;

    width: 110px;

    z-index: 20;

}

.work-connector .line {

    width: 100%;

    height: 3px;

    background: #d6e3ff;

}

.work-connector .arrow {

    position: absolute;

    top: -12px;

    right: -4px;

    color: #0B4DBB;

    font-size: 28px;

}

/*==================================================
        HOW IT WORKS - FINAL CSS (PART 2)
==================================================*/

/*==============================
Hover Animation
==============================*/

.work-card,
.work-icon,
.work-icon-box,
.work-number,
.work-connector,
.work-connector .line,
.work-connector .arrow {

    transition: all .35s ease;

}

.work-card:hover .work-icon {

    transform: scale(1.08);

    filter: none !important;

    opacity: 1 !important;

}

.work-card:hover .work-icon-box {

    background: #dfeaff;

}

.work-card:hover .work-connector .line {

    background: #0B4DBB;

}

.work-card:hover .work-connector .arrow {

    transform: translateX(6px);

    color: #0B4DBB;

}

/*==============================
Card Animation
==============================*/

.work-card {

    animation: fadeCard .6s ease;

}

@keyframes fadeCard {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
Equal Height
==============================*/

.work-item {

    display: flex;

}

.work-card {

    width: 100%;

}

/*==============================
Desktop Large
==============================*/

@media(min-width:1400px) {

    .work-wrapper {

        gap: 50px;

    }

    .work-card {

        padding: 50px 35px;

    }

}

/*==============================
Tablet
==============================*/

@media(max-width:991.98px) {

    .how-section {

        padding: 60px 0;

    }

    .section-heading {

        margin-bottom: 40px;

    }

    .section-heading h2 {

        font-size: 32px;

    }

    .section-heading p {

        font-size: 15px;

        line-height: 26px;

        padding: 0 15px;

    }

    .work-wrapper {

        display: block;

    }

    .work-item {

        display: block;

        margin-bottom: 25px;

    }

    .work-card {

        padding: 35px 22px;

        height: auto;

    }

    .work-number {

        width: 48px;

        height: 48px;

        font-size: 18px;

        margin-bottom: 15px;

    }

    .work-icon-box {

        width: 90px;

        height: 90px;

        margin-bottom: 18px;

    }

    .work-icon {

        width: 52px;

        height: 52px;

    }

    .work-card h3 {

        font-size: 22px;

    }

    .work-card p {

        font-size: 14px;

        line-height: 24px;

    }

    .work-connector {

        display: none;

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:575.98px) {

    .how-section {

        padding: 15px 0;

    }

    .section-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

    .section-heading h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .section-heading p {

        font-size: 14px;

        line-height: 24px;

    }

    .work-card {

        padding: 28px 18px;

        border-radius: 18px;

    }

    .work-number {

        width: 42px;

        height: 42px;

        font-size: 16px;

    }

    .work-icon-box {

        width: 78px;

        height: 78px;

        margin-bottom: 15px;

    }

    .work-icon {

        width: 44px;

        height: 44px;

    }

    .work-card h3 {

        font-size: 20px;

        margin-bottom: 10px;

    }

    .work-card p {

        font-size: 14px;

        line-height: 23px;

    }

}

/*==============================
Smooth Shadow
==============================*/

.work-card {

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

}

.work-card:hover {

    box-shadow: 0 25px 60px rgba(11, 77, 187, .16);

}

/*==============================
Fix PNG Icons
==============================*/

.work-icon {

    display: block;

    visibility: visible !important;

    opacity: 1 !important;

    filter: none !important;

    mix-blend-mode: normal;

}

/*==============================
Prevent Image Disappear
==============================*/

.work-card:hover img {

    opacity: 1 !important;

    visibility: visible !important;

    filter: none !important;

}

/*==================================================
            OUR STANDARDS - PART 2
==================================================*/

.standards-section {
    position: relative;
    padding: 15px 0;
    background: #f8fbff;
    overflow: hidden;
}

/* Background Shapes */

.standards-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .05);
}

.standards-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .04);
}

/*==========================
Heading
==========================*/

.standards-section .section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.standards-section .section-badge {

    display: inline-block;

    padding: 10px 24px;

    background: #0B4DBB;

    color: #fff;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

}

.standards-section .section-heading h2 {

    font-size: 40px;

    font-weight: 800;

    margin: 18px 0 15px;

    color: #222;

}

.standards-section .section-heading p {

    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 30px;

    font-size: 16px;

}

/*==========================
Card
==========================*/

.standard-card {

    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    border: 1px solid #edf2ff;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .35s;

    height: 100%;

    overflow: hidden;

}

.standard-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: #0B4DBB;

}

/*==========================
Number
==========================*/

.standard-number {

    width: 52px;

    height: 52px;

    margin: 0 auto 20px;

    background: #0B4DBB;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    font-weight: 700;

    box-shadow: 0 12px 25px rgba(11, 77, 187, .25);

}

/*==========================
Icon
==========================*/

.standard-icon {

    width: 110px;

    height: 110px;

    margin: 0 auto 25px;

    background: #eef4ff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.standard-icon img {

    width: 60px;

    height: 60px;

    object-fit: contain;

    transition: .35s;

}

/*==========================
Title
==========================*/

.standard-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: #080808;

    margin-bottom: 15px;

}

/*==========================
Description
==========================*/

.standard-card p {

    color: #080808;

    font-size: 15px;
    text-align: justify;
    line-height: 28px;

    margin: 0;

}

/*==========================
Hover
==========================*/

.standard-card:hover {

    transform: translateY(-10px);

    border-color: #0B4DBB;

    box-shadow: 0 28px 55px rgba(11, 77, 187, .18);

}

.standard-card:hover .standard-number {

    transform: scale(1.08);

}

.standard-card:hover .standard-icon {

    background: #dfeaff;

}

.standard-card:hover img {

    transform: scale(1.08);

}

/*==========================
Transition
==========================*/

.standard-card,
.standard-number,
.standard-icon,
.standard-icon img {

    transition: all .35s ease;

}

/*==================================================
        OUR STANDARDS - PART 3
==================================================*/

/*==============================
Desktop Large
==============================*/

@media(min-width:1400px) {

    .standards-section .container {
        max-width: 1380px;
    }

    .standard-card {
        padding: 45px 35px;
    }

}

/*==============================
Tablet
==============================*/

@media(max-width:991.98px) {

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

    .standards-section .section-heading {
        margin-bottom: 45px;
    }

    .standards-section .section-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .standards-section .section-heading p {
        font-size: 15px;
        line-height: 26px;
        padding: 0 15px;
    }

    .standard-card {

        padding: 35px 22px;

        border-radius: 20px;

        margin-bottom: 20px;

        height: 100%;

    }

    .standard-number {

        width: 46px;

        height: 46px;

        font-size: 17px;

        margin-bottom: 15px;

    }

    .standard-icon {

        width: 90px;

        height: 90px;

        margin-bottom: 20px;

    }

    .standard-icon img {

        width: 50px;

        height: 50px;

    }

    .standard-card h3 {

        font-size: 21px;

    }

    .standard-card p {

        font-size: 14px;

        line-height: 24px;

    }

}

/*==============================
Small Mobile
==============================*/

@media(max-width:575.98px) {

    .standards-section {

        padding: 10px 0;

    }

    .standards-section .section-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

    .standards-section .section-heading h2 {

        font-size: 28px;

    }

    .standards-section .section-heading p {

        font-size: 14px;

        line-height: 24px;

    }

    .standard-card {

        padding: 28px 18px;

    }

    .standard-number {

        width: 42px;

        height: 42px;

        font-size: 15px;

    }

    .standard-icon {

        width: 78px;

        height: 78px;

    }

    .standard-icon img {

        width: 42px;

        height: 42px;

    }

    .standard-card h3 {

        font-size: 19px;

    }

}

/*==============================
Equal Height
==============================*/

.standards-section .row>[class*="col-"] {

    display: flex;

}

.standard-card {

    width: 100%;

}

/*==============================
Animation
==============================*/

.standard-card {

    animation: standardFade .6s ease;

}

@keyframes standardFade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
Premium Hover
==============================*/

.standard-card:hover {

    transform: translateY(-8px);

}

.standard-card:hover .standard-number {

    transform: scale(1.12);

}

.standard-card:hover .standard-icon {

    background: #0B4DBB;

}

.standard-card:hover .standard-icon img {

    transform: scale(1.10);

    filter: none !important;

    opacity: 1 !important;

}

/*==============================
Smooth Transition
==============================*/

.standard-card,
.standard-number,
.standard-icon,
.standard-icon img {

    transition: all .35s ease;

}

/*==============================
Prevent PNG Disappear
==============================*/

.standard-icon img {

    display: block;

    visibility: visible !important;

    opacity: 1 !important;

    filter: none !important;

    mix-blend-mode: normal;

}

/*==================================================
        COMPARISON SECTION
==================================================*/

.comparison-section {
    padding: 20px 0;
    background: #fff;
}

/* Heading */

.comparison-section .section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.comparison-section .section-badge {

    display: inline-block;

    padding: 8px 22px;

    border-radius: 40px;

    background: #0B4DBB;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

}

.comparison-section .section-heading h2 {

    font-size: 40px;

    font-weight: 800;

    margin: 18px 0 10px;

    color: #1f2937;

}

.comparison-section .section-heading p {

    color: #6b7280;

    max-width: 700px;

    margin: auto;

    line-height: 28px;

}

/*==============================
Table Wrapper
==============================*/

.comparison-table-wrap {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    border: 1px solid #edf2ff;

}

/*==============================
Table
==============================*/

.comparison-table {

    width: 100%;

    margin: 0;

    border-collapse: collapse;

}

/* Header */

.comparison-table thead th {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    padding: 18px;

    text-align: center;

    border: none;

}

.head-feature {

    background: #0B4DBB;

    width: 35%;

}

.head-other {

    background: #E53935;

    width: 32.5%;

}

.head-us {

    background: #0B4DBB;

    width: 32.5%;

}

/* Body */

.comparison-table tbody td {

    padding: 18px;

    font-size: 16px;

    color: #444;

    border-bottom: 1px solid #eef2ff;

    vertical-align: middle;

}

.comparison-table tbody tr:last-child td {

    border-bottom: none;

}

/* Left Column */

.comparison-table tbody td:first-child {

    font-weight: 600;

    color: #1f2937;

}

.comparison-table tbody td:first-child i {

    color: #0B4DBB;

    margin-right: 10px;

    font-size: 20px;

}

/* Center Align */

.comparison-table tbody td:nth-child(2),

.comparison-table tbody td:nth-child(3) {

    text-align: left;

    font-weight: 500;

}

/* Icons */

/* Icon Spacing */

.comparison-table tbody td:nth-child(2) i,
.comparison-table tbody td:nth-child(3) i {

    margin-right: 8px;

    font-size: 20px;

    vertical-align: middle;

}

.comparison-table .la-times-circle {

    color: #ef4444;

    font-size: 20px;

    margin-right: 6px;

}

/* Hover */

.comparison-table tbody tr {

    transition: .3s;

}

.comparison-table tbody tr:hover {

    background: #f8fbff;

}

/* Rounded Header */

.comparison-table thead th:first-child {

    border-top-left-radius: 18px;

}

.comparison-table thead th:last-child {

    border-top-right-radius: 18px;

}

/*==================================================
        COMPARISON SECTION - PART 3
==================================================*/

/* Smooth Transition */

.comparison-table,
.comparison-table th,
.comparison-table td,
.comparison-table tbody tr {
    transition: all .3s ease;
}

/* Hover */

.comparison-table tbody tr:hover {

    background: #f5f9ff;

}

.comparison-table tbody tr:hover td:first-child {

    color: #0B4DBB;

}

.comparison-table tbody tr:hover td:first-child i {

    transform: scale(1.1);

}

/* Table Icons */

.comparison-table i {

    transition: .3s;

}

/*==============================
Tablet
==============================*/

@media(max-width:991px) {

    .comparison-section {

        padding: 60px 0;

    }

    .comparison-section .section-heading {

        margin-bottom: 35px;

    }

    .comparison-section .section-heading h2 {

        font-size: 32px;

    }

    .comparison-section .section-heading p {

        font-size: 15px;

        line-height: 26px;

        padding: 0 15px;

    }

    .comparison-table thead th {

        font-size: 16px;

        padding: 14px;

    }

    .comparison-table tbody td {

        padding: 15px;

        font-size: 14px;

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:767px) {

    .comparison-table-wrap {

        overflow-x: auto;

        border-radius: 15px;

    }

    .comparison-table {

        min-width: 700px;

    }

    .comparison-table thead th {

        font-size: 15px;

        padding: 14px 12px;

    }

    .comparison-table tbody td {

        padding: 14px 12px;

        font-size: 14px;

        white-space: nowrap;

    }

    .comparison-table tbody td:first-child {

        font-weight: 600;

    }

    .comparison-table tbody td:first-child i {

        margin-right: 8px;

        font-size: 18px;

    }

}

/*==============================
Small Mobile
==============================*/

@media(max-width:575px) {

    .comparison-section {

        padding: 15px 0;

    }

    .comparison-section .section-badge {

        font-size: 12px;

        padding: 7px 18px;

    }

    .comparison-section .section-heading h2 {

        font-size: 26px;

    }

    .comparison-section .section-heading p {

        font-size: 14px;

        line-height: 24px;

    }

}

/*==============================
Shadow
==============================*/

.comparison-table-wrap {

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.comparison-table-wrap:hover {

    box-shadow: 0 25px 60px rgba(11, 77, 187, .12);

}

/*==============================
Rounded
==============================*/

.comparison-table {

    border-radius: 18px;

    overflow: hidden;

}

/*==============================
Green / Red Icons
==============================*/

.text-success {

    color: #22c55e !important;

}

.text-danger {

    color: #ef4444 !important;

}

/*==================================================
        PREMIUM MEMBERS - PART 2
==================================================*/

.premium-members-section {
    padding: 20px 0;
    background: #f8fbff;
    position: relative;
}

.premium-members-section .container {
    max-width: 1380px;
}

/*=========================
Heading
=========================*/

.premium-members-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.premium-members-section .section-badge {

    display: inline-block;

    padding: 10px 24px;

    background: #0B4DBB;

    color: #fff;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

}

.premium-members-section h2 {

    font-size: 42px;

    font-weight: 800;

    margin: 18px 0 12px;

    color: #1f2937;

}

.premium-members-section p {

    color: #6b7280;

    max-width: 1200px;

    margin: auto;

    line-height: 28px;

}

/*=========================
Carousel
=========================*/

.carousel-box {

    padding: 15px;

}

/*=========================
Card
=========================*/

.premium-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #edf2ff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

    position: relative;

    height: 100%;

}

.premium-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(11, 77, 187, .18);

    border-color: #0B4DBB;

}

/*=========================
Verified Badge
=========================*/

.verified-badge {

    position: absolute;

    top: 15px;

    right: 15px;

    background: #22c55e;

    color: #fff;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 5px;

}

.verified-badge i {

    font-size: 14px;

}

/*=========================
Member Box
=========================*/

.premium-member-box {

    padding: 0;

}

/*=========================
Image
=========================*/

.premium-card img {

    width: 100%;

    display: block;

    transition: .4s;

}

.premium-card:hover img {

    transform: scale(1.05);

}

/*=========================
Name
=========================*/

.premium-card h5 {

    font-size: 20px;

    font-weight: 700;

    color: #222;

    margin-top: 15px;

}

/*=========================
Text
=========================*/

.premium-card p {

    font-size: 14px;

    color: #666;

    line-height: 24px;

}

/*==================================================
        PREMIUM MEMBERS - PART 3
==================================================*/

/*==============================
Tablet
==============================*/

@media (max-width:991.98px) {

    .premium-members-section {
        padding: 60px 0;
    }

    .premium-members-section .section-heading {
        margin-bottom: 40px;
    }

    .premium-members-section h2 {
        font-size: 32px;
    }

    .premium-members-section p {
        font-size: 15px;
        line-height: 26px;
        padding: 0 15px;
    }

    .carousel-box {
        padding: 10px;
    }

    .premium-card {
        border-radius: 20px;
    }

    .verified-badge {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 11px;
    }

}

/*==============================
Mobile
==============================*/

@media(max-width:575.98px) {

    .premium-members-section {
        padding: 15px 0;
    }

    .premium-members-section .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .premium-members-section h2 {
        font-size: 28px;
    }

    .premium-members-section p {
        font-size: 14px;
        line-height: 24px;
    }

    .carousel-box {
        padding: 8px;
    }

    .premium-card {
        border-radius: 18px;
    }

    .verified-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

}

/*==============================
Image
==============================*/

.premium-card img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    transition: .45s ease;

}

.premium-card:hover img {

    transform: scale(1.05);

}

/*==============================
Premium Button
==============================*/

.premium-card .btn {

    border-radius: 30px;

    font-weight: 600;

    padding: 10px 22px;

    transition: .35s;

}

.premium-card .btn:hover {

    transform: translateY(-2px);

}

/*==============================
Dots
==============================*/

.premium-carousel .slick-dots {

    margin-top: 25px;

}

.premium-carousel .slick-dots li button {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #c7d8ff;

}

.premium-carousel .slick-dots li.slick-active button {

    background: #0B4DBB;

    width: 28px;

    border-radius: 20px;

}

/*==============================
Equal Height
==============================*/

.carousel-box {

    display: flex;

}

.premium-card {

    width: 100%;

}

/*==============================
Hover
==============================*/

.premium-card {

    transition: all .35s ease;

}

.premium-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(11, 77, 187, .18);

}

.premium-card:hover .verified-badge {

    transform: scale(1.08);

}

.verified-badge {

    transition: .35s;

}

/*==============================
Border
==============================*/

.premium-card {

    border: 1px solid #edf2ff;

}

.premium-card:hover {

    border-color: #0B4DBB;

}

/*==============================
Animation
==============================*/

.premium-card {

    animation: memberFade .5s ease;

}

@keyframes memberFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================================
        PACKAGE SECTION - PART 2
==================================================*/

.package-section {
    padding: 90px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .05);
    left: -180px;
    top: -180px;
}

.package-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .04);
    right: -120px;
    bottom: -120px;
}

/*=========================
Heading
=========================*/

.package-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.package-section .section-badge {

    display: inline-block;

    background: #0B4DBB;

    color: #fff;

    padding: 10px 24px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

}

.package-section h2 {

    font-size: 42px;

    font-weight: 800;

    margin: 18px 0 12px;

    color: #1f2937;

}

.package-section p {

    max-width: 650px;

    margin: auto;

    color: #6b7280;

    line-height: 28px;

}

/*=========================
Carousel
=========================*/

.package-carousel .carousel-box {

    padding: 15px;

}

/*=========================
Card
=========================*/

.package-card {

    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 35px 28px;

    border: 1px solid #edf2ff;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .35s;

    overflow: hidden;

    height: 100%;

}

.package-card:hover {

    transform: translateY(-10px);

    border-color: #0B4DBB;

    box-shadow: 0 30px 60px rgba(11, 77, 187, .18);

}

/*=========================
Discount Ribbon
=========================*/

.discount-ribbon {

    position: absolute;

    top: 18px;

    right: -38px;

    background: #ff3b30;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    padding: 8px 45px;

    transform: rotate(45deg);

    box-shadow: 0 6px 15px rgba(0, 0, 0, .15);

}

/*=========================
Image
=========================*/

.package-image {

    text-align: center;

    margin-bottom: 20px;

}

.package-image img {

    width: 110px;

    height: 110px;

    object-fit: contain;

    transition: .35s;

}

.package-card:hover .package-image img {

    transform: scale(1.08);

}

/*=========================
Title
=========================*/

.package-card h3 {

    text-align: center;

    font-size: 26px;

    font-weight: 700;

    color: #222;

    margin-bottom: 18px;

}

/*=========================
Price
=========================*/

.package-price {

    text-align: center;

    margin-bottom: 15px;

}

.package-price del {

    display: block;

    color: #999;

    font-size: 18px;

    margin-bottom: 6px;

}

.package-price h2 {

    color: #0B4DBB;

    font-size: 42px;

    font-weight: 800;

    margin: 0;

}

.free-plan {

    display: inline-block;

    background: #22c55e;

    color: #fff;

    padding: 10px 28px;

    border-radius: 30px;

    font-size: 22px;

    font-weight: 700;

}

/*=========================
Validity
=========================*/

.package-validity {

    text-align: center;

    color: #666;

    font-size: 15px;

    margin-bottom: 25px;

}

/*=========================
Features
=========================*/

.package-features {

    list-style: none;

    padding: 0;

    margin: 0 0 30px;

}

.package-features li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid #edf2ff;

    color: #444;

    font-size: 15px;

}

.package-features li:last-child {

    border-bottom: none;

}

.package-features i {

    color: #22c55e;

    font-size: 20px;

}

/*=========================
Button
=========================*/

.package-btn {

    text-align: center;

}

.btn-buy {

    display: inline-block;

    width: 100%;

    background: #0B4DBB;

    color: #fff;

    padding: 14px 20px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    border: none;

    transition: .35s;

}

.btn-buy:hover {

    background: #083b96;

    color: #fff;

    transform: translateY(-2px);

}

/*==================================================
        PACKAGE SECTION - PART 3
==================================================*/

/*==============================
Desktop Large
==============================*/

@media(min-width:1400px) {

    .package-section .container {

        max-width: 1380px;

    }

}

/*==============================
Tablet
==============================*/

@media(max-width:991.98px) {

    .package-section {

        padding: 60px 0;

    }

    .package-section .section-heading {

        margin-bottom: 40px;

    }

    .package-section h2 {

        font-size: 32px;

    }

    .package-section p {

        font-size: 15px;

        line-height: 26px;

        padding: 0 15px;

    }

    .package-card {

        padding: 30px 22px;

        border-radius: 20px;

    }

    .package-image img {

        width: 90px;

        height: 90px;

    }

    .package-card h3 {

        font-size: 22px;

    }

    .package-price h2 {

        font-size: 34px;

    }

    .package-features li {

        font-size: 14px;

        padding: 8px 0;

    }

    .btn-buy {

        padding: 12px 18px;

        font-size: 15px;

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:575.98px) {

    .package-section {

        padding: 45px 0;

    }

    .package-section .section-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

    .package-section h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .package-section p {

        font-size: 14px;

        line-height: 24px;

    }

    .package-card {

        padding: 25px 18px;

        border-radius: 18px;

    }

    .package-image img {

        width: 80px;

        height: 80px;

    }

    .package-card h3 {

        font-size: 20px;

    }

    .package-price del {

        font-size: 16px;

    }

    .package-price h2 {

        font-size: 30px;

    }

    .free-plan {

        font-size: 18px;

        padding: 8px 22px;

    }

    .package-validity {

        font-size: 14px;

        margin-bottom: 20px;

    }

    .package-features li {

        font-size: 14px;

    }

    .discount-ribbon {

        font-size: 11px;

        padding: 6px 40px;

        right: -42px;

    }

}

/*==============================
Equal Height
==============================*/

.package-carousel .carousel-box {

    display: flex;

}

.package-card {

    width: 100%;

    display: flex;

    flex-direction: column;

}

.package-features {

    flex: 1;

}

/*==============================
Hover
==============================*/

.package-card {

    transition: all .35s ease;

}

.package-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 28px 60px rgba(11, 77, 187, .18);

}

.package-card:hover .package-image img {

    transform: scale(1.08);

}

.package-card:hover .discount-ribbon {

    background: #d62828;

}

.discount-ribbon {

    transition: .35s;

}

/*==============================
Carousel Dots
==============================*/

.package-carousel .slick-dots {

    margin-top: 25px;

}

.package-carousel .slick-dots li {

    margin: 0 5px;

}

.package-carousel .slick-dots li button {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #cfdcff;

}

.package-carousel .slick-dots li.slick-active button {

    width: 30px;

    border-radius: 20px;

    background: #0B4DBB;

}

/*==============================
Animation
==============================*/

.package-card {

    animation: packageFade .5s ease;

}

@keyframes packageFade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
Button Effect
==============================*/

.btn-buy {

    position: relative;

    overflow: hidden;

}

.btn-buy::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .18);

    transition: .45s;

}

.btn-buy:hover::before {

    left: 100%;

}

/*==================================================
            FAQ SECTION
==================================================*/

.faq-section {
    position: relative;
    padding: 20px 0;
    background: #f8fbff;
    overflow: hidden;
}

/* Background Shapes */

.faq-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .05);
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .04);
}

/*==========================
Heading
==========================*/

.faq-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-badge {

    display: inline-block;

    padding: 10px 24px;

    background: #0B4DBB;

    color: #fff;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

}

.faq-section h2 {

    font-size: 42px;

    font-weight: 800;

    color: #1f2937;

    margin: 18px 0 12px;

}

.faq-section p {

    max-width: 700px;

    margin: auto;

    color: #6b7280;

    line-height: 28px;

}

/*==========================
Wrapper
==========================*/

.faq-wrapper {

    max-width: 950px;

    margin: auto;

}

/*==========================
FAQ Item
==========================*/

.faq-item {

    background: #fff;

    border-radius: 18px;

    margin-bottom: 18px;

    border: 1px solid #edf2ff;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

    overflow: hidden;

    transition: .35s;

}

.faq-item:hover {

    transform: translateY(-4px);

    border-color: #0B4DBB;

    box-shadow: 0 18px 45px rgba(11, 77, 187, .15);

}

/*==========================
Question
==========================*/

.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 28px;

    cursor: pointer;

    font-size: 18px;

    font-weight: 600;

    color: #222;

    transition: .35s;

}

.faq-question:hover {

    color: #0B4DBB;

}

.faq-question span {

    flex: 1;

    padding-right: 20px;

}

/*==========================
Icon
==========================*/

.faq-question i {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: #eef4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0B4DBB;

    font-size: 22px;

    transition: .35s;

}

.faq-item:hover .faq-question i {

    background: #0B4DBB;

    color: #fff;

}

/*==========================
Answer
==========================*/

.faq-answer {

    padding: 22px 28px;

    border-top: 1px solid #edf2ff;

    font-size: 15px;

    color: #666;

    line-height: 28px;

    background: #fcfdff;

}

.faq-answer p {

    margin-bottom: 12px;

}

.faq-answer p:last-child {

    margin-bottom: 0;

}

/*==========================
Collapse Animation
==========================*/

.collapse {

    transition: all .35s ease;

}

/*==========================
Tablet
==========================*/

@media(max-width:991px) {

    .faq-section {

        padding: 60px 0;

    }

    .faq-section .section-heading {

        margin-bottom: 40px;

    }

    .faq-section h2 {

        font-size: 32px;

    }

    .faq-section p {

        font-size: 15px;

        line-height: 26px;

        padding: 0 15px;

    }

    .faq-question {

        padding: 18px 20px;

        font-size: 16px;

    }

    .faq-answer {

        padding: 18px 20px;

        font-size: 14px;

        line-height: 24px;

    }

}

/*==========================
Mobile
==========================*/

@media(max-width:575px) {

    .faq-section {

        padding: 15px 0;

    }

    .faq-section .section-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

    .faq-section h2 {

        font-size: 28px;

    }

    .faq-section p {

        font-size: 14px;

        line-height: 24px;

    }

    .faq-question {

        padding: 16px;

        font-size: 15px;

    }

    .faq-question i {

        width: 34px;

        height: 34px;

        font-size: 18px;

    }

    .faq-answer {

        padding: 16px;

        font-size: 14px;

        line-height: 24px;

    }

}

/*==========================
Animation
==========================*/

.faq-item {

    animation: faqFade .5s ease;

}

@keyframes faqFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================================
            REVIEW SECTION - PART 2
==================================================*/

.review-section {
    position: relative;
    padding: 20px 0;
    background: #f8fbff;
    overflow: hidden;
}

/* Background Shapes */

.review-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .05);
}

.review-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(11, 77, 187, .04);
}

/*=========================
Heading
=========================*/

.review-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.review-section .section-badge {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 40px;

    background: #0B4DBB;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

}

.review-section h2 {

    font-size: 42px;

    font-weight: 800;

    color: #1f2937;

    margin: 18px 0 12px;

}

.review-section p {

    max-width: 700px;

    margin: auto;

    color: #6b7280;

    line-height: 28px;

}

/*=========================
Carousel
=========================*/

.review-carousel .carousel-box {

    padding: 15px;

}

/*=========================
Card
=========================*/

.review-card {

    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    border: 1px solid #edf2ff;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .35s;

    height: 100%;

}

.review-card:hover {

    transform: translateY(-8px);

    border-color: #0B4DBB;

    box-shadow: 0 28px 60px rgba(11, 77, 187, .16);

}

/*=========================
Image
=========================*/

.review-image {

    margin-bottom: 20px;

}

.review-image img {

    width: 110px;

    height: 110px;

    border-radius: 50%;

    object-fit: cover;

    border: 5px solid #eef4ff;

    transition: .35s;

}

.review-card:hover .review-image img {

    transform: scale(1.05);

    border-color: #0B4DBB;

}

/*=========================
Stars
=========================*/

.review-stars {

    margin-bottom: 20px;

}

.review-stars i {

    color: #ffc107;

    font-size: 22px;

    margin: 0 2px;

}

/*=========================
Review Text
=========================*/

.review-text {

    position: relative;

    font-size: 16px;

    line-height: 30px;

    color: #4b5563;

    text-align: justify;

    font-weight: 400;

    letter-spacing: .2px;

    min-height: 135px;

    margin: 18px 0 22px;

    padding: 0 6px;

    overflow: hidden;

    transition: all .3s ease;

}

/*=========================
Quote
=========================*/

.quote-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #0B4DBB;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

}

.quote-icon i {

    font-size: 24px;

}

/*==================================================
        REVIEW SECTION - PART 3
==================================================*/

/*==============================
Desktop Large
==============================*/

@media(min-width:1400px) {

    .review-section .container {

        max-width: 1380px;

    }

}

/*==============================
Tablet
==============================*/

@media(max-width:991.98px) {

    .review-section {

        padding: 60px 0;

    }

    .review-section .section-heading {

        margin-bottom: 40px;

    }

    .review-section h2 {

        font-size: 32px;

    }

    .review-section p {

        font-size: 15px;

        line-height: 26px;

        padding: 0 15px;

    }

    .review-card {

        padding: 30px 22px;

        border-radius: 20px;

    }

    .review-image img {

        width: 90px;

        height: 90px;

    }

    .review-stars i {

        font-size: 20px;

    }

    .review-text {

        font-size: 15px;

        line-height: 26px;

        min-height: 100px;

    }

    .quote-icon {

        width: 48px;

        height: 48px;

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:575.98px) {

    .review-section {

        padding: 15px 0;

    }

    .review-section .section-badge {

        font-size: 12px;

        padding: 8px 18px;

    }

    .review-section h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .review-section p {

        font-size: 14px;

        line-height: 24px;

    }

    .review-card {

        padding: 25px 18px;

        border-radius: 18px;

    }

    .review-image img {

        width: 80px;

        height: 80px;

    }

    .review-stars {

        margin-bottom: 15px;

    }

    .review-stars i {

        font-size: 18px;

    }

    .review-text {

        font-size: 14px;

        line-height: 24px;

        min-height: auto;

    }

    .quote-icon {

        width: 42px;

        height: 42px;

    }

    .quote-icon i {

        font-size: 18px;

    }

}

/*==============================
Equal Height
==============================*/

.review-carousel .carousel-box {

    display: flex;

}

.review-card {

    width: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

/*==============================
Hover
==============================*/

.review-card {

    transition: all .35s ease;

}

.review-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(11, 77, 187, .18);

}

.review-card:hover .review-image img {

    transform: scale(1.08);

}

.review-card:hover .quote-icon {

    transform: rotate(15deg);

    background: #083b96;

}

.review-image img,
.quote-icon {

    transition: .35s;

}

/*==============================
Carousel Dots
==============================*/

.review-carousel .slick-dots {

    margin-top: 25px;

}

.review-carousel .slick-dots li {

    margin: 0 5px;

}

.review-carousel .slick-dots li button {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #d6e3ff;

}

.review-carousel .slick-dots li.slick-active button {

    width: 30px;

    border-radius: 20px;

    background: #0B4DBB;

}

/*==============================
Fade Animation
==============================*/

.review-card {

    animation: reviewFade .5s ease;

}

@keyframes reviewFade {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
Smooth Scroll
==============================*/

.review-card,
.review-image img,
.review-stars i,
.quote-icon {

    transition: all .35s ease;

}

.app-download-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}

.playstore-icon {

    width: 26px;

    height: auto;

}

/*==================================================
        FOUNDING MEMBER OFFER - PART 2
==================================================*/

.founder-offer-section {
    padding: 10px 0;
    background: #ffffff;
}

/*==========================
Offer Card
==========================*/

.founder-offer-card {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 45px 60px;

    border-radius: 28px;

    overflow: hidden;

    background: linear-gradient(135deg, #061A72, #0B4DBB 45%, #114FCF 100%);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

/* Gold Confetti */

.founder-offer-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        radial-gradient(circle, #FFD54F 2px, transparent 2px),

        radial-gradient(circle, #F4B400 2px, transparent 2px);

    background-size: 70px 70px, 90px 90px;

    background-position: 0 0, 40px 30px;

    opacity: .15;

    pointer-events: none;

}

/*==========================
Left
==========================*/

.offer-left {

    flex: 0 0 240px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.offer-gift {

    width: 220px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

    display: block;

    margin: auto;

    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .25));

    transition: all .35s ease;

}

.founder-offer-card:hover .offer-gift {

    transform: scale(1.08) rotate(-5deg);

}

/*==========================
Center
==========================*/

.offer-center {

    flex: 1;

    color: #fff;

    position: relative;

    z-index: 2;

}

.offer-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    padding: 8px 20px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;

}

.offer-center h2 {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 15px;

    color: #fff;

}

.offer-center h2 span {

    color: #FFD54F;

}

.offer-center p {

    max-width: 600px;

    font-size: 18px;

    line-height: 32px;

    opacity: .95;

    margin-bottom: 30px;

}

/*==========================
Button
==========================*/

.offer-btn {

    display: inline-block;

    background: #FFD54F;

    color: #1f2937;

    padding: 16px 40px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    transition: .35s;

    box-shadow: 0 12px 30px rgba(255, 213, 79, .35);

}

.offer-btn:hover {

    background: #fff;

    color: #0B4DBB;

    transform: translateY(-4px);

}

/*==========================
Right Badge
==========================*/

.offer-right {

    flex: 0 0 220px;

    display: flex;

    justify-content: center;

    position: relative;

    z-index: 2;

}

.badge-circle {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    border: 8px solid #FFD54F;

    background: rgba(255, 255, 255, .08);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: #FFD54F;

}

.badge-number {

    font-size: 44px;

    font-weight: 800;

    line-height: 1;

}

.badge-text {

    margin-top: 8px;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: .6px;

}

/*==================================================
        FOUNDING MEMBER OFFER - PART 3
==================================================*/

/*==============================
Large Desktop
==============================*/

@media(min-width:1400px) {

    .founder-offer-section .container {

        max-width: 1380px;

    }

}

/*==============================
Laptop
==============================*/

@media(max-width:1200px) {

    .founder-offer-card {

        padding: 40px;

        gap: 25px;

    }

    .offer-center h2 {

        font-size: 38px;

    }

    .offer-center p {

        font-size: 17px;

    }

    .offer-gift {

        width: 180px;

    }

    .badge-circle {

        width: 160px;

        height: 160px;

    }

}

/*==============================
Tablet
==============================*/

@media(max-width:991px) {

    .founder-offer-section {

        padding: 10px 0;

    }

    .founder-offer-card {

        flex-direction: column;

        text-align: center;

        padding: 35px 25px;

    }

    .offer-left {

        flex: auto;

    }

    .offer-center {

        order: 2;

    }

    .offer-right {

        order: 3;

        margin-top: 20px;

    }

    .offer-center h2 {

        font-size: 32px;

    }

    .offer-center p {

        font-size: 16px;

        line-height: 28px;

        margin: auto auto 25px;

    }

    .offer-gift {

        width: 150px;

    }

    .badge-circle {

        width: 145px;

        height: 145px;

    }

    .badge-number {

        font-size: 36px;

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:575px) {

    .founder-offer-section {

        padding: 9px 0;

    }

    .founder-offer-card {

        padding: 28px 20px;

        border-radius: 20px;

    }

    .offer-tag {

        font-size: 12px;

        padding: 7px 16px;

    }

    .offer-center h2 {

        font-size: 26px;

        line-height: 1.3;

    }

    .offer-center p {

        font-size: 14px;

        line-height: 24px;

    }

    .offer-btn {

        width: 100%;

        padding: 14px 20px;

        font-size: 15px;

    }

    .offer-gift {

        width: 120px;

    }

    .badge-circle {

        width: 120px;

        height: 120px;

        border-width: 6px;

    }

    .badge-number {

        font-size: 28px;

    }

    .badge-text {

        font-size: 11px;

        line-height: 1.4;

    }

}

/*==============================
Hover Animation
==============================*/

.founder-offer-card {

    transition: .4s;

}

.founder-offer-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 35px 70px rgba(0, 0, 0, .22);

}

.offer-btn {

    position: relative;

    overflow: hidden;

}

.offer-btn::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .25);

    transition: .45s;

}

.offer-btn:hover::before {

    left: 100%;

}

.offer-gift {

    animation: giftFloat 4s ease-in-out infinite;

}

@keyframes giftFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

.badge-circle {

    animation: badgeRotate 8s linear infinite;

}

@keyframes badgeRotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}

.badge-circle .badge-number,
.badge-circle .badge-text {

    animation: badgeText 8s linear infinite;

}

@keyframes badgeText {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(-360deg);

    }

}

/*==============================
Glass Shine
==============================*/

.founder-offer-card::after {

    content: "";

    position: absolute;

    left: -150%;

    top: 0;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    animation: shine 5s infinite;

}

@keyframes shine {

    0% {

        left: -150%;

    }

    100% {

        left: 180%;

    }

}

/*==============================
Reduce Offer Card Height
==============================*/

.founder-offer-section {
    padding: 10px 0;
}

.founder-offer-card {
    padding: 22px 40px;
}

.offer-gift {
    width: 130px;
}

.offer-center h2 {
    font-size: 32px;
}

.badge-circle {
    width: 120px;
    height: 120px;
}

.offer-gift {

    width: 250px;

}

.offer-center h2 {

    font-size: 36px;

    margin-bottom: 10px;

}

.offer-center p {

    font-size: 16px;

    line-height: 28px;

    margin-bottom: 18px;

}

.offer-tag {

    margin-bottom: 12px;

    padding: 7px 18px;

}

.offer-btn {

    padding: 13px 34px;

}

.offer-right {

    flex: 0 0 170px;

}

.badge-circle {

    width: 140px;

    height: 140px;

    border-width: 6px;

}

.badge-number {

    font-size: 34px;

}

.badge-text {

    font-size: 13px;

    line-height: 1.4;

}

.review-name {
    margin: 12px 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0B4DBB;
    text-align: center;

    height: 28px;
    line-height: 28px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.review-toggle {
    display: inline-block;
    margin-top: 10px;
    color: #0B4DBB;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.review-toggle:hover {
    color: #FFD700;
}

/*your custom css goes here
