/* Reset Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

body {
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p, li, span, a {
    font-family: 'Open Sans', sans-serif;
}

/* --- TOPBAR STYLES --- */
.topbar {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    color: #ffffff;
    padding: 12px 0;
    font-size: 13px;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.topbar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}


.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-icon {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


.social-icon {
    width: 30px;
    height: 25px;
    cursor: pointer;
    object-fit: contain;
    transition: all 0.3s ease;
}


.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0px 4px 8px rgba(7, 7, 7, 0.4));
}


.topbar-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}


.topbar-link:hover {
    color: #2E157B;
    /* opacity: 0.8; */
}


.topbar-item {
    display: block;
}

/* --- MAIN NAVBAR STYLES --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 45px;
    display: block;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
    display: block;
    padding: 8px 0;
}

.nav-link:hover {
    color: #2E157B;
}

/* --- DROPDOWN STYLES --- */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Double Arrow Fix: Bootstrap ke built-in arrow ko smooth custom look di hai */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    /* Bootstrap handle karega */
}

/* Jab dropdown open ho toh menu display show ho */
.dropdown-menu.show {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
    color: #2E157B;
}

/* Desktop Hover Par Arrow rotate karne ke liye */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* --- BUTTON UIVERSE.IO EFFECT --- */
.btn-12,
.btn-12 *,
.btn-12 :after,
.btn-12 :before,
.btn-12:after,
.btn-12:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-12 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 99rem;
    overflow: hidden;
    padding: 0.8rem 2.5rem;
    position: relative;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-12:hover {
    box-shadow: 0 10px 25px rgba(46, 21, 123, 0.55);
    transform: translateY(-1px);
}

.btn-12:disabled {
    cursor: default;
}

.btn-12:-moz-focusring {
    outline: auto;
}

.btn-12 svg {
    display: block;
    vertical-align: middle;
}

.btn-12 [hidden] {
    display: none;
}

.btn-12 {
    border-radius: 99rem;
    overflow: hidden;
    padding: 0.8rem 2.5rem;
    position: relative;
}


.btn-12 span {
    position: relative;
    z-index: 2;
    color: #ffffff;
    transition: color 0.3s ease;
}

.btn-12:hover {
    box-shadow: 0 10px 25px rgba(46, 21, 123, 0.55);
    transform: translateY(-2px);
}

.btn-12:hover span {
    color: #2E157B;
}

.btn-12:after,
.btn-12:before {
    background: linear-gradient(90deg,
            #fff 25%,
            transparent 0,
            transparent 50%,
            #fff 0,
            #fff 75%,
            transparent 0);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateY(var(--progress, 100%));
    transition: transform 0.2s ease;
    z-index: 1;
}

