*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0b1f4f;
    --gold: #f5a623;
    --light: #f5f5f0;
    --white: #ffffff;
    --text: #444;
    --muted: #666;
    --navy: #0b1f4f;
    --gold: #f5a623;
    --blue: #1e3a8a;
    --light-blue: #eef2ff;
    --white: #ffffff;
    --text: #444;
    --border: #e2e8f0;
    --gray-bg: #f8fafc;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: 'Oktah Neue', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

/* ========== FIXED HEADER WITH SPACING (floating effect, but hero fills behind) ========== */
/* ========== FIXED HEADER WITH SPACING (floating effect) ========== */
.header-container {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    pointer-events: none;
}

nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--navy);
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 80px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    backdrop-filter: blur(0px);
    transition: box-shadow 0.2s;
}

body {
    padding-top: 0;
    overflow-x: hidden;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-box {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
}

.logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}



.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #cfd6ea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-btn {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.login-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s, transform 0.1s;
}

.login-btn:hover {
    opacity: 0.88;
    transform: scale(0.98);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Drawer - LEFT TO RIGHT */
.mobile-drawer {
    position: fixed;
    top: calc(70px + 20px + 12px);
    left: 24px;
    width: 280px;
    max-width: calc(100% - 48px);
    background: var(--navy);
    z-index: 999;
    transform: translateX(-120%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.3);
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.mobile-drawer ul a {
    color: #eef2ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
    display: inline-block;
}

.mobile-drawer ul a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.mobile-drawer .mob-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.mob-call {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    background: rgba(245, 166, 35, 0.12);
    padding: 10px;
    text-align: center;
    border-radius: 40px;
}

.mob-login {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: 0.2s;
}

.mob-login:hover {
    background: #f5b83d;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HERO SECTION - NO WHITE GAP ========== */
.about-hero {
    width: 100%;
    background: linear-gradient(135deg, #0d1b5e 0%, #1e3a8a 60%, #243c9b 100%);
    color: #fff;
    padding: 120px 20px 90px;
    text-align: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.4;
    color: #ffcc4d;
    max-width: 860px;
    margin: 0 auto 18px;
    font-weight: 700;
}

.about-hero p {
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.88;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== LANGUAGE TOGGLE ========== */
.toggle {
    position: relative;
    display: flex;
    width: 300px;
    margin: 0 auto 64px;
    background: #e6e9f2;
    border-radius: 60px;
    padding: 5px;
}

.toggle::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: var(--navy);
    border-radius: 60px;
    transition: left 0.3s;
    z-index: 1;
}

.toggle.hindi::before {
    left: 50%;
}

.toggle button {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    border-radius: 60px;
    transition: color 0.2s;
}

.toggle button.active {
    color: #fff;
}

/* Language content visibility - FIXED */
.lang {
    display: none;
}

.lang.active {
    display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .header-container {
        padding: 0 16px;
        top: 16px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links,
    .nav-right .call-btn,
    .nav-right .login-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-drawer {
        top: calc(70px + 16px + 12px);
        left: 16px;
    }
    
    .about-hero {
        padding: 110px 20px 70px;
    }
}
/* ========== HERO SECTION — EXTENDS TO EDGE, NO WHITE GAP BEHIND HEADER ========== */
/* The hero starts from top:0 and fills entire width, covering any potential white background */
.about-hero {
    width: 100%;
    background: linear-gradient(135deg, #0d1b5e 0%, #1e3a8a 60%, #243c9b 100%);
    color: #fff;
    padding: 120px 20px 90px;
    /* increased top padding so content sits below floating header */
    text-align: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Ensure no white space above hero — body background white but hero starts at absolute top */
.about-hero:before {
    display: none;
}

.about-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.4;
    color: #ffcc4d;
    max-width: 860px;
    margin: 0 auto 18px;
    font-weight: 700;
}

.about-hero p {
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.88;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    background: #ffb400;
    color: #0d1b5e;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.35);
}

.secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container for rest content */
.container {
    max-width: 1150px;
    margin: auto;
    padding: 70px 24px;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Language Toggle */
.toggle {
    position: relative;
    display: flex;
    width: 300px;
    margin: 0 auto 64px;
    background: #e6e9f2;
    border-radius: 60px;
    padding: 5px;
}

.toggle::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: var(--navy);
    border-radius: 60px;
    transition: left 0.3s;
    z-index: 1;
}

.toggle.hindi::before {
    left: 50%;
}

.toggle button {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    border-radius: 60px;
    transition: color 0.2s;
}

.toggle button.active {
    color: #fff;
}

/* About Sections */
.section {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 90px;
}

.section.reverse {
    flex-direction: row-reverse;
}

.text-card {
    flex: 1;
    position: relative;
    background: #fff;
    padding: 44px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.text-card::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(135deg, #2f4cff, #6c7bff);
    z-index: -1;
    opacity: 0.08;
}

.text-card h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
}

.text-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-top: 10px;
}

.lang {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}

.lang.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-img {
    width: 460px;
    flex-shrink: 0;
    border-radius: 32px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    aspect-ratio: 4/3;
}

@media (max-width: 900px) {

    .section,
    .section.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .section-img {
        width: 100%;
    }

    .text-card {
        padding: 28px 22px;
    }
}

/* ===== CORE VALUES EXACT UI ===== */

.section-values{
    background:#f5f5f5;
    padding:90px 40px;
    overflow:hidden;
}

.values-wrap{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT SIDE */
.values-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: center;
}



/* CARD STYLE */
.value-box{
   position: static; /* ❌ remove absolute */
    width: 100%;
    min-height: 220px;
    background:#08197e;
    border-radius:16px;
    padding:22px 20px;
    color:#fff;
    box-sizing:border-box;
}
.value-icon {
    width: 34px;
    height: 34px;
    background: rgba(248,180,0,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon svg {
    width: 18px;
    height: 18px;
    fill: #F9B100; /* 🔥 brand yellow */
}

.value-box {
    transition: 0.3s ease;
}

.value-box:hover {
    transform: translateY(-6px);
}

.value-box {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.value-box h3{
    font-size:18px;
    font-weight:700;
    margin:0 0 12px;
    line-height:1.3;
}

.value-box p{
    margin:0;
    font-size:13px;
    line-height:1.7;
    color:#d8dcff;
}

/* POSITIONS EXACT LIKE SCREENSHOT */
/* BETTER BALANCED POSITIONS */
/* OFFSET FIRST CARD */
.box-access{
    grid-column: 1;
    margin-top: 80px;
    justify-self: center; /* 🔥 centers horizontally */
}

.box-innov{
    grid-column: 2;
}

.box-excel{
    grid-column: 2;
}

/* RIGHT CONTENT */
.values-content h2{
    font-size:54px;
    line-height:1.05;
    margin:0 0 24px;
    color:#08197e;
    font-weight:800;
    letter-spacing:-1px;
}

.values-content p{
    font-size:15px;
    line-height:1.8;
    color:#6a6a6a;
    margin:0 0 18px;
    max-width:560px;
}



/* TABLET */
@media(max-width:991px){

.values-wrap{
    grid-template-columns:1fr;
    gap:40px;
}

.values-cards{
    height:330px;
    max-width:360px;
    margin:auto;
}

.values-content{
    text-align:center;
}

.values-content p{
    max-width:100%;
}

.values-content h2{
    font-size:42px;
}

}

/* MOBILE */
@media(max-width:600px){

.section-values{
    padding:60px 18px;
}

/* .values-cards{
    transform:scale(.78);
    transform-origin:top center;
    height:320px;
} */

.values-content h2{
    font-size:34px;
}

.values-content p{
    font-size:14px;
    line-height:1.7;
}

.values-cards{
    position:static;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    height:auto;
}

.value-box{
    position:static;
    width:100%;
}

}
/* Founders */

.section-founders {
    background: #fff;
    padding: 90px 40px;
    text-align: center;
    overflow: hidden;
}

.section-founders > h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a2060;
    margin-bottom: 60px;
}

/* layout fix */
.founders-layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 55px;
    align-items: center;
    max-width: 1250px;
    margin: auto;
}

/* bios */
.founder-bio {
    text-align: left;
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    max-width: 360px;
}

.founder-bio p + p {
    margin-top: 16px;
}

/* cards wrapper */
.founder-cards {
    position: relative;
    width: 420px;
    height: 380px;
    margin: auto;
}

/* cards */
.founder-card {
    position: absolute;
    width: 220px;
    height: 295px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    transition: 0.35s ease;
    background: #ddd;
}

.founder-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.03) !important;
}

/* image */
.founder-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */
.founder-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
}

/* text */
.founder-tag,
.founder-name {
    position: relative;
    z-index: 2;
}

.founder-tag {
    display: inline-block;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 50px;
    background: #facc15;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

/* fixed spacing between cards */
.founder-card.top {
    top: 0;
    right: 20px;
    transform: rotate(5deg);
    z-index: 2;
}

.founder-card.bottom {
    bottom: 0;
    left: 20px;
    transform: rotate(-4deg);
    z-index: 1;
}

/* tablet */
@media (max-width: 1100px) {
    .founders-layout {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .founder-bio {
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .founder-cards {
        order: -1;
    }
}

/* mobile */
@media (max-width: 768px) {

    .section-founders {
        padding: 60px 20px;
    }

    .founder-cards {
        width: 300px;
        height: 340px;
    }

    .founder-card {
        width: 190px;
        height: 250px;
        border-radius: 22px;
        padding: 14px;
    }

    .founder-card.top {
        right: 10px;
    }

    .founder-card.bottom {
        left: 10px;
    }

    .founder-name {
        font-size: 17px;
    }

    .founder-bio {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }
}



/* *============================== WE AR/E SUPPORTED  ============================/ */
/* SECTION */
.success-section {
  background: #f8f9fc;
  padding: 70px 20px;
}

/* TITLE */
.section-title {
  text-align: left;
  max-width: 1180px;
  margin: 0 auto 30px;
  font-weight: bolder;
  font-size: 35px;
  color: #1B2B7B;
}

/* GRID */
.success-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
/* CARD */
.success-card {
  height: 160px;
  border-radius: 14px;
  overflow: hidden; /* 🔥 important */
}

/* WRAPPER */
.success-img {
  width: 100%;
  height: 100%;
}

/* IMAGE FULL FILL */
.success-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 fills entire card */
  display: block;
}

/* default (logos) */
.success-img img {
  object-fit: contain;
  padding: 20px;
}

/* for image cards only */
.success-card.full img {
  object-fit: cover;
  padding: 0;
}

/* HOVER */
.success-card:hover {
  transform: translateY(-6px);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 900px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FIXED HEADER WITH SPACING ========== */
.header-container {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    pointer-events: none;
}

nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--navy);
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 80px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

body {
    padding-top: 0;
}



.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #cfd6ea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-btn {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.login-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s;
}

.login-btn:hover {
    opacity: 0.88;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* LEFT-TO-RIGHT DRAWER */
.mobile-drawer {
    position: fixed;
    top: calc(70px + 20px + 12px);
    left: 24px;
    width: 280px;
    max-width: calc(100% - 48px);
    background: var(--navy);
    z-index: 999;
    transform: translateX(-120%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.3);
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.mobile-drawer ul a {
    color: #eef2ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
    display: inline-block;
}

.mobile-drawer ul a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.mobile-drawer .mob-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.mob-call {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    background: rgba(245, 166, 35, 0.12);
    padding: 10px;
    text-align: center;
    border-radius: 40px;
}

.mob-login {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .header-container {
        padding: 0 16px;
        top: 16px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links,
    .nav-right .call-btn,
    .nav-right .login-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-drawer {
        top: calc(70px + 16px + 12px);
        left: 16px;
    }
}

/* ========== CONTACT HERO - CLEAN BLUE WITH EDUCATION PATTERNS ========== */
.contact-hero {
    background: linear-gradient(135deg, #0d1b5e 0%, #1e3a8a 60%, #2d4a9e 100%);
    padding: 130px 24px 70px;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    position: relative;
    overflow: hidden;
}

/* Clean educational patterns: subtle grid, light book/doodle inspired lines */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        /* fine education grid */
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        /* tiny dot pattern (like stars/learning nodes) */
        radial-gradient(circle at 20% 40%, rgba(255, 215, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 75% 85%, rgba(255, 215, 0, 0.06) 1.2px, transparent 1.2px);
    background-size: 40px 40px, 40px 40px, 32px 32px, 48px 48px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Floating book/education shape abstraction */
.contact-hero::after {
    content: "📚";
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 120px;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(-8deg);
    z-index: 0;
}

/* Main card */
.contact-card {
    position: relative;
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    gap: 48px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
}

.left-col {
    flex: 1;
}

/* ===== IMAGE WRAPPER PREMIUM BG + IMAGE POP OUT ===== */
.image-wrapper{
    position: relative;
    overflow: visible;
    border-radius: 28px;
    padding: 18px;
    background:
      linear-gradient(145deg, rgba(13,27,94,.95), rgba(30,58,138,.88)),
      url("assets/images/why-us-banner.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 35px rgba(13,27,94,.18);
}

/* yellow glow circle */
.image-wrapper::before{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    background:rgba(245,166,35,.18);
    border-radius:50%;
    top:-30px;
    right:-30px;
    filter:blur(8px);
}

/* image coming out */
.image-wrapper img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
    transform:translateY(-18px);
    filter:drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

/* ===== CONTACT INFO ICONS YELLOW ===== */
.contact-info-item .emoji{
    font-size:18px;
    background:#fff7df;
    color:#f5a623;
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px rgba(245,166,35,.15);
    border:1px solid rgba(245,166,35,.18);
}

/* ===== FORM ICON STYLE ===== */
.form-group{
    position:relative;
}

.form-group i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#f5a623;
    font-size:15px;
    z-index:2;
}

.form-group input,
.form-group select{
    padding:14px 18px 14px 46px;
}

/* select arrow spacing */
.form-group select{
    appearance:none;
}

/* ===== BUTTON ===== */
.submit-btn{
    position:relative;
    overflow:hidden;
}

.submit-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
    transform:translateX(-100%);
    transition:.6s;
}

.submit-btn:hover::before{
    transform:translateX(100%);
}

/* MOBILE */
@media(max-width:900px){
    .image-wrapper img{
        transform:translateY(-10px);
    }
}
.contact-info {
    margin-top: 28px;
    background: var(--gray-bg);
    padding: 20px;
    border-radius: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
    font-size: 14px;
    color: #334155;
}

.contact-info-item .emoji {
    font-size: 20px;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info-item span {
    font-weight: 500;
    color: #1e293b;
}

.right-col {
    flex: 1;
}

.right-col h2 {
    font-size: 32px;
    color: #0b1f4f;
    margin-bottom: 8px;
    font-weight: 700;
}

.right-col p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin-top: 8px;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #e8961a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

/* Steps Section - clean educational */
.steps-container {
    max-width: 1150px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.steps-card {
    flex: 1;
    background: var(--white);
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Clean educational pattern for steps card - subtle wave lines */
.steps-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.steps-card h3 {
    font-size: 26px;
    color: #0b1f4f;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.steps-card ul {
    list-style: none;
}

.steps-card li {
    margin: 20px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #334155;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: #0b1f4f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.app-btn {
    background: #0b1f4f;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    opacity: 0.9;
}

.phone-mock {
    flex: 0.8;
    text-align: center;
}

.phone-mock img {
    max-width: 240px;
    border-radius: 36px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}


@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
        padding: 28px;
        gap: 28px;
    }

    .contact-hero {
        padding: 110px 20px 50px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
        margin: 48px auto;
    }

    .phone-mock img {
        max-width: 200px;
    }

    .right-col h2 {
        font-size: 28px;
    }

    .steps-card {
        padding: 28px;
    }
}

@media (max-width: 560px) {
    .app-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-item {
        font-size: 12px;
    }
}



/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(100deg, #0b1f4f 0%, #1a3a8a 100%);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: #a0b4d6;
  font-size: 14px;
}

.cta-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-input {
  padding: 11px 18px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  width: 260px;
  outline: none;
}

.cta-submit {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.cta-submit:hover {
  background: #e09a1e;
  transform: translateY(-1px);
}

/* ── EASY STEPS ── */


.steps-section {
  background: #fff;
  padding: 56px 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  text-decoration: none;
  transition: background .2s;
}

.app-badge:hover {
  background: #1a1a1a;
}

.app-badge i {
  font-size: 22px;
}

.app-badge-text {
  line-height: 1.2;
}

.app-badge-text small {
  font-size: 10px;
  opacity: .7;
  display: block;
}

.app-badge-text span {
  font-size: 14px;
  font-weight: 700;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  background: var(--navy);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(11, 31, 79, 0.3);
  width: 180px;
}

.phone-screen {
  background: var(--light-gray);
  border-radius: 18px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen-inner {
  text-align: center;
  padding: 20px;
}

.phone-logo {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 12px;
}

.phone-screen-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.phone-screen-sub {
  font-size: 10px;
  color: var(--gray);
  margin-top: 4px;
}





/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(100deg, #0b1f4f 0%, #1a3a8a 100%);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: #a0b4d6;
  font-size: 14px;
}

.cta-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-input {
  padding: 11px 18px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  width: 260px;
  outline: none;
}

.cta-submit {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.cta-submit:hover {
  background: #e09a1e;
  transform: translateY(-1px);
}

/* ── EASY STEPS ── */


.steps-section {
  background: #fff;
  padding: 56px 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  text-decoration: none;
  transition: background .2s;
}

.app-badge:hover {
  background: #1a1a1a;
}

.app-badge i {
  font-size: 22px;
}

.app-badge-text {
  line-height: 1.2;
}

.app-badge-text small {
  font-size: 10px;
  opacity: .7;
  display: block;
}

.app-badge-text span {
  font-size: 14px;
  font-weight: 700;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  background: var(--navy);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(11, 31, 79, 0.3);
  width: 180px;
}

.phone-screen {
  background: var(--light-gray);
  border-radius: 18px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen-inner {
  text-align: center;
  padding: 20px;
}

.phone-logo {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 12px;
}

.phone-screen-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.phone-screen-sub {
  font-size: 10px;
  color: var(--gray);
  margin-top: 4px;
}