/* Shared styles for the city landing pages.
   Extracted 9 Sep 2026 from inline <style> blocks that were byte-identical
   on sailpoint-training-in-bangalore and sailpoint-training-in-chennai.
   Order below matches the original document order, so the cascade is unchanged. */

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --primary: #ffffff;
      --secondary: #f8fafc;
      --accent: #00b4d8;
      --accent2: #0077b6;
      --accent3: #48cae4;
      --gold: #f4a261;
      --green: #06d6a0;
      --text: #1e293b;
      --text-muted: #111827;
      --card-bg: #ffffff;
      --card-border: rgba(0, 0, 0, 0.08);
      --hero-gradient: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #f8fafc 100%)
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1e293b;
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 60px
    }

    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-track {
      background: #f1f5f9
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 3px
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      transition: all .3s;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06)
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 68px
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo-img {
      height: 40px;
      width: auto
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .desktop-nav a {
      color: #111827;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .2s;
      white-space: nowrap
    }

    .desktop-nav a:hover {
      color: #0077b6;
      background: rgba(0, 119, 182, 0.06)
    }

    .nav-cta {
      background: linear-gradient(135deg, #00b4d8, #0077b6) !important;
      color: #fff !important;
      padding: 9px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4) !important
    }

    .nav-dropdown {
      position: relative
    }

    .nav-dropdown .dd-toggle {
      cursor: pointer
    }

    .nav-dropdown .dd-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      padding: 8px 0;
      min-width: 240px;
      z-index: 1001;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
    }

    .nav-dropdown:hover .dd-menu {
      display: block
    }

    .dd-menu a {
      display: block;
      padding: 10px 20px;
      color: #111827;
      text-decoration: none;
      font-size: 14px;
      transition: all .2s
    }

    .dd-menu a:hover {
      color: #0077b6;
      background: rgba(0, 119, 182, 0.06)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      z-index: 1002
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #1e293b;
      transition: all .3s;
      border-radius: 2px
    }

    @media(max-width:991px) {
      .desktop-nav {
        display: none
      }

      .hamburger {
        display: flex
      }
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1100
    }

    .mobile-overlay.open {
      display: block
    }

    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100%;
      background: #fff;
      z-index: 1101;
      transition: right .3s ease;
      overflow-y: auto
    }

    .mobile-sidebar.open {
      right: 0
    }

    .mob-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      border-bottom: 1px solid #e5e7eb
    }

    .mob-header .logo-img {
      height: 32px
    }

    .mob-close {
      background: none;
      border: none;
      font-size: 28px;
      color: #333;
      cursor: pointer
    }

    .mob-nav {
      list-style: none;
      padding: 16px 0;
      margin: 0
    }

    .mob-nav li {
      border-bottom: 1px solid #f1f5f9
    }

    .mob-nav li a,
    .mob-nav li button {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 16px 20px;
      background: none;
      border: none;
      font-size: 15px;
      font-weight: 500;
      color: #1e293b;
      text-decoration: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif
    }

    .mob-nav li a:hover,
    .mob-nav li button:hover {
      color: #0077b6
    }

    .mob-nav .courses-btn {
      background: rgba(0, 119, 182, 0.06);
      color: #0077b6;
      font-weight: 600;
      border-radius: 8px;
      margin: 4px 12px;
      padding: 12px 16px
    }

    .mob-sub {
      list-style: none;
      padding: 0 0 8px 20px;
      margin: 0;
      display: none
    }

    .mob-sub.open {
      display: block
    }

    .mob-sub li {
      border: none
    }

    .mob-sub li a {
      padding: 10px 20px;
      font-size: 14px;
      color: #111827
    }

    .mob-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      border-top: 1px solid #e5e7eb;
      font-size: 12px;
      color: #94a3b8;
      background: #fff
    }

    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #f8fafc 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 100px
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2300b4d8' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: .12;
      pointer-events: none
    }

    .blob1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #00b4d8, transparent);
      top: -100px;
      right: -100px
    }

    .blob2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #0077b6, transparent);
      bottom: -50px;
      left: -50px
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 24px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 180, 216, 0.08);
      border: 1px solid rgba(0, 180, 216, 0.2);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: #00b4d8;
      margin-bottom: 12px
    }

    .hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #00b4d8;
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 12px;
      color: #1e293b
    }

    .hero h1 .grad {
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .hero-sub {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      font-weight: 600;
      color: #0077b6;
      margin-bottom: 20px
    }

    .hero-desc {
      font-size: 16px;
      color: #111827;
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 560px;
      border-left: 3px solid #00b4d8;
      padding-left: 16px
    }

    .hero-pills {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 24px
    }

    @media(min-width: 992px) {
      .hero-pills {
        display: flex;
        flex-wrap: wrap;
      }
    }

    .hero-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 13px;
      color: #111827
    }

    .hero-pill i {
      color: #00b4d8;
      font-size: 12px
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap
    }

    .btn-p {
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      color: #fff;
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .3s;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-p:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
      color: #fff
    }

    .btn-o {
      background: transparent;
      color: #1e293b;
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid #cbd5e1;
      cursor: pointer;
      transition: all .3s;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-o:hover {
      border-color: #0077b6;
      color: #0077b6;
      background: rgba(0, 119, 182, 0.06)
    }

    .hero-card {
      background: #ffffff;
      backdrop-filter: blur(20px);
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
    }

    .hero-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1e293b
    }

    .hero-card>p {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 24px
    }

    .fg {
      margin-bottom: 16px
    }

    .fg label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: #64748b;
      margin-bottom: 6px
    }

    .fg input,
    .fg select {
      width: 100%;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 12px 16px;
      color: #1e293b;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
      outline: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: calc(100% - 16px) center;
    }

    .fg input:focus,
    .fg select:focus {
      border-color: #00b4d8;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1)
    }

    .fg input::placeholder {
      color: #94a3b8
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all .3s;
      font-family: 'Inter', sans-serif
    }

    .form-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4)
    }

    .success-msg {
      display: none;
      text-align: center;
      padding: 20px;
      background: rgba(6, 214, 160, 0.1);
      border: 1px solid rgba(6, 214, 160, 0.3);
      border-radius: 12px;
      margin-top: 16px
    }

    .success-msg i {
      font-size: 28px;
      color: #06d6a0;
      margin-bottom: 8px;
      display: block
    }

    .success-msg h4 {
      color: #06d6a0;
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      margin-bottom: 4px
    }

    .success-msg p {
      color: #94a3b8;
      font-size: 13px
    }

    @media(max-width:768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px 16px 30px
      }

      .blob1 {
        width: 300px;
        height: 300px
      }
    }

    .hero-features {
      background: #ffffff;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0
    }

    .hf-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 28px 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px
    }

    .hf-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0
    }

    .hf-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: rgba(0, 180, 216, 0.12);
      border: 1px solid rgba(0, 180, 216, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00b4d8;
      font-size: 16px
    }

    .hf-text {
      font-size: 13px;
      font-weight: 600;
      color: #1e293b;
      line-height: 1.4
    }

    .hf-text span {
      display: block;
      font-size: 11px;
      color: #94a3b8;
      font-weight: 400
    }

    @media(max-width:768px) {
      .hf-inner {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:480px) {
      .hf-inner {
        grid-template-columns: 1fr
      }
    }

    .sec {
      padding: 60px 0;
      background: #ffffff
    }

    .sec-alt {
      background: #f8fafc
    }

    .ctr {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px
    }

    .sl {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f97316;
      margin-bottom: 14px
    }

    .sl::before {
      content: '';
      width: 24px;
      height: 2px;
      background: #00b4d8;
      border-radius: 2px
    }

    .st {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px;
      color: #1e293b
    }

    .st .grad {
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .ss {
      font-size: 16px;
      color: #64748b;
      max-width: 640px;
      line-height: 1.7
    }

    .sh {
      margin-bottom: 60px
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .about-text p {
      font-size: 16px;
      color: #111827;
      line-height: 1.85;
      margin-bottom: 16px
    }

    .about-card-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .mini-stat {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all .3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
    }

    .mini-stat:hover {
      border-color: rgba(0, 180, 216, 0.3);
      transform: translateY(-4px);
      background: #f0f9ff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08)
    }

    .mini-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1
    }

    .mini-stat-label {
      font-size: 13px;
      color: #64748b;
      margin-top: 6px;
      font-weight: 500
    }

    @media(max-width:768px) {
      .about-grid {
        grid-template-columns: 1fr
      }
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px
    }

    .why-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      padding: 30px;
      transition: all .3s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #00b4d8, #0077b6);
      opacity: 0;
      transition: .3s
    }

    .why-card:hover {
      border-color: rgba(0, 180, 216, 0.25);
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .1)
    }

    .why-card:hover::before {
      opacity: 1
    }

    .why-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.1));
      border: 1px solid rgba(0, 180, 216, 0.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00b4d8;
      font-size: 22px;
      margin-bottom: 18px
    }

    .why-card h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1e293b
    }

    .why-card p {
      font-size: 14px;
      color: #111827;
      line-height: 1.7
    }

    .cur-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px
    }

    .topic-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 22px;
      transition: all .25s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
    }

    .topic-card:hover {
      border-color: rgba(0, 180, 216, 0.2);
      background: #f0f9ff
    }

    .topic-card h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .topic-card h4 i {
      color: #00b4d8;
      font-size: 14px
    }

    .topic-list {
      list-style: none
    }

    .topic-list li {
      font-size: 13px;
      color: #111827;
      padding: 4px 0;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .topic-list li::before {
      content: '\2022';
      color: #00b4d8;
      font-size: 10px;
      flex-shrink: 0
    }

    .cert-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 60px;
      align-items: center
    }

    .cert-visual {
      background: linear-gradient(135deg, #0d1f3a, #0a2d4a);
      border: 1px solid rgba(0, 180, 216, 0.2);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
    }

    .cert-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 8px solid transparent;
      border-image: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(72, 202, 228, 0.1), rgba(0, 180, 216, 0.3)) 1;
      pointer-events: none
    }

    .cert-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 20px;
      margin-bottom: 20px
    }

    .cert-logo-text {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 900;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .cert-logo-sub {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #64748b;
      font-weight: 600
    }

    .cert-seal {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #fff;
      box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4)
    }

    .cert-body {
      text-align: center;
      padding: 20px 0
    }

    .cert-presents {
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 8px
    }

    .cert-title {
      font-family: 'Outfit', sans-serif;
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 4px;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .cert-subtitle {
      font-size: 13px;
      color: #64748b;
      margin-bottom: 16px
    }

    .cert-name-line {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 12px;
      text-align: center;
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      font-style: italic;
      color: #e2e8f0;
      margin-bottom: 20px
    }

    .cert-sigs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 20px
    }

    .cert-sig {
      text-align: center
    }

    .cert-sig-line {
      width: 100px;
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 0 auto 6px
    }

    .cert-sig-label {
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #64748b
    }

    .cert-points {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .cert-point {
      display: flex;
      align-items: flex-start;
      gap: 14px
    }

    .cert-point-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(0, 180, 216, 0.1);
      border: 1px solid rgba(0, 180, 216, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00b4d8;
      font-size: 16px
    }

    .cert-point-text h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #1e293b
    }

    .cert-point-text p {
      font-size: 13px;
      color: #111827;
      line-height: 1.5
    }

    @media(max-width:900px) {
      .cert-layout {
        grid-template-columns: 1fr
      }
    }

    .testi-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding-bottom: 20px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: #00b4d8 transparent
    }

    .testi-card {
      min-width: 320px;
      max-width: 340px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      padding: 28px;
      scroll-snap-align: start;
      transition: all .3s;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
    }

    .testi-card:hover {
      border-color: rgba(0, 180, 216, 0.3);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08)
    }

    .testi-stars {
      color: #f4a261;
      font-size: 13px;
      margin-bottom: 14px
    }

    .testi-text {
      font-size: 14px;
      color: #111827;
      line-height: 1.75;
      margin-bottom: 18px;
      font-style: italic
    }

    .testi-text::before {
      content: '"';
      font-size: 32px;
      color: #00b4d8;
      line-height: 0;
      vertical-align: -12px;
      margin-right: 4px;
      opacity: .5
    }

    .testi-name {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1e293b
    }

    .testi-role {
      font-size: 12px;
      color: #00b4d8;
      font-weight: 500;
      margin-top: 2px
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: #fff;
      font-size: 16px;
      flex-shrink: 0
    }

    .testi-footer {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .companies-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }

    .company-logo {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 16px 28px;
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      transition: all .3s;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04)
    }

    .company-logo:hover {
      border-color: rgba(0, 180, 216, 0.3);
      color: #0077b6;
      background: #f0f9ff;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
    }

    /* Mobile Overrides for 2 items per row */
    @media(max-width:768px) {
      .companies-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .company-logo {
        padding: 14px 10px;
        font-size: 12.5px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
      }

      .company-logo img {
        margin-right: 0 !important;
        margin-bottom: 2px !important;
      }
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center
    }

    .stat-item .stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .stat-item .stat-label {
      font-size: 14px;
      color: #111827;
      margin-top: 6px
    }

    @media(max-width:768px) {
      .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
      }
    }

    .batch-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
    }

    .batch-table th {
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      color: #fff;
      padding: 16px 20px;
      text-align: left;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Outfit', sans-serif
    }

    .batch-table td {
      padding: 16px 20px;
      font-size: 14px;
      color: #111827;
      border-bottom: 1px solid #e2e8f0
    }

    .batch-table tr:nth-child(even) td {
      background: #f8fafc
    }

    .batch-table tr:hover td {
      background: #f0f9ff;
      color: #1e293b
    }

    .badge-online {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      background: rgba(6, 214, 160, 0.1);
      color: #06d6a0;
      border: 1px solid rgba(6, 214, 160, 0.2)
    }

    /* Batch Cards Mobile */
    .batch-cards {
      display: none;
    }

    @media(max-width: 768px) {
      .batch-table {
        display: none;
      }

      .batch-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .batch-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      }

      .bc-header {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 16px;
        padding-bottom: 12px;
      }

      .bc-header h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
      }

      .bc-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
        color: #111827;
      }

      .bc-label {
        font-weight: 600;
        color: #64748b;
      }

      .bc-cta {
        margin-top: 20px;
      }

      .bc-cta .btn-p {
        width: 100%;
        justify-content: center;
      }
    }

    .badge-offline {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      background: rgba(248, 113, 113, 0.1);
      color: #f48181;
      border: 1px solid rgba(248, 113, 113, 0.2)
    }

    .badge-both {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      background: rgba(0, 180, 216, 0.1);
      color: #00b4d8;
      border: 1px solid rgba(0, 180, 216, 0.2)
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: all .3s
    }

    .faq-item.open {
      border-color: rgba(0, 180, 216, 0.25);
      background: #f0f9ff
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      color: #1e293b;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      font-family: 'Inter', sans-serif;
      transition: color .2s
    }

    .faq-q:hover {
      color: #0077b6
    }

    .faq-q i {
      color: #00b4d8;
      transition: transform .3s;
      flex-shrink: 0
    }

    .faq-item.open .faq-q i {
      transform: rotate(180deg)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease
    }

    .faq-a-inner {
      padding: 0 24px 20px;
      font-size: 14px;
      color: #111827;
      line-height: 1.75
    }

    .faq-item.open .faq-a {
      max-height: 300px
    }

    .cta-section {
      background: linear-gradient(135deg, #0a1e3d, #0a3d62);
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(0, 180, 216, 0.1);
      border-bottom: 1px solid rgba(0, 180, 216, 0.1)
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent);
      pointer-events: none
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 60px;
      align-items: center
    }

    .cta-text h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px
    }

    .cta-text p {
      font-size: 16px;
      color: #cbd5e1;
      line-height: 1.75
    }

    .cta-form {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 30px
    }

    @media(max-width:900px) {
      .cta-inner {
        grid-template-columns: 1fr
      }
    }

    footer {
      background: #060f1e;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 70px 0 0
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 50px
    }

    .footer-brand .foot-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 900;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      margin-bottom: 4px
    }

    .footer-brand .foot-logo-sub {
      font-size: 10px;
      letter-spacing: 2px;
      color: #64748b;
      text-transform: uppercase;
      font-weight: 600;
      display: block;
      margin-bottom: 16px
    }

    .footer-brand p {
      font-size: 14px;
      color: #cbd5e1;
      line-height: 1.7;
      margin-bottom: 20px
    }

    .social-links {
      display: flex;
      gap: 10px
    }

    .social-link {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #64748b;
      font-size: 15px;
      text-decoration: none;
      transition: all .2s
    }

    .social-link:hover {
      background: rgba(0, 180, 216, 0.15);
      border-color: #00b4d8;
      color: #00b4d8
    }

    .foot-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 18px
    }

    .foot-links {
      list-style: none
    }

    .foot-links li {
      margin-bottom: 10px
    }

    .foot-links a {
      font-size: 14px;
      color: #cbd5e1;
      text-decoration: none;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .foot-links a:hover {
      color: #00b4d8
    }

    .foot-links a span {
      color: #00b4d8;
      font-size: 12px
    }

    .foot-contact a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #cbd5e1;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color .2s
    }

    .foot-contact a:hover {
      color: #00b4d8
    }

    .foot-contact i {
      color: #00b4d8;
      width: 14px
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px
    }

    .footer-bottom p {
      font-size: 13px;
      color: #111827
    }

    @media(max-width:900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:600px) {
      .footer-grid {
        grid-template-columns: 1fr
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }
    }

    .scroll-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #00b4d8, #0077b6);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(10px);
      transition: all .3s;
      z-index: 999;
      box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4)
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .scroll-top:hover {
      transform: translateY(-2px) scale(1.05)
    }

    .announce {
      background: linear-gradient(90deg, #0a3d62, #00b4d8, #0a3d62);
      background-size: 200% 100%;
      animation: shimmer 4s linear infinite;
      text-align: center;
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .3px
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    /* STICKY STRIP */
    .sticky-strip {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      display: flex;
      background: linear-gradient(135deg, #0a1628, #0d2144);
      border-top: 1px solid rgba(0, 180, 216, 0.2);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
    }

    .sticky-strip a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 10px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      transition: all .2s;
      border-right: 1px solid rgba(255, 255, 255, 0.08)
    }

    .sticky-strip a:last-child {
      border-right: none
    }

    .sticky-strip .strip-demo {
      background: linear-gradient(135deg, #0077b6, #00b4d8)
    }

    .sticky-strip .strip-demo:hover {
      background: linear-gradient(135deg, #005f8a, #0098b3)
    }

    .sticky-strip .strip-call {
      background: linear-gradient(135deg, #06d6a0, #04b885)
    }

    .sticky-strip .strip-call:hover {
      background: linear-gradient(135deg, #05b888, #03a070)
    }

    .sticky-strip .strip-wa {
      background: linear-gradient(135deg, #25d366, #128c7e)
    }

    .sticky-strip .strip-wa:hover {
      background: linear-gradient(135deg, #1fb855, #0e7a6f)
    }

    @media(max-width:480px) {
      .sticky-strip a {
        font-size: 12px;
        padding: 12px 6px;
        gap: 5px
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px)
      }

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

    /* MARQUEE */
    .marquee-wrap {
      overflow: hidden;
      display: flex
    }

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

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

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

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

    .marquee-item {
      min-width: 280px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #1e293b;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04)
    }

    .marquee-item i {
      color: #00b4d8
    }

    .mentor-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .mentor-text p {
      font-size: 16px;
      color: #cbd5e1;
      line-height: 1.85;
      margin-bottom: 20px
    }

    .mentor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .mentor-stat {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all .3s
    }

    .mentor-stat:hover {
      border-color: rgba(0, 180, 216, 0.3);
      transform: translateY(-4px)
    }

    .mentor-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }

    .mentor-stat p {
      font-size: 13px;
      color: #64748b;
      margin-top: 4px
    }

    @media(max-width:768px) {
      .mentor-layout {
        grid-template-columns: 1fr
      }
    }

    .text-center {
      text-align: center
    }

    .dark-sec .sl {
      color: #f97316
    }

    .dark-sec .st {
      color: #e2e8f0
    }

    .dark-sec .ss {
      color: #94a3b8
    }

    .dark-sec .why-card {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.08)
    }

    .dark-sec .why-card h4 {
      color: #e2e8f0
    }

    .dark-sec .why-card p {
      color: #94a3b8
    }

    .dark-sec .why-icon {
      background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.1));
      border: 1px solid rgba(0, 180, 216, 0.2)
    }

    /* Ticker Styles */
    .announce {
      background: linear-gradient(90deg, #0a3d62, #00b4d8, #0a3d62);
      background-size: 200% 100%;
      animation: shimmer 4s linear infinite;
      padding: 10px 0;
      color: #fff;
      z-index: 1001;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .marquee-wrap {
      overflow: hidden;
      white-space: nowrap;
      display: flex;
    }

    .marquee-track {
      display: flex;
      gap: 50px;
      animation: marquee 40s linear infinite;
      font-size: 14px;
      font-weight: 600;
    }

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

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

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

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }
  

  

    /* Global Marquee Ticker Optimization */
    .marquee-wrap {
      white-space: nowrap !important;
      overflow: hidden !important;
      display: flex !important;
      align-items: center !important;
    }

    .marquee-track {
      display: flex !important;
      flex-wrap: nowrap !important;
      white-space: nowrap !important;
      gap: 50px !important;
      align-items: center !important;
    }

    .marquee-track span {
      display: inline-block !important;
      white-space: nowrap !important;
    }
  

    /* ============================================================
       MOBILE RESPONSIVE FIX — Added for proper mobile rendering
       Uses cascade to override existing rules at mobile breakpoints.
       Does NOT change any design, animations, or visual identity.
       ============================================================ */

    /* --- Tablet (max-width: 991px) --- */
    @media (max-width: 991px) {
      .hero-inner {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 32px 20px !important;
      }
      .hero-card {
        max-width: 100% !important;
        width: 100% !important;
      }
      .cta-inner {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
      .cert-layout {
        grid-template-columns: 1fr !important;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
      }
    }

    /* --- Mobile (max-width: 768px) --- */
    @media (max-width: 768px) {
      body {
        padding-bottom: 56px !important;
      }
      .sec {
        padding: 50px 0 !important;
      }
      .sh {
        margin-bottom: 36px !important;
      }
      .st {
        font-size: 1.5rem !important;
      }
      .course-hero {
        min-height: auto !important;
      }
      .hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
      }
      .hero-desc {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
      }
      .hero-inner {
        padding: 40px 16px 20px !important;
        gap: 28px !important;
      }
      .hero-pills {
        gap: 8px !important;
      }
      .hero-pill {
        font-size: 12px !important;
        padding: 7px 12px !important;
      }
      .hero-btns {
        flex-direction: column !important;
        gap: 10px !important;
      }
      .hero-btns .btn-p,
      .hero-btns .btn-o {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
      }
      .hero-card {
        padding: 24px !important;
        border-radius: 16px !important;
      }
      .hero-card h3 {
        font-size: 18px !important;
      }
      .fg input,
      .fg select {
        padding: 11px 14px !important;
        font-size: 14px !important;
      }
      .form-submit {
        padding: 13px !important;
        font-size: 14px !important;
      }
      .stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
      }
      .stat-item .stat-num {
        font-size: 2rem !important;
      }
      .companies-row {
        gap: 10px !important;
      }
      .company-logo {
        padding: 12px 18px !important;
        font-size: 14px !important;
      }
      .testi-card {
        min-width: 280px !important;
      }
      .batch-table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
      }
      .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
      }
      .footer-bottom {
        flex-direction: column !important;
        gap: 4px !important;
        text-align: center !important;
      }
      .cta-inner {
        gap: 24px !important;
      }
      .cta-text h2 {
        font-size: 1.4rem !important;
      }
      .cta-form {
        padding: 24px !important;
      }
      .faq-q {
        font-size: 14px !important;
        padding: 16px 18px !important;
      }
      .faq-a-inner {
        padding: 0 18px 16px !important;
        font-size: 13px !important;
      }
      .announce {
        font-size: 11px !important;
        padding: 8px 12px !important;
      }
      .ctr {
        padding: 0 16px !important;
      }

      /* IIQ vs IdentityNow comparison table */
      .table-responsive,
      table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
      }

      /* Curriculum tabs on mobile */
      .tab-nav {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
        padding-bottom: 4px !important;
      }
      .tab-btn {
        white-space: nowrap !important;
        font-size: 12px !important;
        padding: 10px 14px !important;
        flex-shrink: 0 !important;
      }

      /* Why cards grid */
      .why-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }

      /* FSP badges row */
      .fsp-badges {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
      }

      /* About section grid */
      .about-grid,
      [style*="grid-template-columns:repeat(auto-fit,minmax(320px,1fr))"] {
        grid-template-columns: 1fr !important;
      }

      /* Mini stat cards */
      .mini-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
      }

      /* Mentor grid */
      .mentor-grid {
        grid-template-columns: 1fr !important;
      }
    }

    /* --- Small Mobile (max-width: 480px) --- */
    @media (max-width: 480px) {
      body {
        padding-bottom: 52px !important;
      }
      .hero-content h1 {
        font-size: 1.4rem !important;
      }
      .hero-pills {
        flex-direction: column !important;
      }
      .hero-pill {
        width: 100% !important;
      }
      .stats-row {
        grid-template-columns: 1fr 1fr !important;
      }
      .stat-item .stat-num {
        font-size: 1.75rem !important;
      }
      .marquee-item {
        min-width: 180px !important;
        font-size: 12px !important;
        padding: 10px 14px !important;
      }
      .student-pill {
        min-width: 150px !important;
        font-size: 11px !important;
      }
      .testi-card {
        min-width: 260px !important;
        padding: 20px !important;
      }
      .company-logo {
        padding: 10px 14px !important;
        font-size: 13px !important;
      }
      .fsp-badges {
        grid-template-columns: 1fr !important;
      }
      .mini-stats {
        grid-template-columns: 1fr 1fr !important;
      }
    }

    /* --- Sticky Strip Mobile Fix (all 3 buttons visible) --- */
    @media (max-width: 768px) {
      .sticky-strip {
        display: flex !important;
      }
      .sticky-strip a {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        font-size: 11px !important;
        padding: 12px 4px !important;
        gap: 4px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
      }
      .sticky-strip a i {
        font-size: 13px !important;
        flex-shrink: 0 !important;
      }
    }

    @media (max-width: 360px) {
      .sticky-strip a {
        font-size: 10px !important;
        padding: 11px 3px !important;
        gap: 3px !important;
      }
    }
  

    /* Scoped Custom CSS for Hero Color Palette */
    .fsp-wrap {
      font-family: 'Montserrat', 'Inter', sans-serif;
      color: #333;
      line-height: 1.5;
    }

    .fsp-wrap input,
    .fsp-wrap select,
    .fsp-wrap button {
      font-family: inherit;
    }

    /* Mobile First: Hero Section */
    .fsp-hero {
      background-color: #000;
      color: #fff;
      padding: 40px 20px;
      position: relative;
      overflow: hidden;
      margin-top: 68px;
      /* For fixed header */
    }

    .fsp-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      z-index: 10;
    }

    .fsp-hero-content {
      width: 100%;
    }

    .fsp-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #cffafe;
      background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
      backdrop-filter: blur(10px);
      border-left: 4px solid #22d3ee;
      box-shadow: 0 10px 30px -15px rgba(34, 211, 238, 0.6);
      margin-bottom: 20px;
    }

    @media (min-width: 769px) {
      .fsp-hero {
        padding: 80px 24px;
      }

      .fsp-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
      }

      .fsp-hero-content {
        flex: 1;
        min-width: 300px;
      }

      .fsp-badge {
        padding: 8px 24px;
        font-size: 14px;
        margin-bottom: 24px;
      }
    }

    .fsp-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      font-family: 'Outfit', sans-serif;
      margin-bottom: 16px;
    }

    .fsp-grad-text {
      background: linear-gradient(to right, #22d3ee, #f97316);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      margin-top: 8px;
    }

    .fsp-subtitle {
      font-size: 1.25rem;
      font-weight: 700;
      color: #cbd5e1;
      margin-bottom: 20px;
    }

    .fsp-desc {
      color: #d1d5db;
      font-size: 1rem;
      max-width: 600px;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .fsp-badges-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 30px;
    }

    @media (max-width: 600px) {
      .fsp-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }
    }

    .fsp-badge-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .fsp-badge-item:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(34, 211, 238, 0.3);
    }

    .fsp-badge-item i {
      color: #22d3ee;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .fsp-badge-text {
      font-size: 0.75rem;
      font-weight: 600;
      color: #e5e7eb;
      margin: 0;
      line-height: 1.2;
    }

    /* Mobile First: Form Card */
    .fsp-form-wrap {
      background: #fff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 420px;
      color: #111827;
      margin: 0 auto;
    }

    @media (min-width: 769px) {
      .fsp-form-wrap {
        border-radius: 24px;
        padding: 32px;
        margin: 0;
      }
    }

    .fsp-form-title {
      font-size: 1.50rem;
      font-weight: 700;
      margin-bottom: 8px;
      font-family: 'Outfit', sans-serif;
    }

    .fsp-form-subtitle {
      font-size: 0.875rem;
      color: #4b5563;
      margin-bottom: 24px;
    }

    .fsp-input-group {
      position: relative;
      margin-bottom: 16px;
    }

    .fsp-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      font-size: 16px;
      pointer-events: none;
    }

    .fsp-input {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 12px 16px 12px 48px;
      font-size: 15px;
      outline: none;
      transition: 0.3s;
      background: #fff;
      color: #111;
    }

    .fsp-input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    .fsp-select {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 12px 16px 12px 48px;
      font-size: 15px;
      outline: none;
      transition: 0.3s;
      background: #fff;
      color: #111;
      appearance: none;
    }

    .fsp-btn {
      width: 100%;
      background: #37454b;
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 8px;
    }

    .fsp-btn:hover {
      background: #111;
    }

    /* Mobile First: Global Section Padding */
    .sec {
      padding: 40px 0;
    }

    @media (min-width: 769px) {
      .sec {
        padding: 90px 0;
      }
    }

    /* Mobile First: Feature Strip */
    .feature-strip-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 24px 20px;
    }

    @media (min-width: 481px) {
      .feature-strip-inner {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 769px) {
      .feature-strip-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 28px 24px;
      }
    }

    /* Mobile First: Why Grid */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 769px) {
      .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
      }
    }

    /* Mobile First: About Stats */

    .about-card-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 20px;
    }

    .mini-stat {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 20px 12px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    @media (min-width: 769px) {
      .about-card-stack {
        gap: 16px;
      }

      .mini-stat {
        padding: 24px;
      }
    }

    .mini-stat:hover {
      border-color: rgba(0, 180, 216, 0.3);
      transform: translateY(-8px) scale(1.03);
      background: #f0f9ff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .mini-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }

    .mini-stat-label {
      font-size: 13px;
      color: #64748b;
      margin-top: 8px;
      font-weight: 600;
      line-height: 1.2;
    }

    @media (max-width: 480px) {
      .mini-stat-num {
        font-size: 1.8rem;
      }

      .mini-stat-label {
        font-size: 11px;
      }
    }

    /* Enhanced Mobile Responsiveness */
    @media (max-width: 480px) {
      .fsp-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
      }

      .fsp-title {
        font-size: 1.6rem !important;
      }

      .fsp-subtitle {
        font-size: 1rem;
      }

      .fsp-desc {
        font-size: 0.9rem;
      }
    }
  

          .about-right-col {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-self: start;
          }

          .desktop-only-premium-img {
            display: none;
          }

          @media (min-width: 769px) {
            .desktop-only-premium-img {
              display: block;
              width: 100%;
              height: 210px;
              object-fit: cover;
              border-radius: 16px;
              box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
              border: 1px solid rgba(0, 180, 216, 0.4);
            }
          }
        

        /* Mobile First: Company Logos */
        .companies-row {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
          margin-top: 32px;
        }

        .company-logo {
          padding: 16px 12px;
          min-height: 120px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          background: #fff;
          border: 1px solid #e2e8f0;
          border-radius: 12px;
          transition: all 0.3s ease;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          text-align: center;
        }

        .company-img {
          height: 36px;
          max-width: 100px;
          object-fit: contain;
          margin-bottom: 12px;
        }

        .company-name {
          font-size: 12px;
          font-weight: 700;
          color: #1e293b;
          font-family: 'Outfit', sans-serif;
          line-height: 1.2;
        }

        /* Desktop Enhancements */
        @media (min-width: 769px) {
          .companies-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
          }

          .company-logo {
            min-width: 180px;
            min-height: 140px;
            padding: 24px;
          }

          .company-img {
            height: 48px;
            max-width: 140px;
          }

          .company-name {
            font-size: 14px;
          }

          .company-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 180, 216, 0.3);
          }
        }
      