:root {
    --primary: #2C89F9;
    --primary-dark: #1a75e6;
    --secondary: #0A2540;
    --gt-light: #F8FAFC;
    --gt-gray: #64748B;
    --gt-dark: #1E293B;
    --gt-transition: all 0.3s ease;
    --gt-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --gt-radius: 12px;
    --gt-shadow-00000015: 2px 4px 12px #00000015;
    --bg-linear-gradient: #F5F9FF;
    /* --bg-linear-gradient: linear-gradient(135deg, rgba(44, 137, 249, 0.1) 0%, rgba(26, 117, 230, 0.15) 100%); */
}

@font-face {
    font-family: 'DM Sans';
    src: url('../font/DMSans-Regular.ttf') format('ttf');
    font-style: normal;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gt-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

.text-theme {
    color: var(--primary) !important
}

a {
    text-decoration: none;
}
.cursor-pointer{
    cursor: pointer;
}

/* Start Title */
.title-s1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: inherit;
}

.title-mainhead {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.title-mainhead span {
    color: var(--primary);
}

.title-subheading {
    font-size: 16px;
    color: var(--gt-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

/* font size  inline */
.fs-11 {
    font-size: 11px;
}

.fs-10 {
    font-size: 10px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px
}

.fs-20 {
    font-size: 20px
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px
}

.fs-28 {
    font-size: 28px
}

.fs-30 {
    font-size: 30px
}

.fs-36 {
    font-size: 36px
}

.fs-48 {
    font-size: 48px
}

/* padding  */

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

/* Navbar */
.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
}

#mainNav {
    /* transition: all 0.4s ease-in-out; */
    z-index: 9;
}

#mainNav.navbar-scrolled {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
    animation: slideDown 0.5s ease forwards;
    z-index: 1000; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(34 77 119 / 47%);
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
    animation: slideDown 0.5s ease forwards;
    z-index: 1000;
}

#mainNav.navbar-scrolled .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
}

#mainNav.navbar-scrolled .topbar-head-dropdown button {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
#mainNav.navbar-scrolled button .fa{
    color: var(--primary) !important;
    animation: slideDown 0.5s ease forwards;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Slide + fade animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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


/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 37, 64, 0.9) 0%, rgba(44, 137, 249, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 2.8rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 16px;
    color: var(--gt-light);
    max-width: 500px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 500;
    font-size: 15px;
    padding: .75rem 1.5rem;
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow);
    transition: var(--gt-transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.promo-micro {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.hero-section-details {
    padding: 100px 0;
}

.navbar-toggler {
    order: 3;
    border: unset;
    padding: 0;
}

.dropdown-wrapper {
    order: 2;
}


.promo-s1 {
    background-color: rgba(44, 137, 249, 0.1);
    padding: 12px 20px;
    border-radius: var(--gt-radius);
    display: inline-block;
    font-weight: 500;
    color: var(--gt-light);
    font-size: 14px;
    border: 1px dashed var(--primary);
}

.promo-s1 code {
    color: var(--primary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-s1 {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #FAFBFE 0%, #F0F5FF 100%);
    position: relative;
    overflow: hidden;
}

.hero-s1::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 137, 249, 0.1) 0%, rgba(44, 137, 249, 0.05) 100%);
}

.hero-s1::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 137, 249, 0.08) 0%, rgba(44, 137, 249, 0.03) 100%);
}

.hero-s1 .eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 14px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(44, 137, 249, 0.1);
    border-radius: 20px;
}


/* Start Footer */
footer {
    background-color: var(--gt-light);
    color: var(--gt-gray);
    padding: 60px 0 40px;
}

.footer-links a {
    color: var(--gt-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--gt-transition);
    margin: 0 12px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* End Footer */
.press-section {
    background: var(--bg-linear-gradient);
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 30px;
}

.marquee:hover {
    animation-play-state: paused;
}

.press-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    transition: var(--transition);
}

.press-logo:hover {
    transform: scale(1.1);
}

