:root {
    --c-primary: #1e5fbf;
    --c-primary-dark: #0d3a8a;
    --c-primary-deep: #061434;
    --c-primary-light: #4a85d9;
    --c-accent: #5b9eff;
    --c-yellow: #ffb700;
    --c-text: #161616;
    --c-text-mute: #161616;
    --c-text-light: rgba(255, 255, 255, 0.85);
    --c-bg: #ffffff;
    --c-bg-soft: #f5f7fb;
    --c-border: #e3e8f0;
    --grad-primary: linear-gradient(135deg, #1e5fbf 0%, #0d3a8a 100%);
    --grad-hero: linear-gradient(135deg, #1947a8 0%, #1e5fbf 50%, #2a6dd5 100%);
    --grad-dark: linear-gradient(135deg, #0a1d40 0%, #061434 100%);
    --shadow-sm: 0 2px 8px rgba(10, 29, 64, 0.05);
    --shadow-md: 0 8px 24px rgba(10, 29, 64, 0.08);
    --shadow-lg: 0 20px 48px rgba(10, 29, 64, 0.12);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --t-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --f-display: "IBM Plex Sans Hebrew", sans-serif;
    --f-body: "IBM Plex Sans Hebrew", sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    font-weight: 500;
    color: var(--c-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.5em;
}

p { 
    margin: 0 0 1em;
    line-height: 24px;
 }
a { color: var(--c-primary); text-decoration: none; transition: var(--t-base); }
a:hover { color: var(--c-primary-dark); }
img { max-width: 100%; height: auto; display: block; }

section { padding: 80px 0; position: relative; }

.container-xl { max-width: 1440px; padding-left: 20px; padding-right: 20px; }

/* ---------- Common Components ---------- */
.eyebrow {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.eyebrow-light {
    color: #fff;
}

.section-h2 {
    font-weight: 500;
    line-height: 58px;
    margin-bottom: 15px;
    font-size: 50px;
}

.section-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text-mute);
    margin-bottom: 30px;
        max-width: 980px;
}

.text-white-75 { color: rgba(255, 255, 255, 0.8) !important; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--t-base);
}
.text-link:hover { gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 15px;
    padding: 13px 35px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--t-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.btn-header {
    background: #0054ef;
    color: #fff;
    border: none;
    padding: 12px 7px 12px 19px;
    font-size: 15px;
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30, 95, 191, 0.4);
    color: #fff;
}

.btn-primary-cta {
    background: var(--grad-primary);
    color: #fff !important;
    border: none;
}
.btn-primary-cta:hover {
    transform: translateY(-2px);
}

.btn-light-cta {
    background: #fff;
    color: var(--c-primary) !important;
    border: 2px solid #fff;
}
.btn-light-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 0 20px;
        gap: 4px;
        font-weight: 500;
}
.btn-outline-cta i{
    font-size: 20px;
}
.btn-outline-cta:hover {
    background: #fff;
    color: var(--c-primary) !important;
    border-color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--c-primary) !important;
}

/* ============================================
   STICKY HEADER
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--t-base);
}

.site-header.scrolled {
    padding: 14px 0;
    background: #0a1e95;
    box-shadow: 0 4px 20px rgba(10, 29, 64, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-primary);
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    margin: 0;
}
.brand-icon { display: inline-flex; }
.brand-text { color: var(--c-primary); }

.navbar-nav .nav-link {
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--c-text);
    padding: 9px 18px !important;
    position: relative;
    transition: var(--t-base);
     color: #fff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFD400;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.phone-icon {
    width: 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.phone-icon img{
    width: 20px;
}
.header-phone:hover { color: var(--c-primary); }

.navbar-toggler {
    border: none;
    padding: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
}
.navbar-toggler:focus { 
    box-shadow: none; 
}
.toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #559aff;
    border-radius: 2px;
    transition: var(--t-base);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    color: #fff;
    padding: 140px 0 60px;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #AEBFE2;
    background: linear-gradient(0deg, rgba(174, 191, 226, 1) 0%, rgba(16, 58, 255, 1) 63%, rgba(16, 58, 255, 1) 100%);   
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 200, 80, 0.25), transparent 70%);
    animation: floatBlob 14s ease-in-out infinite;
}
.hero-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(91, 158, 255, 0.4), transparent 70%);
    animation: floatBlob 18s ease-in-out infinite reverse;
}
.hero-curves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-row { 
    position: relative; z-index: 2; 
    min-height: 440px; 
}
.hero-img-col { 
    position: relative; 
    margin-top: 0;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 1;
}
.hero-image {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}
.hero-content-col h3 {
display: flex;
    color: #66BB6A;
    font-weight: 500;
    gap: 10px;
    margin-bottom: 25px;
}
.hero-title {
    font-weight: 600;
    color: #fff;
    line-height: 77px;
    margin-bottom: 26px;
    font-size: 70px;
    background: -webkit-linear-gradient(140deg, #ffffff 0%, #ffffff 51%, #96b3fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 23px;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 50px;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
/* Hero Carousel */
/* .hero-carousel { 
    position: relative; 
    z-index: 2;
        margin-top: 80px;
 }

.hero-carousel .carousel-item {
    transition: transform 0.7s ease-in-out, opacity 0.4s ease;
} */


/* Hero Carousel — PURE FADE, NO SLIDING */
.hero-carousel { position: relative; z-index: 2; }

/* Force fade transition with NO horizontal movement */
.hero-carousel .carousel-item {
    transition: opacity 1s ease-in-out !important;
    transform: none !important;
}
/* Hide inactive slides */
.hero-carousel .carousel-item {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
/* Show only the active slide */
.hero-carousel .carousel-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* During Bootstrap's class swap, show both briefly to crossfade */
.hero-carousel .carousel-item.carousel-item-next,
.hero-carousel .carousel-item.carousel-item-prev,
.hero-carousel .carousel-item.carousel-item-start,
.hero-carousel .carousel-item.carousel-item-end {
    visibility: visible;
}

.hero-carousel .carousel-item-next.carousel-item-start,
.hero-carousel .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-carousel .active.carousel-item-start,
.hero-carousel .active.carousel-item-end {
    opacity: 0;
}



/* Hero bottom slider arrows (centered, matching Figma) */
.hero-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 3;
    bottom: 10px;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #abb4ff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t-base);
    padding: 0;
}

.hero-nav-btn:hover {
    background: #6c84ff;
    color: var(--c-primary);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-nav-btn:active {
    transform: translateY(0);
}

/* Stats Band (moved out of hero, sits between hero and welcome) */
.stats-band {
    background: linear-gradient(180deg, var(--grad-hero) 0%, transparent 100%);
    background-color: transparent;
    margin-top: -1px;
    padding: 0 0 60px;
    position: relative;
    z-index: 5;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--grad-hero);
    z-index: -1;
}

/* Hero stats */
.hero-stats {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-lg);
    padding: 26px 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(10, 29, 64, 0.15);
}

.stat-col { position: relative; }
.stat-block {
    text-align: center;
    padding: 12px 8px;
}

@media (min-width: 768px) {
    .stat-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.18);
    }
}

.stat-num {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1;
    display: inline-block;
}
.stat-num span { color: var(--c-yellow); }
.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   WELCOME SECTION
============================================ */
.welcome { 
    background: #fff; 
    padding: 90px 0 90px;
    position: relative;
}

.welcome-photo-card {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 1;
}
.welcome-photo-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature cards row */
.features-row {
    margin-top: 80px;
    align-items: stretch;
}

.feature-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 35px 30px;
    height: 100%;
    transition: var(--t-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 5s ease;
}
.gains-grid{
    transition: transform 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card-elevated {
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
    border-color: rgba(30, 95, 191, 0.18);
    box-shadow: 0 16px 36px rgba(30, 95, 191, 0.12);
    transform: translateY(-12px);
}
@media (max-width: 1023.98px) {
    .feature-card-elevated { transform: none; }
}

.feature-icon-wrap { 
    margin-bottom: 12px; 
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
}
.icon-yellow {
    background: linear-gradient(135deg, #ffb700, #ff8a00);
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.3);
}
.icon-cyan {
    background: linear-gradient(135deg, #00b8d9, #1e5fbf);
    box-shadow: 0 10px 24px rgba(0, 184, 217, 0.25);
}
.icon-blue {
    background: linear-gradient(135deg, #5b3df5, #1e5fbf);
    box-shadow: 0 10px 24px rgba(91, 61, 245, 0.25);
}

.feature-card:hover .feature-icon-circle {
    transform: rotate(-6deg) scale(1.08);
}

.feature-card h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 31px;
}
.feature-card p {
    font-size: 15px;
    color: var(--c-text-mute);
    line-height: 22px;
    margin: 0;
}

/* ============================================
   ISO SERVICES (DARK)
============================================ */
.services {
        background: var(--c-bg-soft);
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}
.services::before{
    content: "";
    background: url(../images/service.png);
    height: 100%;
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center right;
}

/* .services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
} */
/* .services-blob {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 95, 191, 0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
} */

.iso-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.relative{
    position: relative;
}
.iso-row {
    background: #fff;
    border-radius: var(--r-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    transition: var(--t-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #dde5f6;
}
.iso-row:hover {
    transform: translateX(8px);
    background: #fff;
        box-shadow: var(--shadow-lg);
}
.iso-row:hover::before { 
    opacity: 1; 
}
.iso-row:hover .iso-arrow {
    transform: rotate(45deg);
}
.iso-arrow img{
    opacity: 0;
}
.iso-row:hover img{
    opacity: 1;
}

/* ISO Seal */
.iso-seal {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}


.iso-seal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px;
}
.iso-seal-top, .iso-seal-bottom {
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
}
.iso-seal-divider {
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.iso-info {
    flex: 1;
    position: relative;
    z-index: 1;
}
.iso-info h3 {
    font-size: 32px;
    font-weight: 500;
    color: #161616;
    margin: 0 0 4px;
}
.iso-info p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 500;
}

.iso-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t-base);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* ============================================
   GLOBAL RECOGNITION
============================================ */
.centersec { 
    background: url(../images/wave-bg1.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;  
}

.recog-tile {
    position: relative;
    height: 320px;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--t-base);
}

.recog-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recog-tile:hover img { transform: scale(1.08); }
.recog-tile:hover { box-shadow: var(--shadow-lg); }

.recog-tile-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 29, 64, 0.15) 0%, rgba(10, 29, 64, 0.8) 65%, rgba(10, 29, 64, 0.95) 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.recog-tile-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.recog-tile-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.recog-cta {
    align-self: flex-start;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t-base);
}
.recog-cta:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    gap: 10px;
}

/* ============================================
   PROCESS SECTION
============================================ */
.process { background: #fff; }

.process-hero-visual {
    position: relative;
    height: 280px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, #1e5fbf 0%, #4a85d9 50%, #00b8d9 100%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process-visual-shape {
    position: absolute;
    border-radius: 50%;
}
.shape-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 65%);
}
.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 30%;
    background: radial-gradient(circle, rgba(91, 158, 255, 0.5), transparent 70%);
}
.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 200, 80, 0.3), transparent 70%);
}

.process-carousel { position: relative; }

.step-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 0px;
    height: 100%;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(30, 95, 191, 0.06), transparent 70%);
    border-radius: 50%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 95, 191, 0.2);
}

.step-number {
    font-family: var(--f-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 16px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--c-text-mute);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Carousel nav */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--c-border);
    color: var(--c-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 95, 191, 0.3);
}

.carousel-btn-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.carousel-btn-light:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

/* ============================================
   GAINS SECTION
============================================ */
.gains { background: #fff; }

.gain-tile {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 14px;
    height: 100%;
    transition: var(--t-base);
    text-align: center;
}

.gain-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 95, 191, 0.25);
}

.gain-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-sm);
    overflow: hidden;
    margin-bottom: 14px;
}

.gain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gain-tile:hover .gain-image img { transform: scale(1.08); }

.gain-tile h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--c-text);
    line-height: 1.3;
}

.gain-tile p {
    font-size: 12px;
    color: var(--c-text-mute);
    margin: 0;
    line-height: 1.5;
}

.gain-tile-feature {
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
    border-color: rgba(30, 95, 191, 0.2);
}

/* ============================================
   TRUSTED SECTION (From India to World)
============================================ */
.trusted { background: var(--c-bg-soft); }

.trusted-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.trusted-text {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding-right: 20px;
}

.trusted-stat-cell {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    transition: var(--t-base);
    overflow: hidden;
}

.trusted-stat-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trusted-stat-cell h3 {
    font-family: var(--f-display);
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px;
    line-height: 1;
}
.trusted-stat-cell h3 span {
    color: var(--c-primary);
    -webkit-text-fill-color: var(--c-primary);
}
.trusted-stat-cell p {
    font-size: 13px;
    color: var(--c-text-mute);
    margin: 0;
    font-weight: 500;
}

.trust-1 { grid-column: 2 / 3; grid-row: 1; }
.trust-photo {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    padding: 0;
    border: none;
}
.trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-md);
}
.trust-2 {
    grid-column: 4 / 5;
    grid-row: 1;
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
}
.trust-2 h3 {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}
.trust-2 h3 span {
    color: var(--c-yellow);
    -webkit-text-fill-color: var(--c-yellow);
}
.trust-2 p { color: rgba(255, 255, 255, 0.92); }

.trust-3 { grid-column: 2 / 3; grid-row: 2; }
.trust-4 { grid-column: 4 / 5; grid-row: 2; }

@media (max-width: 1199.98px) {
    .trusted-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .trusted-text { grid-column: 1 / 4; grid-row: 1; padding-right: 0; }
    .trust-1 { grid-column: 1; grid-row: 2; }
    .trust-photo { grid-column: 2; grid-row: 2 / 4; min-height: 200px; }
    .trust-2 { grid-column: 3; grid-row: 2; }
    .trust-3 { grid-column: 1; grid-row: 3; }
    .trust-4 { grid-column: 3; grid-row: 3; }
}