.btn-12:after {
    --progress: -100%;
    background: linear-gradient(90deg,
            transparent 0,
            transparent 25%,
            #fff 0,
            #fff 50%,
            transparent 0,
            transparent 75%,
            #fff 0);
    z-index: 1;
}

.btn-12:hover:after,
.btn-12:hover:before {
    --progress: 0;
}

.mobile-btn-container {
    display: none;
}

/* --- MOBILE RESPONSIVE MEDIA QUERY --- */
@media (max-width: 992px) {
    .topbar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .topbar-left {
        justify-content: center;
    }

    .desktop-btn-container {
        display: none;
    }

    .mobile-btn-container {
        display: block;
        padding: 20px 0;
    }

    /* Hamburger Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation to 'X' */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Nav Panel */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-link {
        width: 100%;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f9f9f9;
        padding-left: 15px;
    }

    .dropdown.dropdown-active .dropdown-menu {
        display: block;
    }

    .dropdown.dropdown-active .arrow {
        transform: rotate(180deg);
    }
}

@media (min-width: 993px) {
    .menu-toggle {
        display: none;
    }
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 20rem;
    display: flex;
    align-items: center;
    /* Aapki blueprint background image poore section ke liye */
    background-image: url('../img/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Dark Rich Overlay taake blueprints ke upar text ka color sharp chamke */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left side dark fade aur right side transparent blueprint view */
    background: linear-gradient(90deg, rgba(10, 6, 28, 0.95) 0%, rgba(10, 6, 28, 0.8) 50%, rgba(10, 6, 28, 0.4) 100%);
    z-index: -1;
}

/* Typography Styles - No layout or custom alignment hacks used here */
.hero-title {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* --- PREMIUM VERTICAL TEXT SLIDER ANIMATION --- */
.text-slider {
    height: 75px;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    animation: verticalSlide 8s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.slider-item {
    height: 75px;
    line-height: 75px;
    white-space: nowrap;
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes verticalSlide {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-75px);
    }

    50%,
    70% {
        transform: translateY(-150px);
    }

    75%,
    100% {
        transform: translateY(-225px);
    }
}

/* --- PREMIUM AGENCY BUTTONS --- */
.btn-agency-primary,
.btn-agency-secondary,
.btn-agency-primary *,
.btn-agency-secondary *,
.btn-agency-primary:after,
.btn-agency-secondary:after,
.btn-agency-primary:before,
.btn-agency-secondary:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-agency-primary,
.btn-agency-secondary {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 99rem;
    overflow: hidden;
    padding: 0.7rem 2.4rem;
    position: relative;
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Button 1: Purple Gradient style */
.btn-agency-primary {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
}

/* Button 2: Yellow Custom background (#F2B705) */
.btn-agency-secondary {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
}

.btn-agency-primary span,
.btn-agency-secondary span {
    position: relative;
    z-index: 2;
    color: #ffffff;
    transition: color 0.3s ease;
}

.btn-agency-primary:hover,
.btn-agency-secondary:hover {
    box-shadow: 0 10px 25px rgba(46, 21, 123, 0.4);
    transform: translateY(-2px);
}

.btn-agency-primary:hover span,
.btn-agency-secondary:hover span {
    color: #2E157B;
}

/* Sliding White Strip Background Mechanics */
.btn-agency-primary:after,
.btn-agency-primary:before,
.btn-agency-secondary:after,
.btn-agency-secondary:before {
    background: linear-gradient(90deg,
            #fff 25%,
            transparent 0,
            transparent 50%,
            #fff 0,
            #fff 75%,
            transparent 0);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateY(var(--progress, 100%));
    transition: transform 0.2s ease;
    z-index: 1;
}

.btn-agency-primary:after,
.btn-agency-secondary:after {
    --progress: -100%;
    background: linear-gradient(90deg,
            transparent 0,
            transparent 25%,
            #fff 0,
            #fff 50%,
            transparent 0,
            transparent 75%,
            #fff 0);
    z-index: 1;
}

.btn-agency-primary:hover:after,
.btn-agency-primary:hover:before,
.btn-agency-secondary:hover:after,
.btn-agency-secondary:hover:before {
    --progress: 0;
}

/* --- MOBILE RESPONSIVE BREAKPOINTS --- */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .text-slider {
        height: 55px;
    }

    .slider-item {
        height: 55px;
        line-height: 55px;
    }

    @keyframes verticalSlide {

        0%,
        20% {
            transform: translateY(0);
        }

        25%,
        45% {
            transform: translateY(-55px);
        }

        50%,
        70% {
            transform: translateY(-110px);
        }

        75%,
        100% {
            transform: translateY(-165px);
        }
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-btn-group {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-agency-primary,
    .btn-agency-secondary {
        padding: 0.7rem 2rem;
        font-size: 13px;
        margin-right: 10px;
    }
}


.ak-services-section {
    background-color: #fff;
    padding: 30px 0;
}

.ak-service-card {
    position: relative;
    margin-bottom: 30px;
}

.ak-service-img-wrapper {
    position: relative;
    margin-bottom: 45px;
    cursor: pointer;
    /* overflow: hidden; */
}

.ak-service-main-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
    /* Smooth transition */
    display: block;
}

/* --- Icon Styling Updated --- */
.ak-service-icon {
    position: absolute;
    bottom: -35px;
    left: 18%;
    transform: translateX(-50%);
    width: 55px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: transparent;
    border: none;
}

.ak-service-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: all 0.4s ease-in-out;
    /* Smooth transition */
}

.ak-service-img-wrapper:hover .ak-service-icon img {
    transform: translateY(-15px);
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.4));
}

.ak-service-img-wrapper:hover .ak-service-icon img {
    transform: translateY(-15px);
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.4));
}

.ak-service-img-wrapper:hover .ak-service-main-img {
    transform: translateY(-15px);
    filter: brightness(0.8);
}

/* --- Title Styling --- */
.ak-service-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: left;
}