.press-logo img {
    height: 100%;
    width: auto;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* Referral section  */
.referrer-s1card {
    background: white;
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow-00000015);
    border: 1px solid rgba(44, 137, 249, 0.1);
    transition: var(--gt-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* follow section  */

.section-dark {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 137, 249, 0.15) 0%, rgba(10, 37, 64, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 900;
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list span {
    color: var(--primary);
    font-weight: 600;
}

.blueprint-img {
    background: #ffffff;
    border-radius: var(--gt-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
    box-shadow: var(--gt-shadow);
    border: 1px solid rgba(44, 137, 249, 0.1);
    position: relative;
    overflow: hidden;
}

.blueprint-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/landing/blueprint.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* benifit section  */

.benefits-section {
    background: var(--bg-linear-gradient);
    position: relative;
    overflow: hidden;
}

.benefits-section::before,
.benefits-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 137, 249, 0.08);
    z-index: 0;
}

.benefits-section::before {
    width: 180px;
    height: 180px;
    top: -50px;
    left: -60px;
}

.benefits-section::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
}

/* feture  */

/* Card box */
.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 137, 249, 0.15);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}

.feature-box:hover .icon-circle {
    background: #0d6efd;
    color: #fff;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-box p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0px;
}

/* no strass srction  */

.guarantee-section {
    background: white;
    border-radius: var(--gt-radius);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 137, 249, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4rem 2rem !important;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* contact us  */

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A2540 0%, #1a3a5f 100%);
    position: relative;
}
.final-cta .promo-micro {
	padding: .7rem 1.8rem;
	font-size: 16px;
	font-weight: 600;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 137, 249, 0.15) 0%, rgba(44, 137, 249, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 137, 249, 0.1) 0%, rgba(44, 137, 249, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}


.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--gt-radius);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(44, 137, 249, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--gt-transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(44, 137, 249, 0.25);
}

.form-control::placeholder {
    color: var(--gt-gray);
    opacity: 0.7;
}