@media (max-width: 767.98px) {
    .trusted-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trusted-text { grid-column: 1 / 3; grid-row: 1; }
    .trust-1 { grid-column: 1; grid-row: 2; }
    .trust-2 { grid-column: 2; grid-row: 2; }
    .trust-photo { grid-column: 1 / 3; grid-row: 3; min-height: 200px; }
    .trust-3 { grid-column: 1; grid-row: 4; }
    .trust-4 { grid-column: 2; grid-row: 4; }
}

/* ============================================
   TESTIMONIALS (DARK)
============================================ */
.bottm_bg {
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.testimonial-blob {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 95, 191, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonial-carousel {
    position: relative; 
    z-index: 1; 
}

.testi-card {

}
.testi-author-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--r-md);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.testi-author-tag h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--c-text);
}
.testi-author-tag span {
    font-size: 12px;
    color: var(--c-text-mute);
}

.testi-body {
    padding: 30px;
    color: var(--c-text);
    text-align: center;
    background: #fff;
    border-radius: 30px;
    max-width: 1050px;
    margin: 0 auto;
}
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--c-yellow);
    font-size: 15px;
}

.rating-meta {
    color: var(--c-text-mute);
    font-size: 13px;
    font-weight: 500;
}

.testi-headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    color: var(--c-text);
}

.testi-text {
    color: var(--c-text-mute);
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ============================================
   FAQ
============================================ */
.faq { 
    background: #fff; 
}

.faq-tabs {
    padding: 0px;
}

.faq-tab {
    font-weight: 400;
    color: #5d5d5d;
    text-align: left;
    padding: 5px 0px;
    margin-bottom: 25px;
    border: none;
    background: transparent;
    transition: var(--t-base);
    cursor: pointer;
    display: block;
    width: 100%;
     font-size: 22px;
}
.faq-tab:last-child { margin-bottom: 0; }

.faq-tab:hover {
    color: #fab601;
}

.faq-tab.active {
    position: relative;
    font-weight: 500;
    color: #161616;
}
.faq-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    background: #fab601;
    width: 46px;
    height: 3px;
}
.accordion-item {
    border: none;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    background: #f4f6fa;
    transition: var(--t-base);
}
.accordion-item:hover { border-color: rgba(30, 95, 191, 0.2); }

.accordion-button {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--c-text);
    padding: 24px 40px 21px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: var(--c-text);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e5fbf'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0px 40px 27px;
    color: var(--c-text-mute);
    font-size: 15px;
    line-height: 22px;
    margin-top: -8px;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner { 
       padding: 0;
       color: #fff;
}

.cta-card {
position: relative;
    padding: 75px 0px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta-card-bg {
    position: absolute;
    inset: 0;
}

.cta-card h2 {
    font-size: 50px;
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
    background: #3A61F2;
    background: linear-gradient(to right, #3A61F2 0%, #FEF3CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 54px;
}

.cta-card p {
    font-size: 20px;
    margin: 0 auto 32px;
    position: relative;
        line-height: 30px;
}

.cta-card .btn { position: relative; }

/* ============================================
   NEWSLETTER
============================================ */
.newsletter {
    background: var(--c-bg-soft);
    padding: 57px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.newsletter h3 {
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 6px;
}
.newsletter p {
    color: var(--c-text-mute);
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    gap: 6px;
}

.newsletter-form .form-control {
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    background: transparent;
    flex: 1;
    min-width: 0;
}
.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 50px !important;
    padding: 10px 26px;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: #f5f7fb;
    padding:57px 0 39px;
    position: relative;
    overflow: hidden;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-brand:hover { color: var(--c-accent); }

.footer-about {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 24px;
    color: var(--c-text);
    padding-right: 60px;
}

.footer-social {
    display: flex;
    gap: 10px;
    float: right;
}

.footer-social a {
width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: 1px solid #d2d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--t-base);
        color: var(--c-text);
}

.footer-social a:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    transform: translateY(-3px);
    color: #fff;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { 
    margin-bottom: 10px; 
}
.footer-links a {
        color: var(--c-text);
    font-size: 15px;
    transition: var(--t-base);
    display: inline-block;
}
.footer-links a:hover {
    color: #0B26A3;
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 0px;
    padding: 19px 0;
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 15px;
    text-align: left;
    margin-top: 6px;
}


/* ============================================
   RESPONSIVE STYLES
============================================ */

/* Large desktop & smaller */
@media (max-width: 1199.98px) {
    section { padding: 80px 0; }
    .testi-body { padding: 40px 32px; }
    .testi-headline { font-size: 20px; }
}

/* Tablets / mobile menu break */
@media (max-width: 1024px) {
    .navbar-collapse {
        margin-top: 16px;
        padding: 24px;
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--c-border);
    }
    .navbar-nav {
        margin-bottom: 18px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--c-border);
    }
    .navbar-nav .nav-link:last-child { border-bottom: none; }
    .navbar-nav .nav-link::after { display: none; }

    .header-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .header-phone { justify-content: center; }
    .header-cta .btn { width: max-content;; }

    .hero { padding-top: 120px; padding-bottom: 70px; text-align: center; }
    .hero-img-col { margin-bottom: 30px; }
    .hero-image-frame { max-width: 320px; }
    .hero-content-col { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .stat-col:not(:last-child)::after { display: none; }

    .welcome-photo-card { max-width: 280px; margin: 0 auto 20px; }

    .features-row { margin-top: 50px; }
    .feature-card-elevated { transform: none; }

    .testi-photo { min-height: 280px; }
    .testi-photo img { min-height: 280px; }

    .cta-card { padding: 60px 24px; }

    .recog-tile { height: 280px; }

    .footer .col-lg-4 { text-align: center; }
    .footer .col-lg-4 .footer-brand { justify-content: center; }
    .footer .col-lg-4 .footer-about { margin-left: auto; margin-right: auto; }
    .footer .col-lg-4 .footer-social { justify-content: center; }
}

/* Small tablets / phones */
@media (max-width: 767.98px) {
    section { padding: 60px 0; }

    .hero { padding-top: 110px; padding-bottom: 60px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 15px; }

    .section-h2 { font-size: 26px; }

    .hero-stats { padding: 18px 10px; margin-top: 50px; }
    .stat-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .stat-col:nth-last-child(-n+2) { border-bottom: none; }
    .stat-col:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
    .stat-num { font-size: 24px; }
    .stat-text { font-size: 12px; }

    .iso-row { padding: 14px 16px; gap: 14px; }
    .iso-seal { width: 60px; height: 60px; }
    .iso-info h3 { font-size: 15px; }
    .iso-info p { font-size: 12px; }

    .feature-card { padding: 24px 20px; }
    .feature-card h4 { font-size: 17px; }

    .recog-tile-content h4 { font-size: 18px; }
    .recog-tile-content p { font-size: 13px; }

    .step-card { padding: 28px 22px; }
    .step-number { font-size: 36px; }
    .step-card h4 { font-size: 18px; }

    .testi-body { padding: 28px 22px; }
    .testi-headline { font-size: 17px; }
    .testi-author-tag { bottom: 16px; left: 16px; padding: 10px 14px; }

    .cta-card { padding: 50px 22px; }
    .cta-card h2 { font-size: 26px; }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 10px;
    }
    .newsletter-form .form-control {
        border-radius: 50px;
        background: #fff;
        border: 1px solid var(--c-border);
        padding: 12px 22px;
    }
    .newsletter-form .btn { width: 120px; }

    .gain-tile h5 { font-size: 13px; }
    .gain-tile p { font-size: 11px; }
}

/* Very small phones */
@media (max-width: 575.98px) {

    .testi-photo { min-height: 220px; }
    .testi-photo img { min-height: 220px; }

    .navbar-brand { font-size: 18px; }
    .navbar-brand .brand-icon svg { width: 28px; height: 28px; }
}

/* AOS adjustments */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================
   ====== UPDATED SECTIONS (override old) ======
   ============================================ */

/* ---------- Eyebrow with yellow line accent ---------- */
.eyebrow-line {
    position: relative;
    background: transparent;
    padding-left: 0;
    color: var(--c-text);
    font-weight: 400;
}
.eyebrow-yellow-line {
    position: relative;
    background: transparent;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}
/* ---------- Light pill button with yellow circle arrow ---------- */
.btn-light-pill {
    background: #fff;
    color: var(--c-text) !important;
    border: 2px solid #fff;
    padding: 4px 6px 4px 22px;
    font-weight: 500;
    gap: 12px;
    width: max-content;
}
.btn-light-pill:hover {
    background: #f5f7fb;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn-arrow-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 14px;
    transition: var(--t-base);
}
.btn-light-pill:hover .btn-arrow-yellow {
    transform: rotate(45deg);
}

/* Dark pill button (dark bg, yellow arrow) */
.btn-dark-pill {
    background: #0a1d40;
    color: #fff !important;
    border: 2px solid #0a1d40;
    padding: 6px 6px 6px 22px;
    font-weight: 600;
    gap: 12px;
}
.btn-dark-pill:hover {
    background: #061434;
    border-color: #061434;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.btn-dark-pill .btn-arrow-yellow {
    background: var(--c-yellow);
    color: #1a1a1a;
}
.btn-dark-pill:hover .btn-arrow-yellow {
    transform: rotate(45deg);
}

/* ============================================
   WELCOME SECTION — woman with floating stat pills
============================================ */
.welcome-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1.05;
    margin: 0 auto;
}

/* Dotted pattern decoration (bottom left) */
.welcome-dots {
    position: absolute;
    bottom: 8%;
    left: -3px;
    width: 60px;
    height: 51px;
    background-image: radial-gradient(circle, #6b7fc7 2px, transparent 3px);
    background-size: 13px 12px;
    background-position: 0 0;
    z-index: 1;
}

/* Main woman photo card with rounded purple bg */
.welcome-photo-card {
    width: 100%;
    height: 100%;
}

.welcome-photo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #7b86d8 0%, #5b69c4 100%);
    border-radius: 50% 50% 30% 30% / 38% 38% 8% 8%;
    z-index: 0;
}

/* Floating stat pills */
.stat-pill {
    position: absolute;
    z-index: 5;
    background: #fff;
    border-radius: 11px;
    padding: 10px 14px 10px 11px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(10, 29, 64, 0.12);
    animation: floatPill 4s ease-in-out infinite;
}

.stat-pill-1 {
    top: 18%;
    left: -15%;
    animation-delay: 0s;
}
.stat-pill-2 {
    top: 27%;
    right: -14%;
    animation-delay: 0.6s;
}
.stat-pill-3 {
    top: 58%;
    left: -14%;
    animation-delay: 1.2s;
}
.stat-pill-4 {
    bottom: 8%;
    right: -6%;
    animation-delay: 1.8s;
}

@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.pill-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.pill-text strong {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--c-text);
}
.pill-text span {
    font-size: 13px;
    color: var(--c-text-mute);
    font-weight: 400;
    margin-top: 5px;
}

@media (max-width: 1023.98px) {
    .welcome-visual {
        max-width: 360px;
    }
    .stat-pill {
        padding: 6px 14px 6px 6px;
        gap: 8px;
    }
    .pill-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .pill-text strong { font-size: 14px; }
    .pill-text span { font-size: 10px; }

    .stat-pill-1 { left: -4%; }
    .stat-pill-2 { right: -6%; }
    .stat-pill-3 { left: -8%; }
    .stat-pill-4 { right: -2%; }
}

@media (max-width: 575.98px) {
    .welcome-visual { max-width: 280px; }
    .stat-pill-1 { left: -10%; top: 6%; }
    .stat-pill-2 { right: -10%; }
    .stat-pill-3 { left: -10%; }
    .stat-pill-4 { right: -10%; }
    .pill-text span { display: none; }
}

/* ============================================
   PROCESS SECTION — fixed intro panel + sliding card track on right
============================================ */
.process { 
      background: none;
    padding: 110px 0 90px; 
}

.process-card-container {
    position: relative;
}

.process-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.6fr;
    gap: 0;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10, 29, 64, 0.18);
    background-image: linear-gradient(to bottom, #002191, #021e76, #091a5a, #0d1640, #0f0f27);
}

/* Left intro panel (fixed, does not slide) */
.process-intro {
    position: relative;
    padding: 70px 35px 70px 63px;
    color: #fff;
    overflow: hidden;
}

.process-intro h2 {
    color: #fff;
    margin-bottom: 14px;
}

/* Right card track — only this part slides */
.process-track-wrap {
    position: relative;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    padding: 70px 24px 70px 0px;
    background: radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
    margin-left: 50px;
}

.process-track {
    display: flex;
    gap: 18px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.process-track .step-card {
    flex: 0 0 calc((100% - 36px) / 2.1); /* show 2 cards + peek of 3rd */
    min-width: 0;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--t-base);
    min-height: 360px;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-arrow {
    position: absolute;
    top: 25px;
    right: 18px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--c-yellow);
    border: none;
    color: #1a1a1a;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--t-base);
    padding: 0;
}
.step-arrow:hover {
    transform: rotate(45deg);
    background: #ffc107;
}

.step-card-body {
    padding: 2px 30px 0px;
    flex-shrink: 0;
}

.step-card-body h4 {
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 27px;
    color: var(--c-text);
    padding-right: 50px;
}

.step-card-body p {
    font-size: 15px;
    color: var(--c-text-mute);
    line-height: 21px;
    margin: 0;
}

.step-card-img {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-left: 30px;
    margin-bottom: 21px;
    width: 110px;
}