@media (min-width: 992px) {
    .ak-services-section .col-lg-2 {
        flex: 0 0 auto;
        width: 19.666667%;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .ak-service-main-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .ak-service-icon {
        width: 100px;
        height: 60px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Global settings inside section context */
.about-section {
    background-color: #ffffff;
    padding: 40px 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
}

/* Left Side Image Styling */
.about-img-container {
    width: 100%;
    /* Same squarish curved shape as screenshot */
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mini Tag/Badge Styling */
.about-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Typography Title */
.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -0.5px;
}

.about-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: #111111;
    max-width: 90%;
    margin-bottom: 20px;
}

/* Green Highlight Effect matching exactly your reference image */
.highlight-text {
    background: linear-gradient(90deg, rgb(46, 21, 123) 0%, rgb(0, 62, 155) 100%);
    padding: 0 8px;
    display: inline-block;
    color: #ffffff;
}

/* Avatars Stack Logic */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-right: -12px;
    /* Pull images overlapping each other */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.avatar-text {
    font-size: 14px;
    color: #1a1a1a;
    display: inline-block;
    margin-top: 5px;
}

/* Custom left border line separator for description */
.border-start-custom {
    border-left: 1px solid #e5e7eb;
    padding-left: 25px !important;
}

/* Location Tag */
.location-text {
    font-size: 15px;
    color: #000000;
}

/* Mini Paragraph description */
.about-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #111111;
    margin: 0;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 575.98px) {
    .about-title {
        font-size: 2rem;
    }

    .border-start-custom {
        border-left: none;
        padding-left: 12px !important;
        margin-top: 15px;
    }

    .avatar-group {
        margin-bottom: 5px;
    }
}


/* Section Main styling */
.services-section {
    padding: 30px 0;
    background-color: #fafbfe;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #11142d;
}

/* Link element behavior reset */
.service-card-link {
    text-decoration: none !important;
    display: block;
}

/* --- THE CARD DEFAULT ARCHITECTURE --- */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    min-height: 380px;
}

/* Icons box style */
.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(46, 21, 123, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.service-icon-img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #11142d;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #111111;
    margin: 0;
}


.swiper-slide-active .service-card,
.service-card:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 20px 40px rgba(46, 21, 123, 0.212);
    border-image: linear-gradient(135deg, #2E157B 0%, #003E9B 100%) 1;
    border-style: solid;
    border-width: 2px;
    border-radius: 0px;
    /* Clip tracking system */
}

.swiper-slide-active .service-card-title,
.service-card:hover .service-card-title {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper-slide-active .icon-container,
.service-card:hover .icon-container {
    background: linear-gradient(135deg, #2E157B 0%, #003E9B 100%);
    border-color: transparent;
}

.swiper-slide-active .service-icon-img,
.service-card:hover .service-icon-img {
    filter: brightness(0) invert(1);
    /* Png icons white turn out */
}

/* --- PAGINATION & TRACKER CONTROLS --- */
.slider-controls-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

/* Right Side Progress Line & Numbers Indicator */
.fraction-tracker-container {
    gap: 15px;
}

.current-slide-num,
.total-slides-num {
    font-size: 14px;
    font-weight: 700;
    color: #F2B705;
}

.tracker-line-bg {
    width: 120px;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    border-radius: 2px;
}

.tracker-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8.33%;
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    transition: width 0.3s ease;
}


.why-us-section {
    background-color: #fafbfe;
    padding: 30px 0;
    overflow: hidden;
    color: #111111;
}

.text-danger-custom {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.text-muted-custom {
    color: #111111;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
}

.title-text {
    letter-spacing: -1px;
    font-size: 38px;
}

/* Stat box wrapper layout */
.stat-box {
    white-space: nowrap;
}

/* Number settings */
.counter {
    line-height: 1;
}

.plus-sign {
    font-size: 40px;
    line-height: 1;
    display: inline-block;
    margin-right: -8px
}

.stat-label {
    /* color: #FFFFFF; */
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-block;
    vertical-align: bottom;
    margin-left: -3px;
    padding-bottom: 4px;
    /* Purana setup */

    /* --- New Round Black Background Code --- */
    background-color: #fafbfe;
    /* Dark Black Background */
    padding: 6px 16px;
    /* Top-Bottom aur Left-Right padding capsule shape ke liye */
    border-radius: 50px;
    /* Is se corners bilkul round (pill-shape) ho jayenge */
    border: 1px solid #fafbfe;
    /* Halka sa border taake main background se thoda alag dikhe (Optional) */

    /* Alignment Adjustments */
    margin-top: 15px;
    line-height: 1.2;
}

/* Section Wrapper setup */
.marquee-ribbon-section {
    background-color: #FFFFFF;
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Base Ribbon Settings */
.ribbon-wrapper {
    position: absolute;
    width: 140%;
    /* bigger width for no cut */
    left: -20%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Black Ribbon */
.ribbon-black {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    transform: rotate(4deg);
    z-index: 1;
}

/* Purple Ribbon */
.ribbon-purple {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    transform: rotate(-4deg);
    z-index: 2;
}

/* Marquee Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

/* 🔥 PERFECT CONTINUOUS LOOP */
.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: max-content;
    gap: 40px;

    /* 🔥 slower smooth speed */
    animation: marquee-left 40s linear infinite;
}

/* Reverse Animation */
.animation-reverse {
    animation: marquee-right 40s linear infinite;
}

/* Text Styling */
.marquee-content span {
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Star Styling */
.marquee-content .star {
    font-size: 1.8rem;
    color: #FFFFFF;
    opacity: 0.9;
    display: inline-block;
    transform: translateY(-2px);
}

/* 🔥 CONTINUOUS KEYFRAMES */
@keyframes marquee-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marquee-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .marquee-content span {
        font-size: 1.2rem;
    }

    .ribbon-wrapper {
        padding: 12px 0;
    }

    .marquee-ribbon-section {
        height: 250px;
    }

    .marquee-content {
        gap: 25px;
        animation-duration: 30s;
    }

    .animation-reverse {
        animation-duration: 30s;
    }
}


.features-section {
    padding: 30px 0;
}

.section-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
}

/* Left Side List Group Styling */
.feature-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.feature-list-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #334155;
    text-decoration: none;
}

.feature-list-header {
    display: flex;
    font-family: 'Poppins', sans-serif !important;
    justify-content: space-between;
    align-items: center;
    font-weight: 600 !important;
    font-size: 1.15rem;
}

.feature-list-item p {
    font-size: 0.92rem;
    color: #111111;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 400;
    display: none;
}

.feature-list-item:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
}

