    /* ============================================
       DESIGN SYSTEM - ORANGE & WHITE THEME
    ============================================ */
    :root {
      /* Primary Orange Palette */
      --orange-100: #FFF4ED;
      --orange-200: #FFE8D9;
      --orange-300: #FFD4BF;
      --orange-400: #FFB088;
      --orange-500: #FF8C50;
      --orange-600: #FF6B35;
      --orange-700: #E55A25;
      --orange-800: #CC4A18;

      /* Logo Blue */
      --logo-blue: #3A55A5;
      --logo-blue-light: #4A68B8;

      /* Neutrals */
      --white: #FFFFFF;
      --off-white: #FEFEFE;
      --cream: #FDF8F5;
      --gray-100: #F8F9FA;
      --gray-200: #E9ECEF;
      --gray-300: #DEE2E6;
      --gray-400: #CED4DA;
      --gray-500: #ADB5BD;
      --gray-600: #6C757D;
      --gray-700: #495057;
      --gray-800: #343A40;
      --gray-900: #212529;

      /* Glassmorphism */
      --glass-bg: rgba(255, 255, 255, 0.7);
      --glass-bg-strong: rgba(255, 255, 255, 0.85);
      --glass-border: rgba(255, 255, 255, 0.5);
      --glass-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
      --glass-blur: blur(20px);

      /* Shadows */
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 24px rgba(255, 107, 53, 0.12);
      --shadow-lg: 0 16px 48px rgba(255, 107, 53, 0.15);
      --shadow-orange: 0 8px 30px rgba(255, 107, 53, 0.25);

      /* Transitions */
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

      /* Border Radius */
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 40px;
    }

    /* ============================================
       BASE STYLES
    ============================================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--white);
      color: var(--gray-800);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Logo Font - Comfortaa */
    h1,
    h2,
    h3,
    .brand-text {
      font-family: 'Comfortaa', cursive;
      font-weight: 700;
    }

    h4,
    h5,
    h6 {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
    }

    /* ============================================
       GLASSMORPHISM COMPONENTS
    ============================================ */
    .glass-card {
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-radius: var(--radius-lg);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      transition: var(--transition);
    }

    .glass-card:hover {
      background: var(--glass-bg-strong);
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .glass-card-strong {
      background: var(--glass-bg-strong);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: var(--glass-shadow);
    }

    /* ============================================
       TOPBAR
    ============================================ */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1001;
      padding: 10px 6%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      background: transparent;
      transition: var(--transition);
      flex-wrap: wrap;
    }

    .topbar.scrolled {
      background: rgba(255, 107, 53, 0.95);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
    }

    .topbar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--gray-700);
      transition: var(--transition);
    }

    .topbar.scrolled .topbar-item {
      color: var(--white);
    }

    .topbar-item i {
      font-size: 14px;
      color: var(--orange-600);
    }

    .topbar.scrolled .topbar-item i {
      color: var(--white);
    }

    .topbar-item a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    .topbar-item a:hover {
      color: var(--orange-600);
    }

    .topbar.scrolled .topbar-item a:hover {
      color: var(--orange-200);
    }

    /* ============================================
       NAVBAR
    ============================================ */
    .navbar {
      position: fixed;
      top: 40px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      transition: var(--transition);
    }

    .navbar.scrolled {
      top: 35px;
      background: var(--glass-bg-strong);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--shadow-sm);
      padding: 15px 6%;
    }

    .navbar-brand img {
      height: 50px;
      transition: var(--transition);
    }

    .nav-links {
      display: flex;
      gap: 50px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--gray-700);
      font-weight: 600;
      font-size: 15px;
      font-family: 'Comfortaa', cursive;
      position: relative;
      transition: var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--orange-600);
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-links a:hover {
      color: var(--orange-600);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 14px 32px;
      background: var(--orange-600);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-family: 'Comfortaa', cursive;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: var(--shadow-orange);
    }

    .nav-cta:hover {
      background: var(--orange-700);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--orange-600);
    }

    /* ============================================
       HERO SECTION
    ============================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--white) 0%, var(--orange-100) 50%, var(--orange-200) 100%);
    }

    /* Animated Background Shapes */
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange-400), var(--orange-300));
      opacity: 0.3;
      filter: blur(80px);
      animation: floatShape 20s ease-in-out infinite;
    }

    .shape-1 {
      width: 500px;
      height: 500px;
      top: -150px;
      right: -100px;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: -50px;
      animation-delay: -7s;
    }

    .shape-3 {
      width: 300px;
      height: 300px;
      top: 50%;
      left: 40%;
      animation-delay: -14s;
    }

    @keyframes floatShape {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      25% {
        transform: translate(40px, -40px) scale(1.05);
      }

      50% {
        transform: translate(-30px, 30px) scale(0.95);
      }

      75% {
        transform: translate(20px, 40px) scale(1.03);
      }
    }

    .hero-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 120px 6% 80px;
      max-width: 1500px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-content {
      animation: fadeInUp 1s ease;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      background: var(--glass-bg-strong);
      backdrop-filter: var(--glass-blur);
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      color: var(--orange-600);
      margin-bottom: 28px;
      border: 1px solid var(--orange-200);
    }

    .hero-badge i {
      font-size: 16px;
    }

    .hero-title {
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1.15;
      margin-bottom: 24px;
      color: var(--logo-blue);
    }

    .hero-logo-img {
      max-width: 450px;
      width: 100%;
      height: auto;
    }

    .hero-infoserve {
      font-family: 'Comfortaa', cursive;
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 700;
      color: #fe7a00;
      margin-top: -10px;
      margin-left: 26px;
    }

    .hero-title .highlight {
      display: inline-block;
      position: relative;
      width: 0.7em;
      height: 1.1em;
      vertical-align: middle;
      margin: 0 -0.05em;
      margin-right: 2px;
    }

    .hero-title .highlight svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(15deg);
      width: 100%;
      height: 100%;
    }

    .hero-title .text-orange {
      color: var(--orange-600);
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--gray-600);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .hero-tagline {
      font-size: 22px;
      font-weight: 700;
      color: var(--orange-600);
      margin-bottom: 36px;
      font-family: 'Comfortaa', cursive;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 40px;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-number {
      font-size: 36px;
      font-weight: 700;
      color: var(--orange-600);
      font-family: 'Comfortaa', cursive;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--gray-600);
      margin-top: 4px;
    }

    .hero-cta-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 18px 40px;
      background: var(--orange-600);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      font-family: 'Comfortaa', cursive;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: var(--shadow-orange);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      background: var(--orange-700);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .btn-outline {
      padding: 18px 40px;
      background: transparent;
      color: var(--logo-blue);
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      font-family: 'Comfortaa', cursive;
      border-radius: 50px;
      border: 2px solid var(--logo-blue);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-outline:hover {
      background: var(--logo-blue);
      color: var(--white);
      transform: translateY(-4px);
    }

    .hero-image {
      position: relative;
      animation: fadeInRight 1s ease 0.3s both;
    }

    .hero-image img {
      width: 100%;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }

    .hero-image-overlay {
      position: absolute;
      bottom: -30px;
      left: -30px;
      background: var(--glass-bg-strong);
      backdrop-filter: var(--glass-blur);
      padding: 24px 32px;
      border-radius: var(--radius-md);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
    }

    .hero-image-overlay p {
      font-size: 14px;
      color: var(--gray-600);
      margin-bottom: 4px;
    }

    .hero-image-overlay h4 {
      font-size: 20px;
      color: var(--orange-600);
      font-family: 'Comfortaa', cursive;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ============================================
       ABOUT SECTION
    ============================================ */
    .about-section {
      padding: 120px 6%;
      background: var(--white);
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-images {
      position: relative;
    }

    .about-img-main {
      width: 85%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .about-img-secondary {
      position: absolute;
      bottom: -40px;
      right: 0;
      width: 55%;
      border-radius: var(--radius-md);
      border: 6px solid var(--white);
      box-shadow: var(--shadow-md);
    }

    .about-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--logo-blue);
      margin-bottom: 24px;
    }

    .about-content h2 span {
      color: #3a55a5;
    }

    .about-content p {
      font-size: 17px;
      color: var(--gray-600);
      margin-bottom: 20px;
      line-height: 1.9;
    }

    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      background: var(--orange-100);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .about-feature:hover {
      background: var(--orange-200);
      transform: translateX(5px);
    }

    .about-feature i {
      font-size: 22px;
      color: var(--orange-600);
    }

    .about-feature span {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-700);
    }

    /* ============================================
       CERTIFICATIONS - GLASSMORPHISM
    ============================================ */
    .certifications-section {
      padding: 100px 6%;
      background: linear-gradient(180deg, var(--orange-100), var(--white));
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-label {
      display: inline-block;
      padding: 10px 24px;
      background: var(--orange-600);
      color: var(--white);
      font-weight: 600;
      font-size: 13px;
      font-family: 'Comfortaa', cursive;
      border-radius: 50px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--logo-blue);
      margin-bottom: 16px;
    }

    .section-title span {
      color: #3a55a5;
    }

    .section-desc {
      font-size: 18px;
      color: var(--gray-600);
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cert-card {
      text-align: center;
      padding: 36px 24px;
    }

    .cert-card i {
      font-size: 42px;
      color: var(--orange-600);
      margin-bottom: 18px;
      display: block;
    }

    .cert-card h4 {
      font-size: 16px;
      font-family: 'Comfortaa', cursive;
      color: var(--logo-blue);
      margin-bottom: 8px;
    }

    .cert-card p {
      font-size: 13px;
      color: var(--gray-600);
    }

    /* ============================================
       CORE SERVICES
    ============================================ */
    .services-section {
      padding: 120px 6%;
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-card {
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow: var(--shadow-orange);
    }

    .service-icon i {
      font-size: 32px;
      color: var(--white);
    }

    .service-card h3 {
      font-size: 22px;
      color: var(--logo-blue);
      margin-bottom: 20px;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-200);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      transition: var(--transition);
    }

    .service-list li:last-child {
      border-bottom: none;
    }

    .service-list li i {
      color: var(--orange-600);
      font-size: 14px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .service-list li a {
      color: var(--gray-700);
      text-decoration: none;
      transition: var(--transition);
      flex: 1;
    }

    .service-list li:hover a {
      color: var(--orange-600);
      padding-left: 8px;
    }



    /* ============================================
       WHY CHOOSE US
    ============================================ */
    .why-section {
      padding: 120px 6%;
      background: var(--white);
    }

    .why-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--logo-blue);
      margin-bottom: 24px;
    }

    .why-content h2 span {
      color: #3a55a5;
    }

    .why-content p {
      font-size: 17px;
      color: var(--gray-600);
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .why-item {
      padding: 28px;
    }

    .why-item h4 {
      font-size: 38px;
      color: var(--orange-600);
      font-family: 'Comfortaa', cursive;
      margin-bottom: 8px;
    }

    .why-item p {
      font-size: 14px;
      color: var(--gray-600);
      margin-bottom: 0;
    }

    .why-image img {
      width: 100%;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }

    /* ============================================
       CONTACT SECTION
    ============================================ */
    .contact-section {
      padding: 120px 6% 80px;
      background: #0D0D0D;
      color: var(--white);
      position: relative;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 300px;
      background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15), transparent 70%);
      pointer-events: none;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
    }

    .contact-info h2 {
      font-size: 42px;
      margin-bottom: 24px;
    }

    .contact-info h2 span {
      color: var(--orange-400);
    }

    .contact-info p {
      font-size: 16px;
      opacity: 0.85;
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 28px;
    }

    .contact-icon {
      width: 54px;
      height: 54px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon i {
      font-size: 22px;
      color: var(--orange-400);
    }

    .contact-item h4 {
      font-size: 13px;
      opacity: 0.7;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .contact-item h3 {
      font-size: 18px;
      font-weight: 600;
    }

    .contact-form-wrapper {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: var(--glass-blur);
      border-radius: var(--radius-xl);
      padding: 48px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-form-wrapper h3 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 18px 22px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-sm);
      color: var(--white);
      font-family: inherit;
      font-size: 15px;
      transition: var(--transition);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--orange-400);
      background: rgba(255, 255, 255, 0.18);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    .captcha-group {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .captcha-group input {
      flex: 1;
      max-width: 200px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-sm);
      color: var(--white);
      font-size: 15px;
    }

    .captcha-code {
      padding: 14px 28px;
      background: var(--orange-600);
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 4px;
      font-family: 'Comfortaa', cursive;
    }

    .captcha-refresh {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.15);
      border: none;
      border-radius: var(--radius-sm);
      color: var(--white);
      cursor: pointer;
      transition: var(--transition);
      font-size: 18px;
    }

    .captcha-refresh:hover {
      background: var(--orange-600);
    }

    .btn-submit {
      width: 100%;
      padding: 20px;
      background: var(--orange-600);
      color: var(--white);
      border: none;
      font-weight: 700;
      font-size: 16px;
      font-family: 'Comfortaa', cursive;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .btn-submit:hover {
      background: var(--orange-700);
      transform: translateY(-3px);
      box-shadow: var(--shadow-orange);
    }

    /* ============================================
       FOOTER - MODERN ROUNDED DESIGN
    ============================================ */
    .footer-wrapper {
      background: #0D0D0D;
      padding: 0 6% 60px;
    }

    .footer {
      background: #0D0D0D;
      color: var(--white);
      border-radius: 32px;
      padding: 60px 50px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 80px;
      gap: 50px;
      align-items: start;
    }

    /* Brand Column */
    .footer-brand {
      padding-right: 40px;
    }

    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      margin-left: -16px;
    }

    .footer-brand-logo img {
      height: 40px;
    }

    .footer-tagline {
      margin-bottom: 8px;
    }

    .footer-tagline h3 {
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
      font-family: 'Comfortaa', cursive;
    }

    .footer-tagline h3 span {
      color: var(--gray-500);
      font-weight: 400;
    }

    .footer-description {
      margin-top: 24px;
    }

    .footer-description p {
      font-size: 14px;
      line-height: 1.8;
      color: var(--gray-400);
      margin-bottom: 16px;
    }

    .footer-description p:last-child {
      margin-bottom: 0;
    }

    /* Newsletter */
    .footer-newsletter {
      margin-top: 28px;
    }

    .footer-newsletter p {
      font-size: 14px;
      color: var(--gray-400);
      margin-bottom: 14px;
    }

    .newsletter-form {
      display: flex;
      align-items: center;
      background: #1A1A1A;
      border-radius: 50px;
      padding: 6px;
      border: 1px solid #2A2A2A;
    }

    .newsletter-form input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 12px 20px;
      color: var(--white);
      font-size: 14px;
      outline: none;
    }

    .newsletter-form input::placeholder {
      color: var(--gray-500);
    }

    .newsletter-form button {
      width: 44px;
      height: 44px;
      background: var(--orange-600);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .newsletter-form button i {
      color: var(--white);
      font-size: 16px;
    }

    .newsletter-form button:hover {
      background: var(--orange-700);
      transform: scale(1.05);
    }

    /* Footer Nav Columns */
    .footer-nav {
      display: contents;
    }

    .footer-column {
      padding-top: 10px;
    }

    .footer-column h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-400);
      margin-bottom: 24px;
      font-family: 'Nunito', sans-serif;
    }

    .footer-column h4::after {
      display: none;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 16px;
    }

    .footer-column ul a {
      color: var(--white);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: var(--transition);
      display: inline-block;
    }

    .footer-column ul a:hover {
      color: var(--orange-500);
      transform: translateX(4px);
    }

    /* Social Icons - Vertical Stack */
    .footer-social-vertical {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 10px;
    }

    .footer-social-vertical a {
      width: 46px;
      height: 46px;
      background: transparent;
      border: 1px solid #333;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-400);
      text-decoration: none;
      transition: var(--transition);
      font-size: 18px;
    }

    .footer-social-vertical a:hover {
      border-color: var(--orange-600);
      color: var(--orange-600);
      transform: scale(1.1);
    }

    /* Footer Bottom */
    .footer-bottom {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid #222;
      text-align: center;
      font-size: 14px;
      color: var(--gray-500);
    }

    .footer-bottom span {
      color: var(--orange-500);
    }

    .footer-bottom a {
      color: #ff8c50;
      font-weight: 600;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #ff823e;
      text-decoration: underline;
    }



    /* ============================================
       VALUABLE PARTNERS - INFINITE SLIDER
    ============================================ */
    .partners-section {
      padding: 80px 0;
      background: var(--gray-100);
      overflow: hidden;
    }

    .partners-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .partners-slider {
      display: flex;
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .partners-track {
      display: flex;
      align-items: center;
      gap: 60px;
      animation: scroll 40s linear infinite;
      width: max-content;
      padding: 0 30px;
    }

    .partner-logo {
      width: 150px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: none;
      opacity: 1;
      transition: var(--transition);
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ============================================
       ROBUST DELIVERY MODEL
    ============================================ */
    .delivery-model-section {
      padding: 120px 6%;
      background: var(--white);
    }

    .delivery-steps {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 60px;
      flex-wrap: wrap;
    }

    .delivery-step {
      flex: 1;
      min-width: 200px;
      background: transparent;
      color: var(--gray-600);
      border: 2px solid var(--orange-600);
      padding: 30px 24px;
      border-radius: var(--radius-md);
      position: relative;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .delivery-step:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-orange);
      background: var(--orange-600);
      color: var(--white);
    }

    .delivery-step:hover .step-number,
    .delivery-step:hover .step-title,
    .delivery-step:hover .step-desc {
      color: var(--white);
      opacity: 1;
    }

    .step-number {
      font-size: 48px;
      font-weight: 700;
      font-family: 'Comfortaa', cursive;
      margin-bottom: 16px;
      color: var(--orange-600);
      transition: var(--transition);
    }

    .step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
      color: var(--logo-blue);
      transition: var(--transition);
    }

    .step-desc {
      font-size: 14px;
      opacity: 0.9;
      line-height: 1.6;
      transition: var(--transition);
    }

    /* ============================================
       TESTIMONIALS SECTION
    ============================================ */
    .testimonials-section {
      padding: 120px 6%;
      background: var(--gray-100);
    }

    .testimonials-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .testimonials-visual {
      position: relative;
    }

    .testimonials-visual img {
      width: 100%;
      max-width: 500px;
      display: block;
      margin: 0 auto;
      box-shadow: var(--shadow-lg);
    }

    .testimonial-content {
      padding-right: 40px;
    }

    .testimonial-quote {
      font-size: 20px;
      line-height: 1.8;
      color: var(--gray-600);
      margin-bottom: 32px;
      font-style: italic;
    }

    .testimonial-author h4 {
      font-size: 20px;
      color: var(--logo-blue);
      margin-bottom: 4px;
    }

    .testimonial-author p {
      font-size: 14px;
      color: var(--gray-500);
      margin-bottom: 0;
    }

    .testimonial-nav {
      display: flex;
      gap: 16px;
      margin-top: 40px;
    }

    .nav-btn {
      width: 50px;
      height: 50px;
      border: 1px solid var(--gray-400);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-600);
      cursor: pointer;
      transition: var(--transition);
      background: transparent;
    }

    .nav-btn:hover {
      border-color: var(--orange-600);
      color: var(--orange-600);
      transform: scale(1.1);
    }

    @media (max-width: 992px) {
      .delivery-steps {
        flex-direction: column;
        gap: 30px;
      }

      .testimonials-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
      }

      .testimonial-content {
        padding-right: 0;
      }

      .testimonial-nav {
        justify-content: center;
      }
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1200px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-cta-group {
        justify-content: center;
      }

      .hero-image-overlay {
        left: 50%;
        transform: translateX(-50%);
      }

      .cert-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {

      .about-container,
      .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }



      .contact-container {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .footer-social-vertical {
        flex-direction: row;
        grid-column: span 2;
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 15px 5%;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: center;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-form-wrapper {
        padding: 32px 24px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }

      .footer-brand {
        padding-right: 0;
      }

      .footer-brand-logo {
        justify-content: center;
      }

      .footer-social-vertical {
        flex-direction: row;
        justify-content: center;
      }

      .footer {
        padding: 40px 30px;
        border-radius: 24px;
      }

      .footer-wrapper {
        padding: 40px 4%;
      }
    }

    @media (max-width: 480px) {
      .cert-grid {
        grid-template-columns: 1fr;
      }

      .captcha-group {
        flex-direction: column;
        align-items: stretch;
      }

      .captcha-group input {
        max-width: 100%;
      }
    }

    /* ============================================
       SPLIT PANEL MEGA MENU
    ============================================ */
    .nav-links li.has-dropdown {
      position: static;
      height: 100%;
      display: flex;
      align-items: center;
    }

    /* Invisible bridge to prevent hover loss */


    .mega-menu-container {
      position: absolute;
      top: calc(100% + 10px);
      /* Position slightly below navbar */
      left: 0;
      right: 0;
      width: 100%;
      padding-top: 24px;
      padding-left: 6%;
      padding-right: 6%;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 9999;
      pointer-events: none;
    }

    .nav-links li.has-dropdown:hover .mega-menu-container,
    .nav-links li.has-dropdown.dropdown-active .mega-menu-container,
    .mega-menu-container:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(-44px);
      pointer-events: auto;
    }

    @media (max-width: 992px) {
      .nav-links li.has-dropdown.dropdown-active .mega-menu-container {
        position: relative;
        top: 0;
        transform: none;
        padding-left: 0;
        padding-right: 0;
        box-shadow: none;
        background: #f9f9f9;
      }

      .split-sidebar {
        display: none;
        /* Hide sidebar on mobile to save space */
      }

      .split-content {
        width: 100%;
        padding-left: 0;
      }

      .split-services {
        display: block;
        /* Show all or handle accordions? For now show all stacked or first one */
        /* Actually, showing multiple is messy. Maybe just show links directly? */
        /* The split menu is complex. I'll hide sidebar and stack services or use accordion logic inside mega menu? */
        /* Simplification: On mobile, list services as simple links if possible. */
        /* But HTML structure is fixed. I'll just let them stack. */
        display: none;
      }

      .split-services.active {
        display: block;
      }

      /* Force first tab active if none? JS handles active state. */
      /* I'll unhide sidebar if space permits, or make sidebar stack on top. */
      .split-sidebar {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
      }

      .split-category {
        flex: 0 0 auto;
        padding: 10px;
        font-size: 14px;
      }
    }

    /* ============================================
       PAGE SPECIFIC STYLES & UTILITIES
    ============================================ */

    /* Service Title Link */
    .service-title-link {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .service-title-link:hover {
      color: var(--orange-600);
    }

    /* Testimonial Slider Utilities */
    .testimonial-slide {
      display: none;
      animation: fadeEffect 0.8s;
    }

    .testimonial-slide.active {
      display: block;
    }

    @keyframes fadeEffect {
      from {
        opacity: 0;
        transform: translateX(20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Utilities */
    .text-center {
      text-align: center;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .mb-10 {
      margin-bottom: 10px;
    }

    .mb-20 {
      margin-bottom: 20px;
    }

    .mb-30 {
      margin-bottom: 30px;
    }

    .mb-40 {
      margin-bottom: 40px;
    }

    .w-100 {
      width: 100%;
    }

    .mw-800 {
      max-width: 800px;
    }

    .mw-1000 {
      max-width: 1000px;
    }

    .mw-1200 {
      max-width: 1200px;
    }

    .section-label-center {
      justify-content: center;
    }

    /* Page Hero */
    .page-hero {
      min-height: 300px;
      padding-top: 120px;
      padding-bottom: 60px;
      position: relative;
    }

    .hero-content-center {
      text-align: center;
      grid-template-columns: 1fr;
      padding-bottom: 0;
    }

    /* Contact Page */
    .contact-info-section {
      padding: 60px 6%;
      margin-top: -60px;
      position: relative;
      z-index: 2;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .icon-circle-lg {
      width: 60px;
      height: 60px;
      background: var(--orange-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--orange-600);
      font-size: 24px;
    }

    .contact-card-title {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .contact-card-text {
      color: var(--gray-600);
      margin-bottom: 5px;
    }

    .contact-link {
      font-size: 18px;
      color: var(--logo-blue);
      font-weight: 700;
      text-decoration: none;
    }

    .contact-address {
      font-size: 16px;
      color: var(--logo-blue);
      font-weight: 600;
    }

    .contact-form-map-section {
      padding: 0 6% 100px;
    }

    .cf-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .form-wrapper {
      padding: 40px;
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--gray-700);
    }

    .form-control-custom {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--gray-300);
      border-radius: 8px;
      font-family: inherit;
    }

    .map-wrapper {
      height: 100%;
      min-height: 500px;
      overflow: hidden;
      position: relative;
    }

    .map-embed {
      border: 0;
      width: 100%;
      height: 100%;
    }

    .map-overlay-card {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Career Page */
    .careers-section {
      padding: 60px 6%;
      background: var(--gray-100);
    }

    .job-card {
      margin-bottom: 20px;
      padding: 24px;
      cursor: pointer;
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      border-radius: var(--radius-lg);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      transition: var(--transition);
    }

    .job-card:hover {
      background: var(--glass-bg-strong);
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .job-icon-circle {
      background: var(--orange-100);
      color: var(--orange-600);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .job-details {
      padding-top: 20px;
      margin-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      display: none;
    }

    .job-list {
      margin-left: 20px;
      margin-bottom: 20px;
      color: var(--gray-700);
    }

    .apply-link {
      color: var(--orange-600);
      font-weight: 600;
      text-decoration: none;
    }

    .apply-section {
      padding: 80px 6%;
      background: white;
    }

    .upload-box {
      border: 2px dashed var(--gray-400);
      padding: 30px;
      text-align: center;
      border-radius: 8px;
      background: var(--gray-100);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .upload-box:hover {
      background: var(--orange-100);
      border-color: var(--orange-600);
    }

    .upload-icon {
      font-size: 32px;
      color: var(--gray-500);
      display: block;
      margin-bottom: 10px;
    }

    /* About Page - Partners Grid */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto;
    }

    .partner-card-box {
      border: 1px solid var(--gray-300);
      border-radius: 12px;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 160px;
      transition: all 0.3s ease;
      background: white;
    }

    .partner-card-box:hover {
      border-color: var(--orange-600);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    .partner-logo-img {
      max-width: 100%;
      max-height: 80px;
      /* filter: grayscale(100%); Removed grayscale */
      opacity: 1;
      /* Full opacity */
      transition: all 0.3s ease;
      object-fit: contain;
    }

    .partner-card-box:hover .partner-logo-img {
      /* filter: grayscale(0); */
      /* opacity: 1; */
      transform: scale(1.1);
    }

    /* Mega Menu Chevron */
    .chevron-icon {
      font-size: 12px;
      margin-left: 4px;
    }



    .mega-menu-inner {
      background: rgba(255, 255, 255, 0.95);
      /* More opaque */
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
      display: flex;
      height: 500px;
      overflow: hidden;
      max-width: 1400px;
      margin: 0 auto;
    }



    /* Sidebar Styling */
    .split-sidebar {
      width: 300px;
      background: linear-gradient(180deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 0.8));
      padding: 30px 0;
      flex-shrink: 0;
      border-right: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
    }

    .split-category {
      text-decoration: none;
      padding: 18px 30px;
      color: var(--gray-600);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 500;
      font-size: 15px;
    }

    .split-category:hover,
    .split-category.active {
      background: white;
      color: var(--orange-600);
      font-weight: 600;
      padding-left: 36px;
    }

    .split-category::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--orange-600);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .split-category.active::before {
      opacity: 1;
    }

    .split-category i {
      font-size: 20px;
      opacity: 0.7;
    }

    .split-category.active i {
      opacity: 1;
    }

    /* Content Area Styling */
    .split-content {
      flex: 1;
      padding: 50px;
      overflow-y: auto;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
      position: relative;
    }

    .split-services {
      display: none;
      animation: fadeInRight 0.4s ease forwards;
    }

    .split-services.active {
      display: block;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(10px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .split-header {
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding-bottom: 20px;
    }

    .split-header h3 {
      color: var(--logo-blue);
      font-size: 28px;
      font-family: 'Comfortaa', cursive;
      margin-bottom: 8px;
    }

    .split-header p {
      color: var(--gray-500);
      font-size: 14px;
    }

    .split-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .split-item {
      display: block;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      text-decoration: none;
      color: var(--gray-700);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .split-item:hover {
      background: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      border-color: transparent;
    }

    .split-item span {
      position: relative;
      z-index: 2;
      font-weight: 500;
    }

    .split-item i {
      margin-right: 10px;
      color: var(--orange-400);
      transition: all 0.3s ease;
    }

    .split-item:hover i {
      color: var(--orange-600);
    }

    /* Featured Box inside Dropdown */
    .split-featured {
      margin-top: 40px;
      background: linear-gradient(135deg, var(--logo-blue), #2c4285);
      padding: 24px;
      border-radius: 16px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .split-featured-text h4 {
      font-size: 18px;
      margin-bottom: 4px;
      color: white;
    }

    .split-featured-text p {
      font-size: 13px;
      opacity: 0.8;
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
    }

    .split-featured a {
      background: white;
      color: var(--logo-blue);
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .split-featured a:hover {
      background: var(--orange-600);
      color: white;
    }

    /* About Page Specific Styles */
    .about-hero {
      min-height: 350px;
      padding-top: 140px;
      padding-bottom: 60px;
      position: relative;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 242, 245, 0.8));
    }

    .about-hero h1 {
      font-size: 48px;
      color: var(--logo-blue);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .about-overview-section {
      padding: 80px 6%;
      background: white;
    }

    .about-section-title {
      font-size: 36px;
      color: var(--logo-blue);
      margin-bottom: 20px;
    }

    .about-section-title span {
      color: var(--orange-600);
      font-size: 1.1em;
      /* Make it slightly bigger */
      display: inline-block;
    }

    .differentiators-section {
      padding: 80px 6%;
      background: var(--gray-100);
      position: relative;
    }

    .diff-card {
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .diff-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: var(--orange-200);
    }

    .diff-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--logo-blue), var(--orange-600));
      opacity: 0;
      transition: 0.3s;
    }

    .diff-card:hover::before {
      opacity: 1;
    }

    .diff-icon {
      width: 70px;
      height: 70px;
      background: rgba(42, 59, 117, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: var(--logo-blue);
      font-size: 32px;
      transition: 0.3s;
    }

    .diff-card:hover .diff-icon {
      background: var(--logo-blue);
      color: white;
      transform: rotateY(180deg);
    }

    .mission-vision-section {
      padding: 80px 6%;
      background: white;
    }

    .partners-section {
      padding: 80px 6%;
      background: var(--gray-50);
      text-align: center;
    }

    /* ============================================
       MOBILE RESPONSIVENESS FIXES
    ============================================ */

    /* Tablet & Mobile Menu Adjustments */
    @media (max-width: 992px) {

      /* Hide Topbar to fix overlap and save space */
      .topbar {
        display: none !important;
      }

      /* Reset Navbar Position */
      .navbar {
        top: 0 !important;
        padding: 15px 5%;
        background: rgba(255, 255, 255, 0.95);
        /* Solid bg for mobile */
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      /* Ensure Navbar items are visible */
      .navbar-brand img {
        height: 40px;
      }

      .mobile-toggle {
        display: block;
        font-size: 28px;
        color: var(--orange-600);
        cursor: pointer;
        z-index: 1002;
      }

      /* Hide Desktop Nav Links by default */
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 6%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        gap: 0;
        max-height: 80vh;
        overflow-y: auto;
      }

      .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
      }

      .nav-cta {
        display: none;
        /* Simplify mobile menu */
      }

      /* Mega Menu - Vertical Accordion Transformation */
      .mega-menu-container {
        position: static;
        width: 100%;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Toggled via JS */
        transform: none;
        box-shadow: none;
        background: transparent;
        pointer-events: auto;
      }

      /* Explicitly disable hover effect on mobile */
      .nav-links li.has-dropdown:hover .mega-menu-container {
        display: none;
      }

      /* Only show when active class is present */
      .nav-links li.has-dropdown.dropdown-active .mega-menu-container {
        display: block !important;
        animation: fadeIn 0.3s ease;
      }

      .mega-menu-inner {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        display: block;
        height: auto;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
      }

      /* Sidebar becomes the main list */
      .split-sidebar {
        width: 100%;
        border-right: none;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        /* Space between categories */
        margin-bottom: 0;
        border-bottom: none;
      }

      /* Category Card Styling */
      .split-category {
        padding: 18px 24px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        width: 100%;
        justify-content: space-between;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
        margin-bottom: 0;
        /* Handled by gap */
        font-weight: 700;
        color: var(--gray-700);
      }

      .split-category:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      }

      .split-category.active {
        background: var(--orange-100);
        color: var(--orange-700);
        border-color: var(--orange-200);
        padding-left: 24px;
        /* No shift */
        box-shadow: none;
      }

      .split-category::after {
        content: '\F282';
        /* Bootstrap Icon Chevron Down */
        font-family: 'bootstrap-icons';
        font-size: 14px;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        color: var(--gray-500);
      }

      .split-category.active::after {
        transform: rotate(180deg);
        color: var(--orange-600);
      }

      .split-category::before {
        display: none;
      }

      .split-category i {
        font-size: 20px;
        color: var(--orange-500);
        opacity: 1;
      }

      /* Content Area */
      .split-content {
        width: 100%;
        padding: 0;
        background: transparent;
        flex: none;
      }

      /* Service Panels (Drawer) */
      .split-services {
        display: none;
        padding: 20px 10px 20px 24px;
        /* Indented left padding */
        background: transparent;
        margin-top: -8px;
        /* Slight overlap visually handled by margin */
        margin-bottom: 12px;
        border-left: 2px solid var(--orange-200);
        margin-left: 24px;
        /* Align with category content */
        animation: drawerOpen 0.4s ease forwards;
      }

      @keyframes drawerOpen {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .split-services.active {
        display: block;
      }

      .split-header {
        display: none;
        /* Hide header on mobile for cleaner look */
      }

      .split-grid {
        grid-template-columns: 1fr;
        gap: 0;
        /* List view */
      }

      /* Service Links (List Items) */
      .split-item {
        padding: 14px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        border-radius: 0;
        display: flex;
        align-items: center;
        color: var(--gray-600);
        font-weight: 600;
        font-size: 15px;
      }

      .split-item:last-child {
        border-bottom: none;
      }

      .split-item:hover {
        background: transparent;
        transform: translateX(6px);
        color: var(--orange-600);
        box-shadow: none;
      }

      .split-item i {
        font-size: 18px;
        margin-right: 14px;
        color: var(--gray-400);
        width: 24px;
        /* Fixed width for alignment */
        text-align: center;
      }

      .split-item:hover i {
        color: var(--orange-600);
      }

      /* Featured Box */
      .split-featured {
        margin-top: 20px;
        background: linear-gradient(135deg, var(--logo-blue), #2c4285);
        border-radius: 12px;
        padding: 20px;
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        box-shadow: 0 8px 20px rgba(58, 85, 165, 0.2);
      }

      .split-featured-text h4 {
        font-size: 16px;
      }

      .split-featured a {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
      }
    }

    /* Mobile Layout & Spacing */
    @media (max-width: 768px) {

      /* Reduce Padding */
      .hero-container,
      .about-section,
      .services-section,
      .certifications-section,
      .delivery-model-section,
      .why-section,
      .testimonials-section,
      .contact-section,
      .page-hero,
      .about-overview-section,
      .differentiators-section,
      .mission-vision-section {
        padding: 60px 5% !important;
      }

      /* Hero Section */
      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px !important;
        /* Extra top padding for navbar */
        gap: 40px;
      }

      .hero-title {
        font-size: clamp(32px, 8vw, 42px);
      }

      .hero-infoserve {
        font-size: clamp(32px, 8vw, 42px);
        margin-left: 10px;
      }

      .hero-logo-img {
        max-width: 80%;
        margin: 0 auto;
      }

      .hero-stats {
        justify-content: center;
        gap: 20px;
      }

      .hero-cta-group {
        justify-content: center;
      }

      /* Prevent horizontal overflow */
      body,
      html {
        overflow-x: hidden;
      }

      .hero {
        overflow: hidden;
      }

      /* Card Grids - Stack to 1 Column */
      .services-grid,
      .cert-grid,
      .why-grid,
      .about-features,
      .partners-grid,
      .contact-grid,
      .form-row,
      .form-grid-2 {
        grid-template-columns: 1fr !important;
      }

      /* Footer */
      .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-brand {
        padding-right: 0;
      }

      .footer-brand-logo {
        justify-content: center;
        margin-left: 0;
      }

      .footer-social-vertical {
        flex-direction: row;
        justify-content: center;
        width: 100%;
      }

      /* General Polish */
      img {
        max-width: 100%;
        height: auto;
      }

      .about-img-secondary {
        width: 40%;
        right: -10px;
      }

      /* Touch Targets */
      a,
      button,
      input,
      select,
      textarea {
        min-height: 44px;
      }

      .nav-cta {
        display: none;
        /* Hide CTA in navbar on mobile if it creates clutter, or move it */
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===========================================
       MOBILE MENU ADJUSTMENTS
    =========================================== */
    .mobile-service-dropdown {
      display: none;
      list-style: none;
      padding: 0;
      margin: 0;
      background: #f8f9fa;
      border-top: 1px solid #eee;
    }

    /* Show when parent is active */
    .has-dropdown.dropdown-active .mobile-service-dropdown {
      display: block;
    }

    .mobile-cat-item {
      border-bottom: 1px solid #eee;
    }

    .mobile-cat-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      font-weight: 600;
      color: var(--logo-blue);
      cursor: pointer;
      transition: background 0.2s;
    }

    .mobile-cat-link:hover {
      background: #efefef;
    }

    /* Rotate chevron when active */
    .mobile-cat-link.active i {
      transform: rotate(180deg);
      transition: transform 0.3s;
    }

    .mobile-sub-menu {
      display: none;
      /* Hidden by default */
      list-style: none;
      padding: 0;
      background: #fff;
    }

    .mobile-sub-menu.active {
      display: block;
    }

    .mobile-sub-menu li a {
      display: block;
      padding: 10px 20px 10px 35px;
      /* Indented */
      font-size: 14px;
      color: var(--gray-600);
      text-decoration: none;
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-sub-menu li a:hover {
      color: var(--orange-600);
      background: #fafafa;
    }

    @media (max-width: 992px) {

      .mega-menu-container.desktop-only,
      .nav-links li.has-dropdown.dropdown-active .mega-menu-container.desktop-only {
        display: none !important;
      }

      /* Ensure nav links scroll if too tall */
      .nav-links.active {
        max-height: 80vh;
        overflow-y: auto;
      }
    }