/* .step-bg-1 {
    background:
        radial-gradient(ellipse at 20% 100%, #1e40af, transparent 50%),
        radial-gradient(ellipse at 80% 100%, #6366f1, transparent 50%),
        linear-gradient(180deg, #fff 0%, #c7d2fe 40%, #4f46e5 100%);
}

.step-bg-2 {
    background:
        radial-gradient(ellipse at 30% 100%, #ec4899, transparent 50%),
        radial-gradient(ellipse at 70% 100%, #f97316, transparent 60%),
        linear-gradient(180deg, #fff 0%, #fbcfe8 40%, #db2777 100%);
}

.step-bg-3 {
    background:
        radial-gradient(ellipse at 25% 100%, #1e40af, transparent 50%),
        radial-gradient(ellipse at 75% 100%, #8b5cf6, transparent 55%),
        linear-gradient(180deg, #fff 0%, #ddd6fe 40%, #6d28d9 100%);
} */

/* Side arrow buttons (centered between intro and cards) */
.process-side-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
   background: rgb(137 184 255 / 50%);
    border: none;
    color: var(--c-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--t-base);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
     /* backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); */
}
.process-side-btn:hover:not(:disabled) {
    background:#ffffff;
    transform: translateY(-50%) scale(1.08);
}
.process-side-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.process-side-prev {
       left: calc(40% - 13px);
}
.process-side-next {
    right: 16px;
}

@media (max-width: 1023.98px) {
    .process-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .process-intro {
        padding: 40px 32px 220px;
    }
    .process-track-wrap {
        padding: 40px 24px;
    }
    .process-track .step-card {
        flex: 0 0 calc((100% - 18px) / 1.6);
    }
    .process-side-prev {
        left: 12px;
        top: 24px;
        transform: none;
    }
    .process-side-next {
        right: 12px;
        top: 24px;
        transform: none;
    }
    .process-side-btn:hover:not(:disabled) {
        transform: scale(1.08);
    }
}

@media (max-width: 575.98px) {
    .process-track .step-card {
        flex: 0 0 calc(100% - 20px);
    }
    .process-intro {
        padding: 36px 24px 180px;
    }
}

/* ============================================
   GAINS SECTION — flex layout, cards expand on hover (smooth & slow)
============================================ */
.gains { 
       background: none;
    padding: 30px 0 20px;
 }

.gains-grid {
    display: flex;
    gap: 7px;
    align-items: stretch;
    height: 370px;
}

/* Each card — long, slow easing for smooth expand/collapse */
.gain-tile {
    position: relative;
    flex: 1 1 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
    /* Slow + buttery easing on the flex change */
    transition:
        flex 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: flex-grow, transform;
}

/* Feature card starts expanded */
.gain-tile-feature {
    flex: 2.6 1 0;
}

/* On hover, card grows smoothly */
.gain-tile:hover {
    flex: 2.6 1 0;
    box-shadow: 0 30px 60px rgba(10, 29, 64, 0.3);
    transform: translateY(-4px);
}

/* When any sibling is hovered, the feature card shrinks back */
.gains-grid:hover .gain-tile-feature:not(:hover) {
    flex: 1 1 0;
}

/* Image — slow zoom + brightness fade */
.gain-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.95);
    transition:
    transform 3.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
        
}

.gain-tile:hover img {
    transform: scale(1.4);
    filter: brightness(1) saturate(1.05);
}

/* Gradient overlay — softens on hover */
.gain-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(10, 29, 64, 0.92) 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 2;
    transition: background 0.9s ease, padding 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        align-items: flex-start;
}

.gain-tile:hover .gain-content,
.gain-tile-feature .gain-content {
    background: linear-gradient(180deg, transparent 0%, transparent 25%, rgba(10, 29, 64, 0.85) 65%, rgba(10, 29, 64, 0.92) 100%);
}

/* Heading — slowly slides up to make room for paragraph */
.gain-content h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 23px;
        text-align: left;
    transform: translateY(10px);
   transition:
        max-height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease 0.15s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        margin-top 0.6s ease;
}

/* Paragraph hidden — slowly fades and slides in */
.gain-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height:19px;
    margin: 0;
    text-align: left;
    max-height: 0;
    opacity: 0;
    transform: translateY(0px);
    overflow: hidden;
    transition:
        max-height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease 0.15s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        margin-top 0.6s ease;
}

/* On hover OR for the feature card by default, reveal paragraph */
.gain-tile:hover .gain-content p,
.gain-tile-feature .gain-content p {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 2px;
}

.gain-tile:hover .gain-content h5,
.gain-tile-feature .gain-content h5 {
    margin-bottom: 7px;
    font-size: 23px;
    transform: translateY(0px);
}

/* When sibling is hovered, the feature card hides paragraph smoothly */
.gains-grid:hover .gain-tile-feature:not(:hover) .gain-content p {
    max-height: 0;
    opacity: 0;
    transform: translateY(0px);
    margin-top: 0;
    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.6, 1),
        opacity 0.4s ease,
        transform 0.5s ease;
}

.gains-grid:hover .gain-tile-feature:not(:hover) .gain-content h5 {
    font-size: 18px;
}

.gains-grid:hover .gain-tile-feature:not(:hover) .gain-mark {
    opacity: 0;
    transform: scaleX(0);
}

/* Yellow accent mark — slides + fades */
.gain-mark {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--c-yellow);
    border-radius: 2px;
    margin-bottom: 10px;
    transform-origin: left center;
    /* Hidden by default for non-feature cards */
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mark visible on the feature card by default */
.gain-tile-feature .gain-mark {
    opacity: 1;
    transform: scaleX(1);
}

/* Mark fades in when ANY card is hovered */
.gain-tile:hover .gain-mark {
    opacity: 1;
    transform: scaleX(1);
}

@media (max-width: 1199.98px) {
    .gains-grid { height: 400px; }
}

@media (max-width: 1023.98px) {
    .gains-grid {
        flex-wrap: wrap;
        height: auto;
    }
    .gain-tile {
        flex: 1 1 calc(33.333% - 12px);
        min-height: 280px;
        height: 280px;
    }
    .gain-tile-feature {
        flex: 1 1 calc(33.333% - 12px);
    }
    .gain-tile:hover {
        flex: 1 1 calc(33.333% - 12px);
        transform: translateY(-4px);
    }
    .gains-grid:hover .gain-tile-feature:not(:hover) {
        flex: 1 1 calc(33.333% - 12px);
    }
    /* On tablet/mobile, paragraph is always visible for the feature card; collapsed for others until tap-hover */
    .gain-tile:hover .gain-content p,
    .gain-tile-feature .gain-content p {
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .gain-tile,
    .gain-tile-feature {
        flex: 1 1 calc(50% - 8px);
    }
    .gain-tile:hover,
    .gains-grid:hover .gain-tile-feature:not(:hover) {
        flex: 1 1 calc(50% - 8px);
    }
}

/* ============================================
   TRUSTED SECTION — two-tone bg with 4 ticket cards
============================================ */
.trusted {
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.trusted-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    min-height: 520px;
    position: relative;
    background: #fef3c7;
}

/* Left side - purple/blue */
/* .trusted-left {
    background: linear-gradient(180deg, #a0a8d9 0%, #8a93cc 100%);
    padding: 80px 40px 80px 80px;
    display: flex;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 50%, 100% 100%, 0 100%);
} */

/* Left side - purple/blue */
.trusted-left {
    padding: 80px 40px 80px 160px;
    display: flex;
    align-items: center;
    position: relative;
        clip-path: polygon(0 0, 130% 0, calc(100% - 70px) 50%, 160% 130%, 0 100%);
}

.trusted-text-inner {
    max-width: 480px;
    z-index: 1;
}
.trusted-text-inner h2 {
    color: #000;
}
.trusted-text-inner .section-lead {
    font-size: 15px;
}

/* Right side - cream/yellow */
.trusted-right {
    background: #fef3c7;
    padding: 60px 160px 60px 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.trusted-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 200, 80, 0.18) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.trusted-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    width: 100%;
    position: relative;
}

/* Ticket-shaped cards */
.trust-ticket {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: var(--t-base);
}

.trust-ticket:hover {
    transform: translateY(-10px) !important;
}

/* Ticket photos */
.ticket-photo {
    width: 110px;
    height: 100%;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    height: 88%;
    z-index: 1;
}

.ticket-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center "Here Us" circle */
.here-us-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #3e5bc4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--f-display);
    box-shadow: 0 0 0 8px #fef3c7, 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

@media (max-width: 1023.98px) {
    .trusted-wrap {
        grid-template-columns: 1fr;
    }
    .trusted-left {
        clip-path: none;
        padding: 60px 30px;
    }
    .trusted-right {
        padding: 60px 30px;
    }
}

@media (max-width: 575.98px) {
    .trusted-cards-grid {
        grid-template-columns: 1fr;
    }
    .here-us-circle { display: none; }
    .ticket-photo { width: 80px; }
}

/* ============================================
   ====== HEADER DROPDOWN + MEGA MENU ======
============================================ */

/* Allow mega menu to overflow header */
.site-header .navbar { position: static; }
.site-header .navbar-nav { 
    position: static;
    background: rgba(19, 51, 158, 0.9);
    padding: 10px 40px;
    border-radius: 200px;
}
.nav-mega { position: static !important; }

/* Caret icon next to nav items */
.nav-caret {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-has-caret .nav-link[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
}

/* Active "Policy & Procedure" pill style when mega menu is open */
.nav-has-caret .nav-link {
    cursor: pointer;
    border-radius: 8px;
    transition: var(--t-base);
   
}

.nav-has-caret .nav-link[aria-expanded="true"] {
    background: rgba(30, 95, 191, 0.06);
    color: #FFD400;
}

.nav-has-caret .nav-link[aria-expanded="true"]::after {
    width: 50%;
}

/* Hide arrow on dropdown-toggle (we use our own caret) */
.nav-has-caret .nav-link.dropdown-toggle::after {
    display: none;
}

/* ---------- Simple dropdown (About, Services, Resources) ---------- */
.nav-simple-dropdown {
    border: none;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(10, 29, 64, 0.12);
    padding: 10px;
    margin-top: 12px;
    min-width: 220px;
    background: #fff;
    animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-simple-dropdown .dropdown-item {
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--t-base);
}

.nav-simple-dropdown .dropdown-item:hover,
.nav-simple-dropdown .dropdown-item:focus {
    background: rgba(30, 95, 191, 0.06);
    color: var(--c-primary);
}

/* ---------- MEGA MENU ---------- */
.mega-menu {
    border: none;
    background: transparent;
    padding: 0;
    margin: 2px 0 0;
    inset: auto !important;
    transform: none !important;
    top: 100% !important;
    left: 50% !important;
    width: min(1200px, calc(100vw - 40px));
    max-width: 1200px;
    animation: dropdownFade 0.3s ease;
    /* Center horizontally */
    margin-left: 0 !important;
}

/* Override Bootstrap's positioning to center under header */
.mega-menu.show {
    display: block;
}

.mega-menu {
    transform: translateX(-50%) !important;
}

.mega-menu-inner {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(10, 29, 64, 0.18);
    padding: 24px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 21px;
    overflow: hidden;
}

/* LEFT promo card */
.mega-promo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
        height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 32px 26px;
    color: var(--c-text);
}

.mega-promo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, #263D8E 4.03%, #4764B5 29.96%, #8D9CDD 57.77%, #E7C3FF 98.4%);
    z-index: 0;
}
.mega-promo-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
        justify-content: center;
    align-items: center;
    text-align: center;
}

.mega-promo h3 {
font-size: 27px;
    font-weight: 500;
    color: #ffffff;
    line-height: 31px;
    margin-bottom: 24px;
}

.mega-promo h3 strong {
    font-weight: 800;
    display: inline-block;
    margin-top: 4px;
}

.mega-promo-btn {
    align-self: flex-start;
    margin-top: auto;
        background: #fff;
    border: 2px solid #fff;
    padding: 3px 2px 2px 20px;
    font-weight: 500;
    gap: 10px;
    width: max-content;
        margin: 0 auto;
}

.mega-promo-btn .btn-arrow-yellow {
    color: #1a1a1a;
}

/* RIGHT items grid (2 columns) */
.mega-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    align-content: start;
    padding: 8px 8px 8px 0;
}

.mega-item {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: var(--t-base);
    color: var(--c-text);
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.mega-item:hover {
    background: rgba(30, 95, 191, 0.08);
    transform: translateX(2px);
}

.mega-item:hover h5 {
    color: var(--c-primary);
}

.mega-icon {
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #b5b2b2;
}
.mega-text {
    flex: 1;
    min-width: 0;
}
.mega-text p{
    margin-top: 2px;
}
.mega-text h5 {
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
    transition: color 0.2s ease;
        margin-bottom: 0;
}
.mega-text p {
    font-size: 13px;
    color: var(--c-text-mute);
    line-height: 17px;
    margin-top: 3px;
    margin-bottom: 0;
}










/* ---------- Mobile / Tablet adaptation ---------- */
@media (max-width: 1199.98px) {
    .mega-menu-inner {
        grid-template-columns: 240px 1fr;
        gap: 20px;
        padding: 20px;
    }
    .mega-items-grid { gap: 8px 18px; }
    .mega-text h5 { font-size: 13px; }
    .mega-text p { font-size: 11.5px; }
}

@media (max-width: 1023.98px) {
    /* Within mobile collapse, show dropdowns inline */
    .nav-has-caret .nav-link.dropdown-toggle::after { display: none; }

    .nav-simple-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--c-border);
        margin: 8px 0 12px 12px;
        padding: 8px;
        animation: none;
        width: auto;
    }

    /* Mega menu collapses to a single column on mobile */
    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 8px 0 12px;
        animation: none;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(10, 29, 64, 0.08);
        border: 1px solid var(--c-border);
    }

    .mega-promo {
        min-height: 220px;
        padding: 24px 20px;
    }

    .mega-promo h3 {
        font-size: 18px;
    }

    .mega-items-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 6px;
    }

    .mega-item {
        padding: 10px;
    }

    .mega-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Hide caret rotation on mobile */
    .nav-has-caret .nav-link[aria-expanded="true"] {
        background: transparent;
    }
}