/* Thick Chevron Arrow */
.feature-list-item .arrow-icon {
    font-size: 1rem;
    font-weight: 900;
    color: #111111;
    transition: all 0.3s ease;
}

/* Active Tab Styling */
.feature-list-item.active {
    background-color: #ffffff !important;
    color: #2E157B !important;
    border-color: #e2e8f0 !important;
    border-left: 5px solid #2E157B !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-list-item.active p {
    display: block;
}

.feature-list-item.active .arrow-icon {
    color: #2E157B;
    transform: rotate(-45deg);
}


/* RIGHT SIDE: Equal Height & Perfect Alignment Logic */
.showcase-outer-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    /* Height takes parent container's full size */
}

.tab-content,
.tab-pane,
.tab-pane .row {
    height: 100%;
    /* Rows will scale dynamically */
}

/* Image Cards with Responsive Grid Sizing */
.showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: block;
    /* anchor layout standard */
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.image-wrapper {
    height: 220px;
    /* Increased image height to perfectly balance the 6-item left column */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fafc;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    background-color: #F8F9FC;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #4A5568;
}

.section-title {
    font-size: 2.2rem;
    color: #1A202C;
}

/* Card Structure */
.approach-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

/* --- HOVER EFFECT --- */
.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(160, 174, 192, 0.25);
    border-color: #CBD5E0;
}

/* Card Title (अब यह P टैग के लिए है) */
.card-content .card-heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1A202C;
}

/* Card Description */
.card-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Icon Box Styling */
.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.25rem;
}