.input-group-text {
    background: var(--bg-linear-gradient);
    border: 2px solid rgba(44, 137, 249, 0.2);
    border-right: none;
    color: var(--primary);
    font-weight: 600;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {


    .section-subtitle {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .final-cta {
        padding: 3rem 0;
    }


}

/* ==========================
   Footer Section
========================== */
.footer-sec {
    padding: 60px 0 0px;
    position: relative;
    overflow: hidden;
    background: var(--bg-linear-gradient);
}

.footer-sec img[alt="footer-img"] {
    width: 245px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-sub-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-form {
    position: relative;
    max-width: 400px;
}

.footer-form .form-control {
    border: none;
    outline: none;
    padding: 12px 100px 12px 16px;
    border-radius: 8px;
}

.footer-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 25px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form .submit-btn:hover {
    background: #1766c4;
}

.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon li {
    display: inline-block;
    margin: 0 6px;
}

.social-icon li a {
    width: 43px;
    height: 43px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon li a:hover {
    transform: translateY(-5px);
}

.footer-border-color {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-title {
        font-size: 24px;
    }

    .footer-sub-title {
        font-size: 16px;
    }

    .footer-form {
        max-width: 100%;
    }

    .footer-form .form-control {
        padding: 10px 90px 10px 14px;
    }
}

.exsmall-paragraph {
    font-size: 14px;
}

/* End Footer */

/* testimonial  */

/* Start Testimonial Section */
.testimonial-card {
    background-color: white;
    padding: 34px 34px 24px 34px;
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow-00000015);
    transition: var(--gt-transition);
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* This ensures all cards take full height of their container */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 90px;
    color: rgba(44, 137, 249, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gt-dark);
    font-style: italic;
    flex-grow: 1;
    /* This makes the text area grow to fill available space */
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.swiper-slide .content-element {
    flex: 1;
}

/* modal css  */
.max-w-590px {
    max-width: 590px;
}

.waitlist-modal-content .waitlist-modal-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
}

.max-w-590px {
    max-width: 590px
}

.waitlist-modal-content .modal-body {
    display: flex
}

.waitlist-modal-content .modal-body form {
    width: 30%;
    margin: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1
}

.waitlist-modal-content .modal-body .waitlist-label-title {
    font-size: 18px;
    line-height: 24.51px
}

.waitlist-modal-content .modal-body .waitlist-label-pera {
    font-size: 16px;
    color: #676d75 !important
}

.waitlist-modal-content .waitlist-modal-logo {
    width: 180px;
    height: auto;
    max-width: 100%
}

@media (max-width: 575px) {
    .waitlist-modal-content .modal-body .waitlist-label-title {
        font-size: 17px
    }

    .waitlist-modal-content .modal-body .waitlist-label-pera {
        font-size: 15px
    }
}

.btn-light-primary {
    color: var(--theme);
    background-color: #2c89F926;
    border-color: #2c89F926;
    padding: .75rem 1.5rem;
}

.btn-light-primary:hover {
    color: var(--theme);
    background-color: #2c89f940;
    border-color: #2c89f940
}

.btn-light-primary.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.btn-close:focus {
    box-shadow: none;
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 13px;
    }

    .promo-s1 {
        font-size: 12px;
        padding: 8px 12px;
    }

    .promo-micro {
        font-size: 10px;
    }

    .hero-section-details {
        padding: 75px 0;
    }
}



/* Mobile fixes */
@media (max-width: 991px) {
    .navbar .btn-primary {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown {
        margin-right: 8px;
    }

    .navbar-toggler {
        order: unset;
    }

    .dropdown-wrapper {
        order: unset;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1.5rem;
        z-index: 1050;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--gt-dark) !important;
        text-align: center;
    }

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

    .title-subheading {
        font-size: 14px;
    }

    .ptb-80 {
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .pb-80 {
        padding-bottom: 60px;
    }

    .pt-80 {
        padding-top: 60px;
    }
}

.dropdown-menu {
    margin-top: 10px !important;
}

/* moblie input  */
.iti {
    width: 100%;
}

.iti__search-input {
    height: 40px;
}

.cs-error {
    font-size: 14px;
    color: #dc3545;
}

/* pricing  */

.pricing-table {
    background: white;
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow);
    overflow: hidden;
    transition: var(--gt-transition);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 137, 249, 0.15)
}

.pricing-table:hover {
    box-shadow: var(--gt-shadow-00000015);
}

.table-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.table-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
        /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 137, 249, 0.15) */
}

thead {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
}

th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

th:first-child {
    border-radius: var(--gt-radius) 0 0 0;
}

th:last-child {
    border-radius: 0 var(--gt-radius) 0 0;
}

td {
    padding: 10px 20px;
    border-bottom: 1px solid #eaeaea;
    transition: var(--gt-transition);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: var(--bg-linear-gradient);
}

.balance-range {
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.balance-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.2rem;
    display: none;
}

.monthly-fee {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.monthly-fee .period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gt-gray);
}

.annual-fee {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gt-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.annual-fee .period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gt-gray);
}

.popular-badge {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
}

.savings-note {
    font-size: 0.85rem;
    color: var(--gt-gray);
    font-weight: 400;
}

.footer-note {
    text-align: center;
    padding: 20px;
    background: var(--gt-light);
    border-top: 1px solid #eaeaea;
    color: var(--gt-gray);
    font-size: 0.9rem;
}

.footer-note i {
    color: var(--primary);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .pricing-table {
        overflow-x: auto;
    }

    .balance-range {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .balance-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}


/* What We Stand For Section */
.stand-for-section {
    background: var(--bg-linear-gradient);
    position: relative;
    overflow: hidden;
}
.stand-for-section::before,
.stand-for-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 137, 249, 0.08);
    z-index: 0;
}
.stand-for-section::before {
    width: 180px;
    height: 180px;
    top: -50px;
    left: -60px;
}
.stand-for-section::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
}

.stand-s1card{
    background: white;
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow-00000015);
    border: 1px solid rgba(44, 137, 249, 0.1);
    transition: var(--gt-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.stand-s1card .card-header{
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.stand-for-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(44, 137, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.stand-for-text h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}
.stand-for-text p {
    color: var(--gt-gray);
    line-height: 1.5;
}