@media (max-width: 575.98px) {
    .mega-menu-inner {
        padding: 12px;
    }
    .mega-promo {
        min-height: 180px;
        padding: 20px 16px;
    }
    .mega-promo h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }
}


.navbar-brand img{
    width: 210px;
}
.header_container{
    padding: 0 150px;
}
.header-phone{
position: static;
    background: rgba(19, 51, 158, 0.9);
    padding: 16px 15px;
    border-radius: 200px;
}
.video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:1;
}

.bg-video{
    width:100%;
    height:100%;
    object-fit:cover;
   
}

.video-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgb(0 11 127 / 99%), rgb(0 79 255 / 50%));
}
.overchecks{
    position: absolute;
    background: url(../images/checks.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
        background-size: cover;
}
.abt_right {
    padding-left: 50px;
    padding-right: 80px;
}
.btnArrow {
    padding: 3px 4px 3px 20px;
}
.btnArrow img{
    width: 43px;
}
.iso-list{
    padding-left: 30px;
}
.iso-seal img{
    width: 70px;
}
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:14px;
    align-items:stretch;
    margin-top: 70px;
}
.benefit-card{
    position:relative;
    background:#111;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    min-height:255px;
}
.benefit-card::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:
    repeating-radial-gradient(
        circle at center,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 14px
    );
    opacity:.45;
}
.card-image{
    width:42%;
    position:relative;
    z-index:2;
    flex-shrink:0;
}
.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    display:block;
}
.card-content{
    width:58%;
    padding-left:28px;
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;
}
.card-content h2{
    font-size:clamp(26px,3vw,36px);
    line-height:1.1;
    font-weight:600;
    margin-bottom:18px;
    background: #3A61F2;
    background: linear-gradient(to right, #3A61F2 0%, #FEF3CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.card-content p{
    font-size:16px;
    line-height:1.7;
    color:#ededed;
    margin-bottom:32px;
    max-width:95%;
}
.explore-btn{
    display:flex;
    align-items:center;
    gap:16px;
    width:max-content;
    border:1.5px solid rgba(255,255,255,0.7);
    border-radius:60px;
    padding:6px 6px 6px 24px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}
.explore-btn:hover{
    transform:translateY(-2px);
}
.arrow{
    width:42px;
    height:42px;
    background:#ffd600;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:20px;
    font-weight:700;
}
.card-1{
    grid-column:span 6;
}
.card-2{
    grid-column:span 6;
}
.card-3{
    grid-column:span 4;
    padding:0;
    min-height:255px;
}
.card-4{
    grid-column:span 8;
}
.card-5{
    grid-column:span 8;
}
.card-6{
    grid-column:span 4;
    padding:0;
    min-height:255px;
}
.image-only img{
    width:100%;
    height:100%;
    object-fit:cover;
}
@media(max-width:1199px){
    .card-content{
        padding-left:22px;
    }

    .card-content h2{
        font-size:30px;
    }
}
@media(max-width:991px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6{
        grid-column:unset;
    }
    .benefit-card{
        flex-direction:column;
        min-height:auto;
    }
    .card-image{
        width:100%;
        height:260px;
    }
    .card-content{
        width:100%;
        padding-left:0;
        padding-top:24px;
    }

    .card-content p{
        max-width:100%;
    }
    .image-only{
        min-height:320px;
    }
}
@media(max-width:767px){
    .benefits-grid{
        gap:12px;
    }
    .benefit-card{
        padding:14px;
        border-radius:18px;
    }
    .card-image{
        height:220px;
    }
    .card-image img{
        border-radius:14px;
    }
    .card-content{
        padding-top:20px;
    }

    .card-content h2{
        font-size:28px;
        margin-bottom:14px;
    }
    .card-content p{
        font-size:15px;
        line-height:1.6;
        margin-bottom:24px;
    }
    .explore-btn{
        font-size:15px;
        padding:5px 5px 5px 20px;
    }
    .arrow{
        width:38px;
        height:38px;
        font-size:18px;
    }
    .image-only{
        min-height:250px;
    }
}
@media(max-width:480px){
    .card-image{
        height:200px;
    }
    .card-content h2{
        font-size:24px;
    }
    .card-content p{
        font-size:14px;
    }
}
.sub_line{
    width: 50px;
    height: 3px;
    background: #FFD400;
    margin-bottom: 15px;
    margin-bottom: 9px !important;
}
.step-card-body h4 a {
    color: #161616;
    font-size: 24px;
    line-height: 29px;
}
.tr-video{
    width:100%;
    height:100%;
    object-fit:cover;
    position: absolute;
    left: 0;
}
.tr-overlay{
    position:absolute;
    inset:0;
    background: rgba(211, 218, 255, 0.8);
}
.ct-video{
    width:100%;
    height:100%;
    object-fit:cover;
    position: absolute;
    left: 0;
}
.ct-overlay{
    position:absolute;
    inset:0;
    background: rgb(0 0 0 / 80%);
}
.footer-brand img{
    width: 230px;
}
.iso-footer li a{
    font-weight: 600;
}
.testi-bg{
    background: #CFD8FE;
    background: linear-gradient(0deg, rgba(207, 216, 254, 1) 0%, rgba(1, 30, 167, 1) 100%);
    height: 100%;
    position: relative;
    border-radius: 50px;
    padding: 60px 80px;
}
.testi-bg::before{
    content: "";
    background: url(../images/test-bg.png);
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    left: 0;
    top: 0;
}
.faq {
    padding-top: 90px;
}
.iso-footer li p{
    font-size: 14px;
    line-height: 20px;
    padding-right: 50px;
}
.footad a{
    display: flex;
    color: var(--c-text);
    font-weight: 500;
    gap: 8px;
}
.footad img{
    width: 19px;
    margin-top: -5px;
}


/************  ABOUT CSS   *********************************************************************************************/

.ab-head{
    padding: 70px 0 0px;
    overflow: hidden;
    position: relative;
    background: #5D74D2;
    background: linear-gradient(0deg, rgba(93, 116, 210, 1) 0%, rgba(0, 16, 112, 1) 100%);
        max-height: 530px;
}
.ab-head-content{
    padding-right: 100px;
}
.ab-head-tag{
    color:#fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
}
.ab-head-title{
    font-size: 48px;
    font-weight: 500;
    color: #dfe5ff;
    line-height: 58px;
    margin: 0 0 15px;
}
.ab-head-text{
    font-size:18px;
    line-height:1.4;
    color:rgba(255,255,255,.9);
    margin:0;
}
.ab-head-right img{
       max-width: 400px;
}
.ab-who-head {
    padding-right: 100px;
}
/* ******* */

.ab-who{
    padding:80px 0 100px;
    background:#f6f6f6;
    position:relative;
    overflow:hidden;
}
.ab-who:before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px);

    background-size:320px 230px;
    pointer-events:none;
}

.ab-who-top{
    margin-bottom:110px;
}

.ab-who-tag{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}
.ab-who-title{
    font-size:58px;
    line-height:1.05;
    font-weight:700;
    color:#111;
    margin:0;
}

.ab-who-content{
    font-size: 18px;
    line-height: 1.7;
        margin-top: 70px;
}
.ab-who-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.ab-who-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.ab-who-icon{
    background: #e5eefb;
    display: flex;
    padding: 14px;
    border-radius: 200px;
}
.ab-who-icon img{
    width: 60px;
}
.ab-who-item h4{
    font-size:24px;
    margin:0 0 6px;
}
.ab-who-image-wrap{
    position:relative;
}

.ab-who-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:14px;
}

/* stats box */

.ab-who-count{
    position:absolute;
    right:40px;
    top:-70px;
    width:350px;
    background:#ffd500;
    padding:25px;
    border-radius:14px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.ab-who-count-box h3{
    margin:0;
    font-size:40px;
    line-height:1;
    font-weight:700;
}

.ab-who-count-box p{
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}

@media(max-width:991px){

.ab-who{
padding:60px 0;
}

.ab-who-title{
font-size:40px;
}

.ab-who-content{
margin-top:30px;
}

.ab-who-list{
margin-bottom:40px;
}

.ab-who-count{
position:relative;
right:auto;
top:auto;
margin-top:20px;
width:100%;
}

.ab-who-image img{
height:auto;
}

}

/* *************** */

.ab-vision{
    padding:90px 0;
    background:#152748;
    position:relative;
    overflow:hidden;
    position: relative;
}
.ab-vision::before{
    content: "";
    background: url(../images/vision-bg.png);
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center top;
}


/* background abstract shape */
.ab-vision .container{
    position:relative;
    z-index:2;
}
.ab-vision-head{
    text-align:right;
}
.ab-vision-card{
    border-radius:14px;
    overflow:hidden;
    height:100%;
}
.card-one{
    background:#cfe0f3;
}
.card-two{
    background:#efe3a7;
}
.card-three{
    background:#cfeceb;
}
.card-four{
    background:#efd7cf;
}
.ab-vision-content{
    padding:25px 20px;
}
.ab-vision-content h3{
    font-size:22px;
    margin:0 0 12px;
    color:#222;
}
.ab-vision-content p{
margin: 0;
    line-height: 24px;
}
.ab-vision-img img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}
@media(max-width:991px){
.ab-vision{
padding:60px 0;
}
.ab-vision-head{
text-align:left;
margin-top:30px;
}

}

/* ****************** */

.ab-mission{
    padding:90px 0;
    background:#fff;
}

.ab-mission-content{
    max-width:500px;
}

.ab-mission-tag{
    display:flex;
    align-items:center;
    gap:10px;
    color:#444;
    font-size:18px;
    margin-bottom:25px;
}

.ab-mission-tag span{
    width:45px;
    height:4px;
    background:#ffd400;
    border-radius:30px;
}

.ab-mission-title{
    font-size:64px;
    line-height:1;
    font-weight:700;
    color:#161616;
    margin:0 0 20px;
}

.ab-mission-text{
    font-size:18px;
    color:#444;
    line-height:1.7;
    margin-bottom:30px;
}

.ab-mission-bottom{
    display:flex;
    align-items:center;
    gap:18px;
}

.ab-mission-btn{
    background:#132852;
    color:#fff;
    padding:8px 8px 8px 25px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
    font-weight:600;
}

.ab-mission-btn i{
    width:38px;
    height:38px;
    background:#ffd400;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ab-mission-users{
    display:flex;
    align-items:center;
}

.ab-mission-users img{
    width:45px;
    height:45px;
    border-radius:50%;
    margin-left:-15px;
    border:2px solid #fff;
    object-fit:cover;
}