/* Gradients */
.icon-dark {
    background: linear-gradient(135deg, #2D3748, #1A202C);
}

.icon-blue {
    background: linear-gradient(135deg, #63B3ED, #4299E1);
}

.icon-pink {
    background: linear-gradient(135deg, #F687B3, #ED64A6);
}

.icon-green {
    background: linear-gradient(135deg, #4FD1C5, #38B2AC);
}

.icon-yellow {
    background: linear-gradient(135deg, #F6AD55, #ED8936);
}

.icon-purple {
    background: linear-gradient(135deg, #B794F7, #9F7AEA);
}

/* Text Highlights */
.highlight-orange {
    color: #ED8936;
    font-weight: 500;
}

.highlight-blue {
    color: #4299E1;
    font-weight: 500;
}

.highlight-pink {
    color: #ED64A6;
    font-weight: 500;
}

.highlight-green {
    color: #38B2AC;
    font-weight: 500;
}

.highlight-yellow {
    color: #ECC94B;
    font-weight: 500;
}




.zb-tech-section {
    background-color: #F8F9FC;

}


.zb-section-title {
    font-size: 2.2rem;
    color: #111111;
}

/* --- Custom Tab Menu --- */
.zb-tabs-container {
    gap: 30px;
}

.zb-tab-btns {
    font-size: 1rem;
    color: #111111;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover & Active States */

.zb-tab-btns.zb-active {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zb-tab-btns:hover {
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zb-tab-btns.zb-active {
    font-weight: 600;
}

/* Active Underline Indicator */
.zb-tab-btns.zb-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    border-radius: 2px;
}

/* --- Custom 4-3 Grid Logic --- */
@media (min-width: 992px) {
    .zb-tech-item {
        flex: 0 0 auto;
        width: 22%;
        /* 4 लोगोज़ एक लाइन में बराबर स्पेसिंग के साथ सेट करने के लिए */
    }
}

/* Custom Logo Box & Hover Effect */
.zb-logo-box {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

/* कार्ड्स पर स्मूथ ज़ूम होवर इफेक्ट */
.zb-logo-box:hover {
    transform: scale(1.15);
}

.zb-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Custom Smooth Fade Animation --- */
.zb-fade-effect {
    animation: zbFadeIn 0.4s ease-in-out forwards;
}

@keyframes zbFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.st-subheading {
    font-size: 1.6rem;
    color: #2D3748;
    font-weight: 300;
}

.st-main-heading {
    font-size: 2.3rem;
    color: #1A202C;
}

/* =========================================================
   UPPER LAYER DESIGN (TEXT SECTION DISPLAY)
   ========================================================= */
.st-active-text-display {
    max-width: 750px;
    margin: 0 auto;
    min-height: 180px;
}

.st-display-review {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #000000;
    font-style: italic;
    padding: 0 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.st-display-stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.st-display-name {
    font-size: 1.15rem;
    color: #1A202C;
    margin-top: 5px;
}

.st-display-role {
    font-size: 0.85rem;
    color: #A0AEC0;
}

/* Decorative Backdrop Quotes */
.st-quote-icon {
    position: absolute;
    font-size: 1.8rem;
    color: #2E157B;
    opacity: 0.25;
}

.st-quote-left {
    top: -15px;
    left: -10px;
}

.st-quote-right {
    bottom: 5px;
    right: -10px;
}

/* =========================================================
   LOWER LAYER DESIGN (IMAGES TIMELINE TRACK)
   ========================================================= */
.st-slider-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    user-select: none;
}

.st-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    will-change: transform;
    align-items: center;
}

.st-slider-track:active {
    cursor: grabbing;
}

/* 1 Row Elements Width calculations */
.st-slide {
    flex: 0 0 20%;
    max-width: 20%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .st-slide {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .st-slider-wrapper {
        max-width: 400px;
    }
}

/* Base Avatar Graphics */
.st-avatar-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    opacity: 0.4;
    transform: scale(0.85);
    cursor: pointer;
}

.st-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   ACTIVE CENTER AVATAR STATE HIGHLIGHT
   ========================================================= */
.st-slide.st-center-active .st-avatar-box {
    opacity: 1;
    transform: scale(1.15);
    border-color: #FAFAFA;
    outline: 2px solid #FFC107;
    box-shadow: 0 8px 20px rgba(165, 51, 132, 0.2);
}

/* --- Control Buttons (Aligned perfectly with the lower row) --- */
.st-nav-btn {
    position: absolute;
    bottom: 28px;
    width: 40px;
    height: 40px;
    border: 2px solid #2E157B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E157B;
    background-color: #FFFFFF;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.st-btn-prev {
    left: 20%;
}

.st-btn-next {
    right: 20%;
}

.st-nav-btn:hover {
    background-color: #F2B705;
    border: 2px solid #F2B705;
    color: #FFFFFF;
    transform: scale(1.08);
}

@media (max-width: 576px) {
    .st-btn-prev {
        left: 5%;
    }

    .st-btn-next {
        right: 5%;
    }

    .st-main-heading {
        font-size: 1.8rem;
    }

    .st-subheading {
        font-size: 1.3rem;
    }

    .st-active-text-display {
        min-height: 240px;
    }
}


.faq-section {
    padding: 80px 0;
    position: relative;
}

/* Subtle background line pattern like the reference screenshot */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 14.28% 100%;
    pointer-events: none;
    z-index: 1;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-title {
    color: #000000;
    /* Direct Primary Color */
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* FAQ Main Layout Wrapper */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Question Bubble Wrapper */
.q-box-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q-label {
    font-weight: 700;
    color: #2E157B;
    /* Direct Primary Color */
    font-size: 1.1rem;
    min-width: 30px;
}

.q-bubble {
    background-color: #ffffff;
    color: #2E157B;
    /* Direct Primary Color */
    font-weight: 600;
    font-size: 1.15rem;
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
    max-width: 85%;
}

.q-bubble:hover {
    transform: translateY(-2px);
    color: #F2B705;
    box-shadow: 0 6px 24px rgba(11, 53, 91, 0.06);
}

/* Answer Bubble Wrapper (Chat Flow Right Align) */
.ans-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding-right: 10%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When JS triggers open class */
.ans-box-wrapper.open {
    max-height: 200px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 12px;
}

.ans-bubble {
    background-color: #ffffff;
    color: #111111;
    font-size: 1rem;
    line-height: 1.6;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    max-width: 75%;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.ans-label {
    font-weight: 700;
    color: #2E157B;
    /* Direct Primary Color */
    font-size: 1.1rem;
}

/* Right Side Image Panel */
.faq-img-wrapper {
    height: 100%;
    min-height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.faq-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .faq-img-wrapper {
        min-height: 350px;
        margin-top: 40px;
    }

    .ans-box-wrapper {
        padding-right: 0;
    }
}

/* Section Constraints & Baseline Setup */
    .st-contact-section {
        background-color: #F8FAFC; 
        min-height: 100vh;
        /* padding: 90px 0; */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    /* Content Alignment Setup */
    .st-content-wrapper {
        max-width: 1140px;
        margin: 0 auto;
    }

    /* Typography Elements */
    .st-form-badge {
        font-size: 0.95rem;
        font-weight: 700;
        color: #2E157B;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .st-form-heading {
        font-size: 2.8rem;
        font-weight: 700;
        color: #111111;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); /* टेक्स्ट को भी हल्की डेप्थ दी */
    }

    .st-form-subtext {
        font-size: 0.95rem;
        color: #64748B;
        line-height: 1.6;
        max-width: 500px;
    }

    /* Left Side Info Blocks with 3D Look & Shadow */
    .st-info-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .st-info-card {
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: #FFFFFF;
        padding: 20px;
        border-radius: 16px;
        /* 3D Soft Multi-layered Shadow */
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(241, 245, 249, 0.8);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* कार्ड पर होवर करने पर 3D लिफ्ट इफेक्ट */
    .st-info-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 30px -10px rgba(46, 21, 123, 0.12);
        border-color: rgba(46, 21, 123, 0.1);
    }

    .st-info-icon-box {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #2E157B 0%, #003E9B 100%);
        color: #FFFFFF;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
        /* आइकॉन बॉक्स की 3D शैडो */
        box-shadow: 0 8px 16px rgba(46, 21, 123, 0.25);
    }

    .st-info-details h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1E293B;
        margin: 0 0 4px 0;
    }

    .st-info-details p {
        font-size: 0.9rem;
        color: #64748B;
        margin: 0;
        font-weight: 500;
    }

    .st-info-link {
        text-decoration: none;
        color: inherit;
        transition: color 0.2s ease;
    }

    .st-info-link:hover {
        color: #E6A100;
    }

    /* Right Side Form Box Layout (3D Multi-Layer Master Container) */
    .st-form-outer-holder {
        position: relative;
        padding: 40px;
    }

    /* Decorative Background Shapes from image_41295e.png */
    .st-deco-shape-top {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 85px;
        height: 85px;
        background: linear-gradient(135deg, #F2B705 0%, #E6A100 100%);
        border-radius: 0 85px 0 0;
        z-index: 1;
        box-shadow: 5px -5px 15px rgba(242, 183, 5, 0.3);
    }

    .st-deco-dots-bottom {
        position: absolute;
        bottom: 15px;
        left: 15px;
        width: 70px;
        height: 90px;
        background-image: radial-gradient(#2E157B 25%, transparent 25%);
        background-size: 12px 12px;
        opacity: 0.25;
        z-index: 1;
    }

    /* मुख्य पर्पल फॉर्म ब्लॉक - भारी 3D शैडो और ग्लो के साथ */
    .st-contact-form-block {
        background: linear-gradient(135deg, #2E157B 0%, #003E9B 100%);
        padding: 45px 40px;
        border-radius: 24px;
        /* एडवांस 3D शैडो जो बॉक्स को स्क्रीन से बाहर पॉप-आउट करती है */
        box-shadow: 0 30px 60px -15px rgba(17, 24, 39, 0.35), 0 0 50px 0 rgba(46, 21, 123, 0.2);
        position: relative;
        z-index: 2;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .st-contact-form-block:hover {
        transform: translateY(-3px);
    }

    
    .st-custom-input {
        /* border: 1px solid rgba(255, 255, 255, 0.1); */
        border-radius: 12px;
        padding: 15px 20px;
        font-size: 0.95rem;
        color: #1E293B;
        background-color: #FFFFFF;
        box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .st-custom-input::placeholder {
        color: #94A3B8;
    }

    .st-custom-input:focus {
        border: 1px solid #F2B705;
        /* border-color: #F2B705; */
        /* box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.01), 0 0 0 4px rgba(242, 183, 5, 0.35); */
        background-color: #FFFFFF;
        outline: none;
        transform: scale(1.01);
    }

    .st-custom-textarea {
        resize: none;
    }

    .hidden-label {
        display: none;
    }

    /* Send Button Style with Powerful Clickable 3D Feel */
    .st-submit-btn {
        background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
        color: #FFFFFF;
        padding: 16px;
        border-radius: 12px;
        font-size: 1rem;
        letter-spacing: 1.5px;
        font-weight: 700;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 10px 20px -5px rgba(230, 161, 0, 0.4);
    }

    .st-submit-btn:hover {
        background: linear-gradient(90deg, #FFC72C 0%, #F2B705 100%);
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -5px rgba(230, 161, 0, 0.6);
    }

    .st-submit-btn:active {
        transform: translateY(1px);
        box-shadow: 0 4px 10px -2px rgba(230, 161, 0, 0.5);
    }

    /* Responsive Configurations */
    @media (max-width: 991px) {
        .st-contact-section {
            padding: 60px 0;
        }
        .st-form-heading {
            font-size: 2.2rem;
        }
        .st-form-outer-holder {
            padding: 30px 0 0 0;
            margin-top: 30px;
        }
        .st-deco-shape-top, .st-deco-dots-bottom {
            display: none;
        }
    }

/* Background Gradient and Base Settings */
.custom-footer {
    background: linear-gradient(90deg, rgb(10 10 10) 0%, rgb(0, 62, 155) 100%);
    font-family: sans-serif;
    font-size: 0.9rem;
}

/* Header Text Adjustments */
.header-title {
    font-size: 1.15rem;
    position: relative;
}

/* Contact Information Styles */
.contact-info a {
    color: rgb(255 255 255 / 93%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.contact-info i {
    width: 20px;
    color: rgb(255 255 255 / 93%);

}

/* Links List Custom Bullet Arrow and Styling */
.links-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

/* Generating the dynamic matching arrow angle shape '>' */
.links-list li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-57%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: color 0.3s ease, left 0.3s ease;
}

.links-list li a {
    color: rgb(255 255 255 / 93%);

    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects for regular menu elements */
.links-list li:hover::before {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 500;
    left: 3px;
}

.links-list li a:hover {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    transform: translateX(3px);
}

/* Helper Utilities */
.fs-7 {
    font-size: 0.825rem;
}

.privacy-hover {
    color: rgb(255 255 255 / 93%);

}

.margin-0 {
    margin: 0;
}

.privacy-hover:hover {
    color: #ffffff !important;
}

:root {
    --grad: linear-gradient(90deg, #2E157B 0%, #003E9B 100%);
    --grad-dark: linear-gradient(90deg, #200f5a 0%, #002d72 100%);
    --white: #ffffff;
    --text-dark: #0d0d2b;
    --text-mid: #555;
    --bg: #f0f2f8;
    --card-shadow: 0 6px 30px rgba(46, 21, 123, 0.12);
    --card-shadow-hover: 0 14px 45px rgba(46, 21, 123, 0.22);
    --radius-card: 22px;
    --radius-btn: 50px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =============================================
   SECTION CONTAINER
   ============================================= */
.zb-pricing-section {
    position: relative;
    padding: 40px 0;
}

/* .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
} */

/* =============================================
   HEADER
   ============================================= */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 48px;
}

.zb-price-badge {
    display: inline-block;
    background: var(--grad);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: var(--radius-btn);
    margin-bottom: 14px;
}

.zb-price-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

/* =============================================
   TAB NAV BUTTONS
   ============================================= */
.zb-price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}

.zb-tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    border: 2px solid #d0d5e8;
    background: var(--white);
    color: #2E157B;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 2px 8px rgba(46, 21, 123, 0.06);
    outline: none;
}


.zb-tab-btn.active {
    background: var(--grad);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(46, 21, 123, 0.28);
    transform: translateY(-1px);
}

.zb-tab-btn:hover {
    background: linear-gradient(90deg, #F2B705 0%, #E6A100 100%);
    border: 1px solid #E6A100;
    color: #ffffff;
}

/* =============================================
   TAB PANELS
   ============================================= */
.zb-tab-panel {
    display: none;
}

.zb-tab-panel.active {
    display: block;
}

/* =============================================
   CARDS GRID  –  3 cards centred
   ============================================= */
.zb-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
    align-items: flex-start;
}

.zb-col {
    flex: 0 0 calc(33.333% - 18px);
    min-width: 270px;
    max-width: 340px;
}

/* =============================================
   CARD  –  image-style layout
   ============================================= */
.zb-price-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zb-price-card:hover {
    transform: translateY(-7px);
    border: 2px solid #2E157B;
    box-shadow: var(--card-shadow-hover);
}

/* ── Featured card gets gradient ring ── */
/* .zb-price-featured {
  box-shadow: 0 0 0 3px #2E157B, var(--card-shadow-hover);
} */

/* ── Best Choice badge ── */
.zb-best-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FFD700;
    color: #0d0d2b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 13px;
    border-radius: var(--radius-btn);
    z-index: 5;
}

/* ─────────────────────────────────────────────
   CARD TOP  (gradient header – like the image)
   ───────────────────────────────────────────── */
.zb-price-top {
    background: var(--grad);
    text-align: center;
    padding: 28px 26px 26px;
    color: var(--white);
}

.zb-plan-name {
    font-size: 21px;
    text-align: center;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.zb-plan-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.zb-price-row {
    /* display: flex; */
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.zb-price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.zb-price-per {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.zb-discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.zb-off-badge {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.zb-orig-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
}

/* ─────────────────────────────────────────────
   CTA BUTTONS WITH BTN-12 HOVER EFFECT
   ───────────────────────────────────────────── */

.zb-price-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 99rem;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

/* Button Text */
.zb-price-btn span {
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
}

/* Hover Stripes */
.zb-price-btn::before,
.zb-price-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.2s ease;

    background: linear-gradient(
        90deg,
        #fff 25%,
        transparent 0,
        transparent 50%,
        #fff 0,
        #fff 75%,
        transparent 0
    );

    transform: translateY(100%);
}

.zb-price-btn::after {
    transform: translateY(-100%);

    background: linear-gradient(
        90deg,
        transparent 0,
        transparent 25%,
        #fff 0,
        #fff 50%,
        transparent 0,
        transparent 75%,
        #fff 0
    );
}

.zb-price-btn:hover::before,
.zb-price-btn:hover::after {
    transform: translateY(0);
}

.zb-price-btn:hover {
    box-shadow: 0 10px 25px rgba(46, 21, 123, 0.55);
    transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.zb-btn-outline {
    background: #2E157B;
    border: 2px solid #2d1574;
    color: #fff;
}

.zb-btn-outline:hover {
    color: #2E157B !important;
}

/* SOLID BUTTON */
.zb-btn-solid {
    background: #fff;
    border: 2px solid #fff;
    color: #2E157B;
}

.zb-btn-solid:hover {
    color: #2E157B !important;
}

/* ─────────────────────────────────────────────
   FEATURES LIST  (white section below header)
   ───────────────────────────────────────────── */
.zb-price-features {
    padding: 24px 26px 28px;
    background: var(--white);
}

.zb-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 13px;
    line-height: 1.45;
}

.zb-feat-item:last-child {
    margin-bottom: 0;
}

.zb-feat-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.zb-feat-check i {
    font-size: 10px;
    color: var(--white);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .zb-col {
        flex: 0 0 calc(50% - 13px);
        max-width: none;
    }
}

@media (max-width: 580px) {
    .zb-col {
        flex: 0 0 100%;
    }

    .zb-price-title {
        font-size: 26px;
    }

    .zb-tab-btn {
        font-size: 12.5px;
        padding: 8px 16px;
    }
}