.ab-mission-users span{
    width: 40px;
    height: 40px;
    background: #d9e0ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* right grid */

.ab-mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.ab-mission-card{
    border-radius:14px;
    overflow:hidden;
    position:relative;
    min-height:205px;
}
.ab-card-green{
    background:#e4eede;
    padding:30px 20px;
    position: relative;
}
.ab-card-green::before{
    content: "";
    background: url(../images/ab-card-green.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100px auto;
}
.ab-card-yellow{
    background:#fceeb6;
    padding:30px 20px;
}
.ab-card-yellow::before{
    content: "";
    background: url(../images/ab-card-yellow.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100px auto;
}
.ab-card-orange{
    background:#f6d0b6;
    padding:30px 20px;
}
.ab-card-orange::before{
    content: "";
    background: url(../images/ab-card-orange.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100px auto;
}
.ab-mission-icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.ab-mission-card h3{
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 14px;
}
.ab-mission-line{
    width:40px;
    height:3px;
    background:#ffb300;
    margin-bottom:15px;
}

.ab-mission-card p{
    line-height: 22px;
    margin: 0;
}

.ab-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.ab-mission-overlay{
    position:absolute;
    bottom:28px;
    left:18px;
    right:18px;
    background:rgba(255,255,255,.95);
    border-radius:12px;
    padding:12px;
}
.ab-mission-overlay h4{
    font-size: 18px;
    margin: 0;
    line-height: 26px;
}
.ab-mission-overlay p{
    margin:0;
    font-size:13px;
}
.bg-dark{
   background: #152748 !important;
       color: #fff !important;
}
@media(max-width:991px){
.ab-mission{
padding:60px 0;
}
.ab-mission-title{
font-size:42px;
}
.ab-mission-grid{
grid-template-columns:repeat(2,1fr);
margin-top:40px;
}
}
@media(max-width:576px){
.ab-mission-grid{
grid-template-columns:1fr;
}

.ab-mission-bottom{
flex-wrap:wrap;
}

}
/* ******************** */

.ab_why{
    padding:80px 0 65px;
    background: linear-gradient(135deg, rgba(175, 251, 208, 0.40) 0%, rgba(116, 179, 255, 0.00) 30.67%, rgba(116, 179, 255, 0.40) 100%);
}
.ab_why-item{
    padding: 0;
    border-left: 1px dashed #a5a5a5;
    min-height: 180px;
    padding-left: 30px;
    margin-bottom: 30px;
    margin-left: 8px;
}
.ab_why-number{
    display: block;
    color: #6d80a3;
    font-size: 27px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
}
.ab_why-item h3{
    font-size:22px;
    line-height:1.3;
    font-weight:600;
    color:#222;
    margin:0 0 12px;
}
.ab_why-item p{
line-height: 24px;
    margin: 0;
    padding-right: 50px;
}

.ab_why-no-border{
    border-right:none;
}
.ab_why .row > div:nth-child(n+4){
    margin-top:40px;
}
@media(max-width:991px){

.ab_why{
padding:60px 0;
}
.ab_why-item{
padding:20px 20px 40px;
border-right:none;
border-bottom:1px dashed #ccc;
min-height:auto;
}
.ab_why .row > div:nth-child(n+4){
margin-top:0;
}
.ab_why-number{
font-size:38px;
}
.ab_why-item h3{
font-size:22px;
}
.ab_why-item p{
font-size:16px;
max-width:100%;
}

}

@media(max-width:576px){

.ab_why-item{
padding:20px 15px 30px;
}

}
.lineCenter{
    text-align: center;
    width: 100%;
}

/* ********************* */

.ab-team{
    padding:90px 0;
    background:#fff;
}

.ab-team-card{
    text-align:center;
    transition:.4s ease;
}

.ab-team-card:hover{
    transform:translateY(-10px);
}

.ab-team-image{
    position:relative;
    height:280px;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:18px;
    transition:.4s ease;
}

.ab-team-blue{
    background:#b8caee;
}

.ab-team-yellow{
    background:#efe2b5;
}

.ab-team-purple{
    background:#cfd0f4;
}

.ab-team-pink{
    background:#f0d0d2;
}

.ab-team-green{
    background:#d5ece5;
}

.ab-team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(100%) brightness(.92);
    transform:scale(1);
    transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.ab-team-card:hover .ab-team-image{
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.ab-team-card:hover .ab-team-image img{
    filter:grayscale(0%) brightness(1);
    transform:scale(1.08);
}

.ab-team-social{
    position:absolute;
    bottom:0;
    right:0;
    width:46px;
    height:46px;
    background:#e5edf9;
    border-radius:14px 0 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#18305f;
    font-size:24px;
    transition:.4s ease;
}

.ab-team-card:hover .ab-team-social{
    background:#132857;
    color:#fff;
    transform:translate(-5px,-5px);
}

.ab-team-content h3{
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    transition: .3s ease;
}

.ab-team-card:hover .ab-team-content h3{
    color:#132857;
}

.ab-team-content p{
    font-size: 15px;
    margin: 1px 0 13px;
    color: #444;
}

.ab-team-content span{
    width:52px;
    height:3px;
    background:#ffd400;
    border-radius:30px;
    display:block;
    margin:auto;
    transition:.4s ease;
}

.ab-team-card:hover .ab-team-content span{
    width:80px;
}

/* bottom section */

.ab-team-box{
    margin-top:60px;
    background:#eceef4;
    padding:28px 35px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.4s ease;
}

.ab-team-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.ab-team-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.ab-team-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#d7dcf3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#333;
    transition:.4s ease;
}

.ab-team-box:hover .ab-team-icon{
    transform:rotate(10deg) scale(1.1);
}

.ab-team-left h4{
    margin:0 0 5px;
    font-size:22px;
    color:#222;
}

.ab-team-left p{
    margin:0;
    color:#666;
    font-size:16px;
}

.ab-team-btn{
    background:#132857;
    color:#fff;
    padding:8px 8px 8px 28px;
    border-radius:50px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:18px;
    font-weight:600;
    transition:.4s ease;
}

.ab-team-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

.ab-team-btn i{
    width:42px;
    height:42px;
    background:#ffd400;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    transition:.4s ease;
}

.ab-team-btn:hover i{
    transform:rotate(45deg);
}

/* responsive */

@media(max-width:991px){

.ab-team{
    padding:60px 0;
}

.ab-team-box{
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
}

}

@media(max-width:576px){

.ab-team-image{
    height:220px;
}

.ab-team-content h3{
    font-size:18px;
}

.ab-team-left{
    flex-direction:column;
    align-items:flex-start;
}

}

/* ******************  SERVICES STYLES  ********************** */

.sersec-one{
    padding:10px 0;
    background:#fff;
}

.sersec-one-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.sersec-one-card{
    height:330px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:.5s ease;
}

.sersec-one-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}


/* background cards */

.sersec-bg-one,
.sersec-bg-two,
.sersec-bg-three,
.sersec-bg-four{
    background-image: url(../images/services/27001-img1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* replace with your actual image paths */

.sersec-bg-one{
    background: #e1f3d6;
    position: relative;
}
.sersec-bg-one::before{
    content: "";
    background-image: url(../images/services/sr-shape1.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.sersec-bg-two{
    background: #fceeb6;
    position: relative;
}
.sersec-bg-two::before{
    content: "";
    background-image: url(../images/services/sr-shape2.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.sersec-bg-three{
    background: #f6d0b6;
    position: relative;
}
.sersec-bg-three::before{
    content: "";
    background-image: url(../images/services/sr-shape3.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.sersec-bg-four{
    background: #b1cef9;
    position: relative;
}
.sersec-bg-four::before{
    content: "";
    background-image: url(../images/services/sr-shape4.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

/* light overlay */

.sersec-one-bg-one:before,
.sersec-one-bg-two:before,
.sersec-one-bg-three:before,
.sersec-one-bg-four:before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.12);
    transition:.5s;
}
/* text content */

.sersec-one-content{
    position:absolute;
    left:34px;
    right:34px;
    bottom:35px;
    z-index:2;
}

.sersec-one-content h3{
    font-size: 31px;
    line-height: 38px;
    margin: 0 0 15px;
    color: #102c63;
    font-weight: 600;
    transition: .4s;
}

.sersec-one-content p{
    font-size: 17px;
    line-height: 23px;
    color: #1d355f;
    margin: 0;
    font-weight: 500;
}


/* image cards */

.sersec-one-image{
    position:relative;
}

.sersec-one-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s ease;
}
.sr-who-top{
    margin-bottom: 65px;
}
.sersec-one-image:hover img{
    transform:scale(1.08);
}
.sersec-one-image:hover img{
    filter:grayscale(0%);
}


/* hover text effect */

.sersec-one-card:hover .sersec-one-content h3{
    transform:translateY(-5px);
}


/* responsive */

@media(max-width:1199px){

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

}

@media(max-width:767px){

.sersec-one-grid{
    grid-template-columns:1fr;
}

.sersec-one-card{
    height:320px;
}

.sersec-one-content{
    left:25px;
    right:25px;
    bottom:25px;
}

.sersec-one-content h3{
    font-size:24px;
}

.sersec-one-content p{
    font-size:15px;
}

}

/* *************** */
.sersec-two-left{
    padding-right:60px;
}
.sersec-two-left p{
    font-size: 20px;
    line-height: 31px;
    max-width: 620px;
    margin: 0;
    color: #fff;
    margin-top: 22px;
}

/* timeline */

.sersec-two-timeline{
    position:relative;
    padding-left:100px;
}

.sersec-two-line{
    position:absolute;
    left:30px;
    top:0;
    width:1px;
    height:100%;
    border-left:1px dashed rgba(255,255,255,.4);
}

.sersec-two-item{
    display:flex;
    position:relative;
    margin-bottom:33px;
}

.sersec-two-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#0054f4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
    font-weight:400;
    color:#fff;
    position:absolute;
    left:-95px;
    z-index:2;
    box-shadow:
    0 0 0 10px rgba(37,99,255,.20);
}

.sersec-two-content h4{
    font-size:20px;
    font-weight:600;
    color:#7ea8ff;
    margin:0 0 6px;
}

.sersec-two-content p{
    font-size:17px;
    line-height:23px;
    color:#edf1ff;
    margin:0;
    max-width:520px;
}

.sersec-two-item:last-child{
    margin-bottom:0;
}

/* hover */

.sersec-two-item{
    transition:.4s;
}
/* 
.sersec-two-item:hover{
    transform:translateX(8px);
} */

.sersec-two-item:hover .sersec-two-number{
    transform:scale(1.1);
    background:#3b82f6;
}

.sersec-two-number{
    transition:.4s;
}

/* responsive */

@media(max-width:991px){

.sersec-two{
    padding:70px 0;
}

.sersec-two-left{
    padding-right:0;
    margin-bottom:60px;
}

}

@media(max-width:767px){

.sersec-two-timeline{
    padding-left:80px;
}

.sersec-two-number{
    width:50px;
    height:50px;
    font-size:20px;
    left:-80px;
}

.sersec-two-line{
    left:24px;
}

.sersec-two-content h4{
    font-size:18px;
}

.sersec-two-content p{
    font-size:15px;
}

}
.sr_why-item {
    padding: 0;
    min-height: 180px;
    margin-top: 30px;
    padding-right: 70px;
}
.ab_why-number img{
    margin-bottom: 23px;
        width: 70px;
}
.sr_why-item h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px;
}
.ab-head-right img {
    float: right;
}

/* RIght side nav CSS */

.bkgNav{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,.5);
    z-index:99999;
    transition:.5s;
    display:flex;
    justify-content:flex-end;
}

.bkgNav.active{
    right:0;
}

.bkgNav__panel{
    width:1000px;
    height:100%;
    background:#fff;
    display:grid;
    grid-template-columns:350px 1fr;
    overflow:auto;
}

.bkgNav__left{
    background:#f4f6fd;
    position: relative;
}
.bkgNav__pad{
    padding:35px;
}
.bkgNav__left::before{
    content: "";
    background-image: url(../images/nav-shape.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.bkgNav__feature h4{
    font-size: 17px;
    margin-bottom: 5px;
}
.bkgNav__feature p {
    font-size: 15px;
    line-height: 20px;
        margin-bottom: 0;
}
.bkgNav__title{
    font-size: 35px;
    line-height: 38px;
    margin: 10px 0;
    font-weight: 500;
    margin-bottom: 9px;
}

.bkgNav__title span{
color:#2958ff;
}

.bkgNav__desc{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 25px;
}

.bkgNav__line{
    width:60px;
    height:3px;
    background:#ffd600;
    margin-bottom:25px;
}

.bkgNav__feature{
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #c1bebe;
}

.bkgNav__circle{
    width: 50px;
    height: 50px;
    background: #e8efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0054f4;
    font-size: 20px;
}

.bkgNav__privacy{
    margin-top: 35px;
    background: #dde3f5;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.bkgNav__right{
    padding:35px;
    position:relative;
}

.bkgNav__close{
    position: absolute;
    right: 25px;
    top: 0px;
    font-size: 35px;
    cursor: pointer;
}

.bkgNav__formTitle{
font-size:35px;
margin-bottom:30px;
}

.bkgNav__field{
margin-bottom:14px;
}

.bkgNav__field label{
    display: block;
    margin-bottom: 2px;
    font-weight: 400;
    font-size: 15px;
}

.bkgNav__field input,
.bkgNav__field select,
.bkgNav__field textarea{
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 0 13px;
    font-size: 15px;
}

.bkgNav__field textarea{
    height:100px;
    padding-top:15px;
    resize:none;
}

.bkgNav__submit{
    width:100%;
    height:60px;
    border:none;
    background:#2958ff;
    color:#fff;
    font-size:18px;
    border-radius:50px;
    cursor:pointer;
}

/* .bkgNav__openBtn{
    padding:14px 30px;
    background:#2958ff;
    color:#fff;
    border:none;
    cursor:pointer;
    border-radius:30px;
} */

@media(max-width:991px){

.bkgNav__panel{
    grid-template-columns:1fr;
    width:100%;
}

.bkgNav__left{
display:none;
}

}
.nav-shape{
    position: absolute;
}
.bkgNav__icon {
    background: #fff;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    font-size: 36px;
    color: #0054f4;
    margin-bottom: 12px;
}
.bkgNav__privacy h4{
    font-size: 25px;
    margin-bottom: 2px;
    letter-spacing: -1px;
}
.bkgNav__privacy p{
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* ******************** */

.brdBtm{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 4px;
    margin-top: 25px;
    position: relative;
    gap: 40px;
}

.brdBtm__item{
    position:relative;
}

.brdBtm__item:not(:last-child):after{
    content:"";
    position:absolute;
    top:50%;
    right:30px;
    transform:translateY(-50%);
    width:1px;
    height:40px;
    border-right:1px dashed
    rgba(255,255,255,.5);
}

.brdBtm__label{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 4px;
}

.brdBtm__value{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

@media(max-width:768px){

.brdBtm__item:after{
    display:none;
}

.brdBtm__item{
    padding-left:0;
}

}

.LeftNav{
    padding:70px 0;
    background:#eef1fb;
}

.LeftNav__wrapper{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:20px;
    align-items:start;
}

.LeftNav__sidebar{
position:sticky;
/* header height + little space */
top:100px;
}

.LeftNav__menu{
    padding:30px;
    background:#fff;
    border-radius:16px;
    list-style:none;
    margin:0;
}

.LeftNav__menu li{
    margin-bottom:24px;
}

.LeftNav__link{
    text-decoration: none;
    color: #888888;
    font-size: 18px;
    display: block;
    position: relative;
    transition: .3s;
    line-height: 24px;
    font-weight: 500;
}

.LeftNav__link.active{
    color: #223aa5;
}

.LeftNav__link.active:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 60px;
    height: 4px;
    background: #ffd000;
}

.LeftNav__content{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.LeftNav__card{
    background:#fff;
    padding:20px 25px;
    border-radius:16px;
    scroll-margin-top:120px;
}
.LeftNav__card h2{
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 600;
}
.LeftNav__card p{
    line-height: 24px;
    margin-bottom: 0;
    font-size: 16px;
    margin-top: 10px;
}
.LeftNav__card h3{
    line-height: 26px;
    margin-bottom: 0;
    font-size: 17px;
    margin-top: 13px;
    font-weight: 500;
    color: #000;
    position: relative;
    top: 4px;
}
.LeftNav__card ul {
    padding-left: 7px;
    line-height: 31px;
    margin-bottom: 0;
}
.LeftNav__card ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
.LeftNav__card ul li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url(../images/listIco.svg) no-repeat center;
    background-size: contain;
}
.rdbg {
    background: #fff3f4;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #f6e2e4;
    border-radius: 11px;
}
.rdbg h4{
    color: #900a15;
    font-weight: 500;
    font-size: 20px;
}
.rdbg h4{
    color: #900a15;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 12px;
}
.rdbg h5{
     font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
}
.rdbg h6{
    display: flex;
    font-weight: 400;
    font-size: 16px;
}
.rdbg h6 img{
    width: 20px;
    margin-right: 7px;
}
.LeftNav__card .rdbg ul li {
    list-style: none;
    position: relative;
    padding-left: 16px; 
    line-height: 22px;
    margin-bottom: 9px;
}
.LeftNav__card .rdbg ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 7px;
    width: 7px;
    height: 7px;
    background: url(../images/listTwo.svg) no-repeat center;
    background-size: contain;
}
.LeftNav__card .rdbg ul {
    padding-left: 27px;
    margin-bottom: 20px;
}
.blueBg {
    background: #f0f6fe;
    padding: 15px;
    margin-top: 16px;
    border: 1px solid #d4e5fb;
    border-radius: 11px;
}
.blueBg h4{
    color: #0054f4;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 16px;
}
.blueBg h5 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
}
.LeftNav__card .blueBg ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    line-height: 22px;
    margin-bottom: 11px;
}
.LeftNav__card .blueBg ul li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url(../images/listIco-blue.svg) no-repeat center;
    background-size: contain;
}
#smRed{
    margin-bottom: 0 !important;
    padding-left: 2px;
}
.pcBg1{
    background: #ffeeee;
    border: 1px solid #f8dcdc;
}
.pcBg2{
    background: #fff5e8;
    border: 1px solid #ffe6c6;
}
.pcBg3{
    background: #fffae3;
    border: 1px solid #f7efc9;
}
.pcBg4{
    background: #f8f2fe;
    border: 1px solid #f0e4fd;
}
.pcBg5{
    background: #eafdf1;
    border: 1px solid #d8f1e1;
}
.pcBg6{
    background: #e4feff;
    border: 1px solid #c9f2f4;
}

.LeftNav__card .blueBg ul li:last-child {
    margin-bottom: 0px;
}
.LeftNav__card .rdbg ul li:last-child {
    margin-bottom: 0px;
}
.LeftNav__card ul li:last-child {
    margin-bottom: 0px;
}
.app_row {
    margin-top: 20px;
}
.app_row__info {
    background: #132850;
    border-radius: 13px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
}
.app_row__item {
    flex: 1;
    min-width: 180px;
}
.app_row__label {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 0px;
    font-weight: 400;
}
.app_row__value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 22px;
}

.app_row__divider {
    width: 1px;
    height: 50px;
    border-right: 1px dotted #7c8dad;
}
@media (max-width: 768px) {
    .app_row__info {
        flex-direction: column;
        align-items: flex-start;
    }
    .app_row__divider {
        width: 100%;
        height: 1px;
    }
    .app_row__value {
        font-size: 20px;
    }
}

@media(max-width:991px){

.LeftNav__wrapper{
    grid-template-columns:1fr;
}

.LeftNav__sidebar{
    position:relative;
    top:0;
}

}
.blue-ico{
    color: #2958ff !important;
}

/* *************************************** */

    .vr-cert__wrapper{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:20px;
    }

    .vr-cert__card{
      border-radius:20px;
      position:relative;
    }

    .vr-cert__card--purple{
      background:#ddd0f0;
    }

    .vr-cert__card--green{
      background:#dfe8c7;
    }

    .vr-cert__card--peach{
      background:#efd8cf;
    }

    .vr-cert__icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255 255 255 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    margin-left: 28px;
    margin-top: 25px;
    }

    .vr-cert__icon svg{
      width:24px;
      height:24px;
    }

    .vr-cert__title{
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 9px;
    margin-left: 29px;  
    }

    .vr-cert__desc{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 26px;
    padding: 0px 30px;
    }

    .vr-cert__images{
        display: flex;
        gap: 7px;
        background: #fff;
        padding: 7px;
        border-radius: 16px 16px 0px 0px;
    }

    .vr-cert__img-box{
      flex:1;
      overflow:hidden;
      border-radius:10px;
      height:170px;
    }

    .vr-cert__img-box img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .vr-cert__shape{
      position:absolute;
      right:-30px;
      bottom:80px;
      width:180px;
      opacity:0.08;
      pointer-events:none;
    }

    @media(max-width:991px){

      .vr-cert__wrapper{
        grid-template-columns:1fr;
      }

      .vr-cert__title{
        font-size:28px;
      }

      .vr-cert__desc{
        font-size:16px;
      }

      .vr-cert__img-box{
        height:140px;
      }
    }
.vr-cert {
    margin-top: 45px;
}
.vr-cert__icon img{
    width: 40px;
}

/* ********************* */
.why-cert__wrapper{
margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 70px 0px 80px;
}

/* LEFT SIDE */
.why-cert__left{
  width:42%;
}

.why-cert__image-wrapper{
  position:relative;
  width:100%;
  max-width:450px;
  margin:auto;
}

.why-cert__image-wrapper::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border: 12px solid #fff;
    background: none;
}

.why-cert__main-image{
  width:100%;
  border-radius:50%;
  position:relative;
  z-index:2;
  object-fit:cover;
}

/* TAGS */
.why-cert__tag{
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 5;
    white-space: nowrap;
}

.why-cert__tag-icon{
  color:#3f5cff;
  font-size:18px;
}

.why-cert__tag--top-left{
    top: 80px;
    left: -100px;
}

.why-cert__tag--top-right{
    top: 10px;
    right: -30px;
}

.why-cert__tag--bottom-left{
    bottom: 60px;
    left: -60px;
}

.why-cert__tag--bottom-right{
    bottom: 120px;
    right: -50px;
}

/* RIGHT SIDE */
.why-cert__right{
  width:58%;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.why-cert__card{
  background:#fff;
  border-radius:18px;
  padding:24px;
  min-height:320px;
}

.why-cert__number{
    font-size: 50px;
    font-weight: 500;
    color: #e7eaf0;
    display: block;
    margin-bottom: 5px;
}

.why-cert__title{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 18px;
}

.why-cert__line{
  width:30px;
  height:3px;
  background:#f2b300;
  display:block;
  margin-bottom:20px;
}

.why-cert__desc{
    font-size: 16px;
    line-height: 24px;
}

/* RESPONSIVE */
@media(max-width:1100px){

  .why-cert__wrapper{
    flex-direction:column;
  }

  .why-cert__left,
  .why-cert__right{
    width:100%;
  }

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

@media(max-width:767px){

  .why-cert__right{
    grid-template-columns:1fr;
  }

  .why-cert__tag{
    position:static;
    margin-bottom:12px;
  }

  .why-cert__image-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .why-cert__main-image{
    border-radius:20px;
  }

  .why-cert__image-wrapper::before{
    display:none;
  }

  .why-cert__card{
    min-height:auto;
  }
}

/* ************************************* */

.vr-banner{
    padding: 0px 0;
    background: #13233e;
    position: relative;
}
.vr-banner::before{
    content: "";
    background: url(../images/vr-banner.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80% auto;
}
.vr-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

/* LEFT CONTENT */

.vr-info-left {
  width: 50%;
}

.vr-info-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.vr-info-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 35px;
    margin-top: 35px;
}

.vr-info-stat {
  padding: 18px 24px;
  border-right: 2px dotted #ddd;
  border-bottom: 2px dotted #ddd;
  display: flex;
  align-items: center;
  gap: 18px;
}

.vr-info-stat:nth-child(2n) {
  border-right: none;
}

.vr-info-stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-info-stat-icon svg {
  width: 42px;
  height: 42px;
  stroke: #6d7993;
}

.vr-info-stat-content h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
}

.vr-info-stat-content h2 {
    font-size: 40px;
    color: #2f5cff;
    font-weight: 600;
    margin-bottom: 0;
}

/* FEATURES */

.vr-info-features {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.no-brd{
    border-bottom: none;
}
.vr-info-feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 15px;
    border-right: 1px solid #ddd;
}

.vr-info-feature:last-child {
  border-right: none;
}

.vr-info-feature svg {
  width: 34px;
  height: 34px;
  stroke: #111;
  flex-shrink: 0;
}

.vr-info-feature p {
    margin-bottom: 0;
    line-height: 23px;
}

/* RIGHT SIDE */

.vr-info-right {
  width: 45%;
  position: relative;
}

.vr-info-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 615px;
}

.vr-info-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* BOTTOM CARD */

.vr-info-bottom-card {
  position: absolute;
  bottom: 34px;
  left: 35px;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 24px 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.vr-info-bottom-card h3 {
    font-size: 22px;
    line-height:28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.vr-info-check-list {
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0;
}

.vr-info-check-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
    color: #090909;
}

.vr-info-check-list li:last-child {
  border-bottom: none;
}

.vr-info-check-list svg {
  width: 18px;
  height: 18px;
  stroke: #111;
  flex-shrink: 0;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .vr-info {
    flex-direction: column;
  }

  .vr-info-left,
  .vr-info-right {
    width: 100%;
  }

  .vr-info-title {
    font-size: 48px;
  }

  .vr-info-top-card {
    left: 20px;
  }
}

@media (max-width: 768px) {

  .vr-info-title {
    font-size: 38px;
  }

  .vr-info-stats {
    grid-template-columns: 1fr;
  }

  .vr-info-stat {
    border-right: none !important;
  }

  .vr-info-features {
    flex-direction: column;
  }

  .vr-info-feature {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
  }

  .vr-info-feature:last-child {
    border-bottom: none;
  }

  .vr-info-top-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .vr-info-image-wrap {
    height: auto;
  }

  .vr-info-bottom-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }
}

/* ***************************** */

.cert-ver-head {
  margin-bottom: 17px;
      margin-top: 70px;
}

.cert-ver-head h2,
.cert-ver-title {
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 5px;
}

.cert-ver-title {
  margin-bottom: 17px;
}

.cert-ver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 45px;
}

.cert-ver-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.cert-ver-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 27px;
    min-height: 200px;
}
.cert-ver-green {
  background: #e3f2da;
  position: relative;
}
.cert-ver-green::before {
    content: "";
    background: url(../images/cert-vbg1.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 75px auto;
}

.cert-ver-yellow {
  background: #faf0c7;
  position: relative;
}
.cert-ver-yellow::before {
    content: "";
    background: url(../images/cert-vbg2.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 75px auto;
}
.cert-ver-orange  {
  background: #ffe5d5;
  position: relative;
}
.cert-ver-orange::before{
    content: "";
    background: url(../images/cert-vbg3.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 75px auto;
}
.cert-ver-blue {
    background: #e6eefd;
    position: relative;
}
.cert-ver-blue::before {
    content: "";
    background: url(../images/cert-vbg4.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 75px auto;
}
.cert-ver-pink {
    background: #f6e3eb;
    position: relative;
}
.cert-ver-pink::before {
    content: "";
    background: url(../images/cert-vbg5.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 75px auto;
}
.cert-ver-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.cert-ver-badge span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-ver-green .cert-ver-badge span {
  background: #c1dcaf;
  border: 1px solid #89a96b;
  color: #668246;
}

.cert-ver-yellow .cert-ver-badge span {
  background: #ecdb9d;
  border: 1px solid #c3a93c;
  color: #8d7316;
}

.cert-ver-orange .cert-ver-badge span {
  background: #e9b999;
  border: 1px solid #cf9155;
  color: #bb7536;
}

.cert-ver-blue .cert-ver-badge span {
  background: #a5bee7;
  border: 1px solid #6f8de0;
  color: #0e3d96;
}

.cert-ver-pink .cert-ver-badge span {
  background: #e2a1bd;
  border: 1px solid #cb7da2;
  color: #a4436f;
}
.cert-ver-badge p {
    padding: 5px 15px 5px 23px;
    border-radius: 0px 30px 30px 0px;
    margin-left: -15px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.cert-ver-green .cert-ver-badge p {
  background: #799867;
}

.cert-ver-yellow .cert-ver-badge p {
  background: #b1973d;
}

.cert-ver-orange .cert-ver-badge p {
  background: #bb7347;
}

.cert-ver-blue .cert-ver-badge p {
  background: #5784da;
}

.cert-ver-pink .cert-ver-badge p {
  background: #c26a8f;
}
.cert-ver-content {
  position: relative;
  z-index: 2;
}

.cert-ver-content p {
    font-size: 16px;
    line-height: 24px;
        margin-bottom: 0;
}

.cert-ver-content a {
  text-decoration: none;
  font-weight: 500;
}


.cert-ver-green .cert-ver-content a {
  color: #245dff;
  text-decoration: underline;
}
.cert-ver-green .cert-ver-content a:hover {
  text-decoration: none;
}

.cert-ver-blue .cert-ver-content a {
  color: #245dff;
  text-decoration: underline;
}
.cert-ver-blue .cert-ver-content a:hover {
  text-decoration: none;
}

.cert-ver-pink .cert-ver-content a {
  color: #cc739d;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .cert-ver-grid {
    grid-template-columns: 1fr;
  }

  .cert-ver-bottom {
    grid-template-columns: 1fr;
  }

  .cert-ver-head h2,
  .cert-ver-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {


  .cert-ver-head h2,
  .cert-ver-title {
    font-size: 34px;
  }

  .cert-ver-card {
    padding: 24px;
    min-height: auto;
  }

  .cert-ver-content p {
    font-size: 16px;
  }
}

/* ***************************/

.wh-cert {
    width: 100%;
    margin: auto;
    background: #edf1f9;
}
.wh-cert-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 52px;
}

.wh-cert-head h2 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -2px;
  color: #161616;
}
.wh-cert-text {
  max-width: 420px;
  padding-top: 40px;
}
.wh-cert-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.wh-cert-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 0.98fr;
  gap: 20px;
}
.wh-cert-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wh-cert-card {
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.wh-cert-card h3 {
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.wh-cert-card p {
  margin-bottom: 0;
}
.wh-cert-blue {
  background: linear-gradient(135deg, #7287f3, #627be7);
  color: #fff;
}
.wh-cert-blue::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.wh-cert-dark {
  background: linear-gradient(135deg, #1f315d, #16274f);
  color: #fff;
}
.wh-cert-dark::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.wh-cert-center {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
}
.wh-cert-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wh-cert-badge {
    position: absolute;
    bottom: 20px;
    background: #fff;
    backdrop-filter: blur(8px);
    padding: 9px 23px;
    border-radius: 40px;
    font-size: 18px;
    width: 240px;
    text-align: center;
    margin-left: 20px;
    font-weight: 500;
}
.wh-cert-badge span {
  color: #2d63ff;
}
.wh-cert-right {
  background: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wh-cert-right-top {
  padding: 28px 28px 22px;
      background: #fff;
}
.wh-cert-right-top h3 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 11px;
    font-weight: 500;
}
.wh-cert-right-top p {
  font-size: 16px;
}
.wh-cert-right-image {
  position: relative;
  flex: 1;
}
.wh-cert-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wh-cert-vertical {
position: absolute;
    right: 20px;
    bottom: 30px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #fff;
    padding: 18px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 1100px) {
  .wh-cert-top {
    flex-direction: column;
    gap: 24px;
  }
  .wh-cert-text {
    padding-top: 0;
  }
  .wh-cert-grid {
    grid-template-columns: 1fr;
  }

  .wh-cert-center {
    min-height: 450px;
  }
  .wh-cert-head h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .wh-cert-head h2 {
    font-size: 38px;
    line-height: 1.15;
  }
  .wh-cert-tag p {
    font-size: 16px;
  }
  .wh-cert-text p,
  .wh-cert-card p,
  .wh-cert-right-top p {
    font-size: 15px;
  }
  .wh-cert-card,
  .wh-cert-right-top {
    padding: 24px;
  }
  .wh-cert-center {
    min-height: 360px;
  }
}

/* **************************** */

.cert-proc {
  width: 100%;
}

/* TABS */

.cert-proc-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.cert-proc-tab {
  border: 1px solid #d8deea;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 68px;
  text-align: left;
}

.cert-proc-tab:hover {
  transform: translateY(-2px);
  background: #4259c9;
  border-color: #4259c9;
  color:#fff;
}

.cert-proc-tab:hover .cert-proc-tab-icon img {
  filter: brightness(0) invert(1);
}

.cert-proc-tab.active {
  background: #4259c9;
  border-color: #4259c9;
}
.cert-proc-tab.active .cert-proc-tab-icon img {
  filter: brightness(0) invert(1);
}

.cert-proc-tab-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-proc-tab-icon svg {
  width: 24px;
  height: 24px;
  stroke: #2b5dff;
}

.cert-proc-tab.active .cert-proc-tab-icon svg {
  stroke: #fff;
}

.cert-proc-tab span {
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
}

.cert-proc-tab.active span {
  color: #fff;
}

/* CONTENT BOX */

.cert-proc-content-wrap {
  background: #f5f7fc;
  border-radius: 14px;
  padding: 0px 12px 0;
  border: 1px solid #eaeff6;
}

.cert-proc-content {
  display: none;
}

.cert-proc-content.active {
  display: block;
}

/* GRID */

.cert-proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cert-proc-item {
  padding: 30px 22px 15px;
  border-right: 1px dashed #d2d7e0;
  border-bottom: 1px dashed #d2d7e0;
}

.cert-proc-item:nth-child(3n) {
  border-right: none;
}

.cert-proc-item:nth-last-child(-n+2) {
  border-bottom: none;
}

/* STEP */

.cert-proc-step {
  font-size: 14px;
  color: #3b3b3b;
  margin-bottom: 18px;
}

.cert-proc-step span {
    width: 34px;
    height: 4px;
    background: #f0cb00;
    display: block;
    margin-bottom: 8px;
    margin-top: 4px;
}

/* TITLES */

.cert-proc-item h3 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cert-proc-item h3 small {
  font-size: 16px;
  font-weight: 500;
}

.cert-proc-sub {
  margin-bottom: 22px;
}

.cert-proc-sub:last-child {
  margin-bottom: 0;
}

.cert-proc-sub h4 {
font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.cert-proc-sub p {
 
}

/* SIMPLE CONTENT */

.cert-proc-simple {
  padding: 15px 0px;
}

.cert-proc-simple h3 {
  font-size: 28px;
  color: #22304f;
  margin-bottom: 16px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .cert-proc-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cert-proc-item:nth-child(3n) {
    border-right: 1px dashed #d2d7e0;
  }

  .cert-proc-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .cert-proc-tabs {
    grid-template-columns: 1fr;
  }

  .cert-proc-grid {
    grid-template-columns: 1fr;
  }

  .cert-proc-item {
    border-right: none !important;
    border-bottom: 1px dashed #d2d7e0 !important;
    padding: 0 0 30px;
    margin-bottom: 30px;
  }

  .cert-proc-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
  }

  .cert-proc-content-wrap {
    padding: 24px;
  }

  .cert-proc-item h3 {
    font-size: 18px;
  }

  .cert-proc-sub p {
    font-size: 14px;
  }
}

.app-com {
  width: 100%;
  margin: auto;
}

/* GRID */

.app-com-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* COLUMN */

.app-com-col {
  padding: 20px 32px 10px;
  border-right: 1px dashed #cfd4de;
}

.app-com-col:last-child {
  border-right: none;
}

/* HEAD */

.app-com-head {
  margin-bottom: 38px;
}

.app-com-head h2 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 7px;
    font-weight: 500;
}

.app-com-head span {
    width: 34px;
    height: 4px;
    background: #f0c400;
    border-radius: 10px;
    display: block;
}

/* ITEM */

.app-com-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.app-com-item:last-child {
  margin-bottom: 0;
}

/* NUMBER */

.app-com-number {
    width: 33px;
    height: 33px;
    min-width: 33px;
    border-radius: 50%;
    background: #8cb1f7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

/* CHECK ICON */

.app-com-check svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* CONTENT */

.app-com-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}

.app-com-content p {
    font-size: 16px;
    margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

  .app-com-grid {
    grid-template-columns: 1fr;
  }

  .app-com-col {
    border-right: none;
    border-bottom: 1px dashed #cfd4de;
    padding: 24px 0;
  }

  .app-com-col:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {


  .app-com-head h2 {
    font-size: 24px;
  }

  .app-com-content h3 {
    font-size: 18px;
  }

  .app-com-content p {
    font-size: 15px;
  }

  .app-com-item {
    gap: 16px;
  }

  .app-com-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 20px;
  }
}

.iso-aud {
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding: 5px 0;
  font-family: "Inter", sans-serif;
}

.iso-aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
}

/* COLUMN */

.iso-aud-col {
  padding: 10px 42px 10px 32px;
  border-right: 1px dashed #cfd4dd;
}

.iso-aud-col:last-child {
  border-right: none;
}

/* HEAD */

.iso-aud-head {
  margin-bottom: 18px;
}

.iso-aud-head h2,
.iso-aud-title h2 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 7px;
    font-weight: 500;
}

.iso-aud-head span,
.iso-aud-title span {
  width: 30px;
  height: 4px;
  border-radius: 10px;
  background: #f0c400;
  display: block;
}

/* TITLE WITH ICON */

.iso-aud-title {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 18px;
}

.iso-aud-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
}

.iso-aud-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1f1f1f;
}

/* TEXT */

.iso-aud-text {

}

/* LIST */

.iso-aud-list {
  margin-top: 38px;
}

.iso-aud-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.iso-aud-item:last-child {
  margin-bottom: 0;
}

/* CHECK */

.iso-aud-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #8faaf2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-aud-check svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.iso-aud-item h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

/* BLOCK */

.iso-aud-block {
  margin-bottom: 38px;
}

.iso-aud-block:last-child {
  margin-bottom: 0;
}

/* STATS */

.iso-aud-stats {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.iso-aud-stat {
  flex: 1;
  min-height: 130px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
      gap: 6px;
}

.iso-aud-stat h3 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0px;
}

.iso-aud-stat p {
  font-size: 18px;
  line-height: 1.2;
}

/* COLORS */

.iso-aud-yellow {
  background: #f6d200;
}

.iso-aud-yellow h3,
.iso-aud-yellow p {
      margin-bottom: 0;
}

.iso-aud-blue {
  background: #315eea;
}

.iso-aud-blue h3,
.iso-aud-blue p {
  color: #fff;
      margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .iso-aud-grid {
    grid-template-columns: 1fr;
  }

  .iso-aud-col {
    border-right: none;
    border-bottom: 1px dashed #cfd4dd;
    padding: 28px 0;
  }

  .iso-aud-col:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {

  .iso-aud-head h2,
  .iso-aud-title h2 {
    font-size: 24px;
  }

  .iso-aud-text {
    font-size: 15px;
  }

  .iso-aud-item h3 {
    font-size: 17px;
  }

  .iso-aud-stats {
    flex-direction: column;
  }

  .iso-aud-stat {
    min-height: 110px;
  }

  .iso-aud-stat h3 {
    font-size: 34px;
  }
}
/* ********************* */

.egr-tab-top{
    margin-bottom:25px;
}

.egr-tab-feature{
    text-align:center;
    padding:0 40px;
    position:relative;
}

.egr-tab-feature::after{
    content:"";
    position:absolute;
    top:20px;
    right:0;
    width:1px;
    height:150px;
    border-right:1px dashed #d2d7e4;
}

.egr-tab-feature-last::after{
    display:none;
}

.egr-tab-icon{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: .4s;
}

.egr-tab-icon i{
    font-size:38px;
}

.egr-tab-icon-blue{
    color:#2d62ff;
}

.egr-tab-icon-green{
    color:#31c484;
}

.egr-tab-icon-orange{
    color:#d98a42;
}

.egr-tab-feature:hover .egr-tab-icon{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.egr-tab-feature h3{
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 7px;
    font-weight: 500;
}

/* stats box */
.egr-tab {
    margin-top: 20px;
    margin-bottom: 30px;
}
.egr-tab-stats{
    background: #fff;
    border: 1px solid #d7dff0;
    border-radius: 14px;
    overflow: hidden;
    width: 95%;
    margin: 0 auto;
}

.egr-tab-stat{
text-align: center;
    padding: 20px;
    position: relative;
}

.egr-tab-stat::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    border-right:1px dashed #d2d7e4;
}

.egr-tab-stat-last::after{
    display:none;
}

.egr-tab-stat h4{
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.egr-tab-stat span{
    display: block;
    margin-top: 3px;
    font-size: 16px;
}

.egr-tab-blue{
    color:#2d62ff;
}

.egr-tab-green{
    color:#31c484;
}

.egr-tab-orange{
    color:#d98a42;
}

.egr-tab-cyan{
    color:#2c8db8;
}

/* hover effect */

.egr-tab-stat{
    transition:.4s;
}

.egr-tab-stat:hover{
    background:#fafcff;
}

.egr-tab-stat:hover h4{
    transform:scale(1.08);
}

.egr-tab-stat h4{
    transition:.4s;
}

/* responsive */

@media(max-width:991px){

.egr-tab{
    padding:70px 0;
}

.egr-tab-feature{
    padding:0 15px;
    margin-bottom:40px;
}

.egr-tab-feature::after{
    display:none;
}

.egr-tab-stat::after{
    display:none;
}

}

@media(max-width:767px){

.egr-tab-icon{
    width:75px;
    height:75px;
}

.egr-tab-icon i{
    font-size:30px;
}

.egr-tab-feature h3{
    font-size:20px;
}

.egr-tab-stat h4{
    font-size:42px;
}

}

/* **************************** */

.ci-tab{
    padding:30px;
    background:#f6f8fc;
}

.ci-tab-head{
    margin-bottom:40px;
}

.ci-tab-head h2{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 9px;
}

.ci-tab-head h2 span{
    color:#2d62ff;
}

.ci-tab-head p{

}

/* cards */

.ci-tab-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    transition:.4s ease;
}

.ci-tab-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.ci-tab-title{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:15px;
}

.ci-tab-icon{
    font-size:28px;
    color:#111;
    line-height:1;
}

.ci-tab-title h3{
    font-size:22px;
    font-weight:500;
    color:#1c315d;
    margin:0;
}

.ci-tab-title span{
    width:30px;
    height:4px;
    background:#f4c900;
    display:block;
    margin-top:10px;
}

.ci-tab-desc{
    margin-bottom:20px;
}

/* list */

.ci-tab-list{
    list-style:none;
    padding:0;
    margin:0;
}

.ci-tab-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #1c315d;
}

.ci-tab-list li:last-child{
    margin-bottom:0;
}

.ci-tab-list li i{
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #8faaf2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* hover effects */

.ci-tab-card:hover .ci-tab-title span{
    width:55px;
}

.ci-tab-title span{
    transition:.4s ease;
}

.ci-tab-card:hover .ci-tab-icon{
    transform:rotate(8deg);
}

.ci-tab-icon{
    transition:.4s ease;
}

.ci-tab-list li{
    transition:.3s ease;
}

.ci-tab-list li:hover{
    padding-left:4px;
}

/* responsive */

@media(max-width:991px){

.ci-tab{
    padding:70px 0;
}

.ci-tab-card{
    padding:30px;
}

}

@media(max-width:767px){

.ci-tab-head h2{
    font-size:24px;
}

.ci-tab-head p{
    font-size:16px;
}

.ci-tab-card{
    padding:25px;
}

.ci-tab-title h3{
    font-size:20px;
}

.ci-tab-list li{
    font-size:16px;
}

}

#us-proc-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

/* ***************************** */

.cm-tab{
    padding: 35px 30px;
}

/* labels */

.cm-tab-label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #1f1f1f;
    margin-bottom: 25px;
}

.cm-tab-label span{
    width:10px;
    height:12px;
}

.cm-tab-label-blue span{
    background:#2d62ff;
}

.cm-tab-label-cyan{
    margin-top:60px;
}

.cm-tab-label-cyan span{
    background:#2f8db9;
}

/* significance */

.cm-tab-significance{
    margin-bottom:50px;
}

.cm-tab-sign-card{
    padding-right:40px;
    position:relative;
}

.cm-tab-sign-card::after{
    content:"";
    position:absolute;
    top:20px;
    right:15px;
    width:1px;
    height:150px;
    border-right:1px dashed #d4d9e6;
}

.cm-tab-sign-last::after{
    display:none;
}

.cm-tab-sign-title{
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:17px;
}

.cm-tab-sign-title i{
    font-size:30px;
    color:#222;
    margin-top:4px;
}

.cm-tab-sign-title h3{
    margin: 0;
    font-size: 22px;
    line-height: 27px;
    font-weight: 500;
}

.cm-tab-line{
    width:30px;
    height:4px;
    background:#f3ca00;
    margin-top:8px;
}

.cm-tab-sign-card p{
    margin:0;
}

/* guideline cards */

.cm-tab-guide-card{
    background:#fff;
    border:1px solid #dce3f1;
    border-radius:18px;
    padding:25px 30px;
    height:100%;
    transition:.4s ease;
}

.cm-tab-guide-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.cm-tab-guide-title{
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:15px;
}

.cm-tab-guide-title i{
    font-size:28px;
}

.cm-tab-guide-title h4{
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.cm-tab-guide-card p{
    margin:0;
}

/* colors */

.cm-tab-guide-card:nth-child(1) i{
    color:#2d62ff;
}

.cm-tab-guide-card:nth-child(2) i{
    color:#2f8db9;
}

.cm-tab-guide-card:nth-child(3) i{
    color:#c42525;
}

/* prohibited */

.cm-tab-prohibited{
    margin-top:24px;
    border:1px solid #f2b4b4;
    border-radius:20px;
    padding:25px;
    background:#fff;
}

.cm-tab-prohibited-head{
    display:flex;
    align-items:center;
    gap:7px;
    margin-bottom:17px;
}

.cm-tab-prohibited-head i{
    font-size:32px;
    color:#b11b1b;
}

.cm-tab-prohibited-head h3{
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.cm-tab-prohibited-item{
display: flex;
    gap: 15px;
    align-items: baseline;
}

.cm-tab-prohibited-item i{
    color:#b11b1b;
    font-size:20px;
    margin-top:4px;
}

.cm-tab-prohibited-item p{
    margin:0;
}

.cm-tab-prohibited-border{
    padding-left:35px;
    border-left:1px dashed #d6d6d6;
}

/* responsive */

@media(max-width:991px){

    .cm-tab{
        padding:70px 0;
    }

    .cm-tab-sign-card{
        margin-bottom:40px;
        padding-right:0;
    }

    .cm-tab-sign-card::after{
        display:none;
    }

    .cm-tab-prohibited-border{
        border:none;
        padding-left:0;
        margin-top:25px;
    }
}

@media(max-width:767px){

    .cm-tab-guide-card{
        padding:25px;
    }

    .cm-tab-sign-title h3{
        font-size:20px;
    }

    .cm-tab-guide-title h4{
        font-size:18px;
    }

    .cm-tab-prohibited{
        padding:25px;
    }

    .cm-tab-prohibited-item{
        flex-direction:column;
        gap:10px;
    }
}
.cm-tab-guide-title img{
    width: 26px;
}
.cm-tab-prohibited-item img{
    position: relative;
    top: 4px;
    left: 5px;
}

/* ********.  *************************** */

.dw-tabs{
    padding:35px 25px;
}

.dw-tabs-card{
    background:#fff;
    border:1px solid #dce3ef;
    border-radius:20px;
    padding: 28px 34px 30px;
    height:100%;
    transition:.4s ease;
}

.dw-tabs-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* heading */

.dw-tabs-head{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.dw-tabs-head i{
    font-size:28px;
    color:#1f1f1f;
    margin-top:4px;
}

.dw-tabs-head h3{
    margin: 0;
    font-size: 22px;
    line-height: 23px;
    font-weight: 500;
}

.dw-tabs-head span{
    width:30px;
    height:4px;
    background:#f3ca00;
    display:block;
    margin-top:10px;
}

.dw-tabs-desc{
    margin-bottom:25px;
}

/* file formats */

.dw-tabs-files{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.dw-tabs-file{
    flex:1;
    min-height:120px;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.dw-tabs-file i{
    font-size:40px;
    margin-bottom:10px;
}
.dw-tabs-png{
    background:#eefdf2;
    border:1px solid #c8ffdb;
}

.dw-tabs-jpg{
    background:#fffbe5;
    border:1px solid #fef6bd;
}

.dw-tabs-svg{
    background:#fef4f5;
    border:1px solid #fce5e5;
}

.dw-tabs-file:hover{
    transform:translateY(-6px);
}

/* note */

.dw-tabs-note{
    font-size:17px;
    color:#2c2c2c;
    margin-bottom:25px;
}

/* button */

.dw-tabs-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 54px;
    border-radius: 10px;
    background: #2f5df4;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: .4s;
}

.dw-tabs-btn:hover{
    background:#1e49d6;
    color:#fff;
}

.dw-tabs-btn i{
    font-size:20px;
}

/* checklist */

.dw-tabs-list{
    list-style: none;
    padding: 0;
    margin: 25px 0 15px;
}

.dw-tabs-list li{
    display:flex;
    gap:10px;
    font-size:17px;
    line-height:1.8;
    color:#233456;
    margin-bottom:5px;
}

.dw-tabs-list li:last-child{
    margin-bottom:0;
}

.dw-tabs-list li i{
    width:30px;
    height:30px;
    min-width:30px;
    border-radius:50%;
    background:#a9bef7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    margin-top:4px;
}

/* notice box */

.dw-tabs-alert{
    background: #f6f8fd;
    border: 1px solid #d9e0f0;
    border-radius: 15px;
    padding: 22px 27px;
}

.dw-tabs-alert-head{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
}

.dw-tabs-alert-head i{
    color:#2f5df4;
    font-size:24px;
}

.dw-tabs-alert-head h4{
    margin: 0;
    font-size: 19px;
    font-weight: 500;
    color: #1f325c;
}

.dw-tabs-alert p{
    margin:0;
}

/* responsive */

@media(max-width:991px){

    .dw-tabs{
        padding:70px 0;
    }

    .dw-tabs-files{
        flex-wrap:wrap;
    }

    .dw-tabs-file{
        min-width:120px;
    }

}

@media(max-width:767px){

    .dw-tabs-card{
        padding:25px;
    }

    .dw-tabs-head h3{
        font-size:20px;
    }

    .dw-tabs-btn{
        font-size:18px;
        height:58px;
    }

    .dw-tabs-files{
        flex-direction:column;
    }

}

/* *********************************** */

.me-tab {
  padding: 35px 40px 20px;
}

/* Top Features */
.me-tab__features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.me-tab__feature {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.me-tab__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}

.me-tab__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e7e7;
}

.me-tab__icon img {
  max-width: 42px;
  max-height: 42px;
}

.me-tab__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 23px;
    font-weight: 500;
}

.me-tab__text {
  margin: 0;
      line-height: 22px;
}

.me-tab__text strong {
  font-weight: 600;
}

/* Notice Box */
.me-tab__notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 22px;
    background: #fff;
    border: 1px solid #d7dff3;
    border-radius: 14px;
        margin-bottom: 20px;
}

.me-tab__notice-icon {
  color: #2f63ff;
  flex-shrink: 0;
  margin-top: 2px;
}

.me-tab__notice-title {
    font-size: 19px;
    font-weight: 500;
    margin: 2px 0 8px;
}
.me-tab__notice-icon img{
    width: 27px;
}
.me-tab__notice-text {
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .me-tab__features {
    flex-direction: column;
    gap: 40px;
  }

  .me-tab__feature:not(:last-child)::after {
    display: none;
  }

  .me-tab__notice {
    flex-direction: column;
  }
}
/* ********************************** */

.help-tab{
    padding:35px;
}

.help-tab__features{
    display:flex;
    justify-content:space-between;
    border-bottom:1px dashed #d8d8d8;
    padding-bottom:35px;
}

.help-tab__item{
    flex:1;
    text-align:center;
    position:relative;
}

.help-tab__item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:1px;
    height:120px;
    border-right:1px dotted #d4d4d4;
}

.help-tab__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 75px;
    height: 75px;
    border-radius: 200px;
    padding: 15px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.help-tab__icon img{
    width: 42px;
}
.help-tab__item:nth-child(1) .help-tab__icon{
    color:#2962ff;
}

.help-tab__item:nth-child(2) .help-tab__icon{
    color:#1e88c8;
}

.help-tab__item:nth-child(3) .help-tab__icon{
    color:#b71c1c;
}

.help-tab__item:nth-child(4) .help-tab__icon{
    color:#18b86c;
}

.help-tab__title{
    margin: 0 0 9px;
    font-size: 21px;
    line-height: 23px;
    font-weight: 500;
}

.help-tab__text{
    font-size:18px;
    margin:0;
}

.help-tab__actions{
    display:flex;
    justify-content:center;
    gap:18px;
    padding-top:34px;
}

.help-tab__btn{
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
    padding: 12px 24px;
}

.help-tab__btn i{
    font-size:22px;
}

.help-tab__btn--yellow{
    background:#ffcc00;
    color:#111;
}

.help-tab__btn--yellow:hover{
    background:#f2c000;
}

.help-tab__btn--blue{
    background:#182d59;
    color:#fff;
}

.help-tab__btn--blue:hover{
    background:#102145;
}
.ucBtm{
    margin-bottom: 10px !important;
    margin-top: 4px !important;
    font-weight: 500;
}
.nmTitle{
    font-weight: 500;
    font-size: 17px !important;
}
.nmTop{
    margin-top: 20px !important;
}
.ucBtmOne{
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    font-weight: 500;
}
.dw-btn{
    margin-top: 30px;
}
.dw-btn a{
    font-size: 15px;
    color: #fff;
    border-bottom: 2px dotted #9aa8e4;
    padding: 6px 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 3px;
}
.dw-btn a:hover{
    border-bottom: 2px dotted #fff;
}
.blueBgOne{
    margin-top: 0;
    background: #f0f6fe;
    padding: 14px 17px;
    border: 1px solid #d4e5fb;
    border-radius: 8px;
    margin-top: 15px;
}

.blueBgOne h6{
    margin-bottom: 0;
}
.blueBgOne h5{
    font-size: 18px;
}
.notop{
    margin-top: 0 !important;
}
.mtop{
    margin-top: 10px;
    margin-bottom: 20px !important;
}
.smtop{
    margin-top: 3px !important;
}

/* ******************************** */

.ctBox{
  padding:90px 0;
  background:#f6f8ff;
  font-family:Inter, Arial;
}
.ctBox .container{
  max-width:1200px;
}
.ctBox-left{
  background:linear-gradient(135deg,#f3e7ff,#ffd9d2);
  border-radius:28px;
  padding:35px;
  height:100%;
  position:relative;
  overflow:hidden;
}
.ctBox-user{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
}
.ctBox-user-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.ctBox-user img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
}
.ctBox-user h4{
  font-size:16px;
  margin:0;
  font-weight:700;
}
.ctBox-user p{
  font-size:12px;
  margin:0;
  opacity:.7;
}
.ctBox-mail{
  background:#fff;
  padding:8px 12px;
  border-radius:30px;
  font-size:12px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#333;
  text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}
.ctBox-address{
  margin-top:25px;
}
.ctBox-address-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  margin-bottom:10px;
}
.ctBox-address p{
  margin:0;
  background:#fff;
  display:inline-block;
  padding:4px 10px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:6px;
}
.ctBox-title{
  margin-top:35px;
  font-size:34px;
  font-weight:800;
  line-height:1.2;
}
.ctBox-title span{
  font-weight:400;
}
.ctBox-social{
  margin-top:35px;
  display:flex;
  gap:10px;
}
.ctBox-social i{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  cursor:pointer;
  transition:.3s;
}
.ctBox-social i:hover{
  transform:translateY(-4px);
}
.ctBox-phone{
  position:absolute;
  right:25px;
  bottom:25px;
  background:#fff;
  padding:8px 12px;
  border-radius:30px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
}
.ctBox-form{
  background:#fff;
  border-radius:28px;
  padding:40px;
  height:100%;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.ctBox-form h2{
  font-size:42px;
  font-weight:800;
  line-height:1.1;
}
.ctBox-form h2 span{
  color:#666;
  font-weight:600;
}
.ct-input{
  position:relative;
  margin-top:28px;
}
.ct-input input,
.ct-input textarea{
  width:100%;
  border:none;
  border-bottom:1.8px solid #d9deea;
  padding:12px 0;
  font-size:14px;
  outline:none;
  background:transparent;
}
.ct-input label{
  position:absolute;
  left:0;
  top:12px;
  font-size:13px;
  color:#8a8a8a;
  transition:.3s;
  pointer-events:none;
}
.ct-input input:focus,
.ct-input textarea:focus{
  border-bottom:2px solid #2457ff;
}
.ct-input input:focus + label,
.ct-input input:valid + label,
.ct-input textarea:focus + label,
.ct-input textarea:valid + label{
  top:-10px;
  font-size:11px;
  color:#2457ff;
}
.ctBox-btn{
  margin-top:25px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:#2457ff;
  color:#fff;
  font-weight:600;
  transition:.3s;
}
.ctBox-btn:hover{
  background:#1a43d6;
  transform:translateY(-2px);
}
.ctBox-bottom{
  margin-top:40px;
}
.ctBox-info{
  background:#fff;
  border-radius:18px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:.3s;
  height:100%;
}
.ctBox-info i{
  font-size:18px;
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f6ff;
  color:#2457ff;
}
.ctBox-info:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,.08);
}
.ctBox-info h6{
  margin:0;
  font-size:14px;
  font-weight:700;
}
.ctBox-info p{
  margin:0;
  font-size:12px;
  opacity:.7;
}
@media(max-width:991px){
  .ctBox-form h2{font-size:28px;}
  .ctBox-title{font-size:26px;}
}