
    :root {
      --navy-900: #061b2f;
      --navy-800: #0a2a45;
      --navy-700: #0e3a5c;
      --cyan-500: #19c5ff;
      --cyan-300: #6fe3ff;
    }

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

    body {
      font-family: 'Outfit', system-ui, sans-serif;
      background: var(--navy-900);
      color: white;
      overflow-x: hidden;
    }

    header {
      background: #fff;
      padding: 18px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      color: #111;
    }

    .logo span {
      color: var(--cyan-500);
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: #555;
      font-weight: 600;
      font-size: 14px;
    }

    .contact-btn {
      background: var(--cyan-500);
      color: white;
      padding: 10px 22px;
      border-radius: 10px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-btn:hover {
      background: var(--cyan-300);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #111;
      transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu-content {
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      max-width: 300px;
      width: 90%;
    }

    .mobile-menu-content a {
      display: block;
      color: #555;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      margin: 20px 0;
      transition: 0.3s;
    }

    .mobile-menu-content a:hover {
      color: var(--cyan-500);
    }

    .mobile-menu-content .contact-btn {
      margin-top: 20px;
      display: inline-block;
    }

    .hero {
      position: relative;
      min-height: 88vh;
      padding: 0 8%;
      display: flex;
      align-items: center;
      background: linear-gradient(105deg,
          #041426 0%,
          #062240 55%,
          #062240 55%,
          #041426 100%);
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 88vh;
      padding: 0 8%;
      display: flex;
      align-items: center;

      background:
        /* thin front line */
        linear-gradient(65deg,
          transparent 54.85%,
          rgba(67, 145, 235, 0.35) 57%,
          rgba(47, 111, 179, 0.35) 55.12%,
          transparent 55.3%),


        /* LEFT SIDE */
        linear-gradient(155deg,
          transparent 54.85%,
          rgba(67, 145, 235, 0.35) 57%,
          rgba(62, 127, 198, 0.35) 55.12%,
          transparent 55%),

        /* RIGHT SIDE */
        linear-gradient(105deg,
          transparent 55%,
          #073a73 100%);

      overflow: hidden;
    }


    /* CANVAS PARTICLES */
    canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 720px;
    }

    .badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      border-left: 3px solid var(--cyan-500);
      font-size: 11px;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 56px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 22px;
    }

    h1 span {
      background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300));
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desc {
      font-size: 16px;
      line-height: 1.6;
      opacity: .78;
      max-width: 520px;
      margin-bottom: 42px;
    }

    /* INNER GLOW CTAs */
    .btn-group {
      display: flex;
      gap: 15px;
    }

    .desc {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 40px;
      max-width: 500px;
    }

    .btn-primary,
    .btn-secondary {
      padding: 12px 32px;
      font-size: 14px;
      border-radius: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
      border: none;
      position: relative;
      text-decoration: none;
      display: inline-block;

    }

    .btn-primary {
      background: #109cdd;
      color: #ecf2f5;
      border: 3px solid rgba(199, 213, 218, 0.3);
      /* Inner Glow */
      box-shadow: inset 0 0 15px rgba(25, 197, 255, 0.2);
    }

    .btn-primary:hover {
      box-shadow: inset 0 0 25px rgba(142, 165, 172, 0.4);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(147, 164, 214, 0.182);
      color: white;
      border: 3px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
    }

    /* ROBOT PARALLAX */
    .hero-image {
      position: absolute;
      right: 3%;
      bottom: 0;
      width: 680px;
      z-index: 3;
      perspective: 800px;
    }

    .hero-image img {
      width: 100%;
      transition: transform .15s ease, filter .3s ease;
      filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
    }

    .hero-image:hover img {
      filter:
        drop-shadow(0 40px 70px rgba(0, 0, 0, .5)) drop-shadow(0 0 28px rgba(111, 227, 255, .4));
    }

    /* Laptop and Tablet Responsiveness */
    @media (max-width: 1024px) {
      .hero {
        padding: 0 6%;
      }
      .hero-image {
        width: 450px;
        right: 1%;
      }
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      header {
        padding: 15px 5%;
      }

      .logo {
        font-size: 20px;
      }

      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 60px 5%;
        min-height: 80vh;
      }

      .hero-content {
        max-width: 100%;
        text-align: center;
        order: 1;
      }

      h1 {
        font-size: 32px;
      }

      .desc {
        font-size: 16px;
        margin-bottom: 30px;
      }

      .btn-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }

      .btn-primary,
      .btn-secondary {
        padding: 14px 28px;
        font-size: 16px;
      }

      .hero-image {
        position: relative;
        width: 100%;
        max-width: 450px;
        margin-top: 40px;
        order: 2;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 12px 4%;
      }

      .logo {
        font-size: 18px;
      }

      .hero {
        padding: 50px 4%;
        min-height: 70vh;
      }

      h1 {
        font-size: 28px;
        margin-bottom: 18px;
      }

      .badge {
        font-size: 10px;
        padding: 5px 12px;
      }

      .desc {
        font-size: 15px;
        margin-bottom: 25px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
      }

      .hero-image {
        max-width: 250px;
        margin-top: 30px;
      }

      .mobile-menu-content {
        padding: 30px;
        max-width: 280px;
      }

      .mobile-menu-content a {
        font-size: 16px;
        margin: 15px 0;
      }
    }

    :root {
      --navy-900: #061b2f;
      --navy-800: #0a2a45;
      --navy-700: #0e3a5c;
      --cyan-500: #19c5ff;
      --cyan-300: #6fe3ff;

      --gradient-primary: linear-gradient(135deg,
          var(--navy-800),
          var(--navy-700),
          var(--cyan-500));

      --gradient-soft: radial-gradient(circle,
          rgba(25, 197, 255, 0.15),
          transparent 70%);
    }

    /* ================= ECOSYSTEM ================= */
    .ecosystem {
      padding: 60px 8%;
      position: relative;
      background: #fff;
      padding: 60px 8% 40px;
    }

    .ecosystem h3 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 70px;
      background: var(--gradient-primary);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }


    .eco-layout {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 60px;
    }

    .eco-block {
      padding-left: 28px;
      position: relative;
      animation: fadeUp 1s ease forwards;
    }

    .eco-block::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 4px;
      height: 46px;
      background: linear-gradient(180deg,
          var(--navy-700),
          var(--cyan-500),
          transparent);
      border-radius: 4px;
    }

    .eco-block h4 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--navy-700);
    }

    .eco-block p {
      color: black;
      line-height: 1.7;
    }

    /* Ambient motion */
    .glow {
      position: absolute;
      width: 200px;
      height: 200px;
      background: var(--gradient-soft);
      opacity: .08;
      filter: blur(24px);
      animation: float 12s infinite;
    }

    .glow.one {
      top: 20%;
      left: 4%;
    }

    .glow.two {
      bottom: 10%;
      right: 6%;
      animation-delay: 3s;
    }

    /* Mobile responsiveness for ecosystem */
    @media (max-width: 768px) {
      .ecosystem {
        padding: 40px 5%;
      }

      .ecosystem h3 {
        font-size: 1.8rem;
        margin-bottom: 50px;
      }

      .eco-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .eco-block {
        padding-left: 20px;
      }

      .eco-block h4 {
        font-size: 1.2rem;
      }
    }

    /* ================= ABOUT + SERVICES ================= */
    .about-services {
      position: relative;
      padding: 140px 8%;
      overflow: hidden;
      background: #fff;
    }

    /* floating shapes */
    .shape {
      position: absolute;
      border-radius: 50%;
      background: var(--gradient-soft);
      opacity: 0.1;
      filter: blur(14px);
      animation: floatSlow 14s infinite ease-in-out;
      pointer-events: none;
    }

    /* ================= SERVICES RESET  ================= */

    .services-wrap {
      background: #fff;
      padding: 40px 8% 60px;
    }
    .services-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .services-header h2 {
      font-size: 3rem;
      font-weight: 700;
      color: var(--navy-700);
    }

    .services-header p {
      margin-top: 12px;
      font-size: 1.1rem;
      color: #475569;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      align-items: stretch;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      background: #fff;
      border-radius: 28px;
      padding: 48px 36px;
      border: 1.5px solid rgba(99, 102, 241, 0.2);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      transition: transform .25s ease, box-shadow .25s ease;

    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--cyan-300);
      box-shadow: 0 20px 40px rgba(6, 27, 47, 0.08);
    }

    .service-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 6px;

      background: linear-gradient(90deg, var(--navy-800), var(--cyan-500));
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }


    .service-tagline {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .service-highlight {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy-800);
      margin: 0 0 24px 0;
    }



    /* ================= LIST  ================= */

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

    .service-list li {
      position: relative;
      padding-left: 30px;
      padding-bottom: 12px;
      margin-bottom: 18px;
      color: #334155;
      line-height: 1.5;
    }

    .service-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #22c55e;
      font-weight: 700;
    }

    .service-list li::after {
      content: "";
      display: block;
      margin-top: 5px;
      border-bottom: 1px dotted #cbd5e1;
    }

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

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }
  
    :root {
      --navy-900: #061b2f;
      --navy-800: #0a2a45;
      --navy-700: #0e3a5c;
      --cyan-500: #19c5ff;
      --cyan-300: #6fe3ff;

      --gradient-text: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--cyan-500) 100%);
    }

    .academy-section {
      background: #ffffff;
      padding: 40px 24px 20px;
      font-family: 'Outfit', sans-serif;
    }

    @media (max-width: 768px) {
      .academy-section {
        padding: 30px 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .academy-section {
        padding: 20px 15px 10px;
      }
    }

    .academy-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ---------- The Partition Divider ---------- */
    .academy-partition {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 32px;
      width: 100%;
    }

    .partition-line {
      flex-grow: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan-500) 0%, rgba(25, 197, 255, 0.1) 100%);
    }

    .academy-eyebrow-text {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan-500);
      white-space: nowrap;
    }

    .academy-header-content {
      text-align: left;
      width: 100%;
    }

    .academy-header-content h2 {
      font-size: 52px;
      line-height: 1.15;
      font-weight: 800;
      color: var(--navy-900);
      margin: 0 0 24px 0;
      letter-spacing: -0.03em;
      max-width: none;
    }

    .academy-header-content h2 span {
      background: var(--gradient-text);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .academy-header-content p {
      font-size: 18px;
      max-width: none;
      line-height: 1.6;
      color: var(--navy-800);
      margin: 0 0 24px 0;
      text-align: center;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
      .academy-header-content h2 {
        font-size: 42px;
      }
    }

    @media (max-width: 768px) {
      .academy-header-content h2 {
        font-size: 28px;
      }

      .academy-partition {
        gap: 12px;
      }
    }

    /* ---------- Card Grid ---------- */
    .academy-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .academy-card {
      background: #ffffff;
      padding: 40px;
      border-radius: 24px;
      border: 1px solid rgba(6, 27, 47, 0.06);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 20px rgba(6, 27, 47, 0.02);
      margin: 0 0 24px 0;
    }

    .academy-card:hover {
      transform: translateY(-10px);
      border-color: var(--cyan-300);
      box-shadow: 0 20px 40px rgba(6, 27, 47, 0.08);
    }

    .academy-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 25px;
    }

    .academy-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy-900);
      margin-bottom: 15px;
    }

    .academy-card p {
      font-size: 15px;
      color: var(--navy-800);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .academy-header-content h2 {
        font-size: 36px;
      }

      .academy-partition {
        gap: 10px;
      }
    }

    .academy-cta {
      display: flex;
      justify-content: center;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      background: var(--navy-900);
      border-radius: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: var(--navy-800);
      transform: scale(1.02);
      box-shadow: 0 10px 25px rgba(6, 27, 47, 0.2);
    }

    :root {
      --navy-900: #061b2f;
      --navy-800: #0a2a45;
      --navy-700: #0e3a5c;
      --cyan-500: #19c5ff;
      --cyan-300: #6fe3ff;
      --gradient-primary: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--cyan-500) 100%);
    }

    .themed-section {
      padding: 40px 10px;
      font-family: 'Outfit', sans-serif;
      background: #ebeef0;
    }

    @media (min-width: 768px) {
      .themed-section {
        padding: 60px 24px;
      }
    }

    @media (min-width: 1024px) {
      .themed-section {
        padding: 80px 8%;
      }
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .badge-2 {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 6px;
      background: var(--navy-900);
      border-left: 4px solid var(--cyan-500);
      font-size: 12px;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
      color: white;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* ---------- Shared Partition Style ---------- */
    .partition {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: none;
      margin-bottom: 20px;
    }

    .partition-line {
      flex-grow: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan-500) 0%, rgba(25, 197, 255, 0.1) 100%);
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan-500);
      white-space: nowrap;
    }

    /* ---------- About Us Specifics ---------- */
    .about-header h2 {
      font-size: 48px;
      font-weight: 800;
      color: var(--navy-900);
      margin-bottom: 30px;
      letter-spacing: -0.02em;
    }

    .about-header span {
      background: var(--gradient-primary);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    .about-card {
      padding: 40px 30px;
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid rgba(6, 27, 47, 0.05);
      transition: all 0.4s ease;
      box-shadow: 0 4px 20px rgba(6, 27, 47, 0.02);
    }

    .about-card:hover {
      transform: translateY(-8px);
      border-color: var(--cyan-300);
      box-shadow: 0 20px 40px rgba(6, 27, 47, 0.06);
    }

    .about-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy-900);
      margin: 20px 0 12px;
    }

    .about-card p {
      font-size: 15px;
      color: var(--navy-800);
      line-height: 1.6;
    }

    .icon-circle {
      width: 50px;
      height: 50px;
      background: rgba(25, 197, 255, 0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cyan-500);
    }

    /* ---------- Contact Specifics ---------- */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      background: var(--navy-900);
      padding: 50px;
      border-radius: 32px;
      color: white;
    }

    @media (max-width: 768px) {
      .contact-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
      }
    }

    .contact-info h2 {
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact-info h2 span {
      color: var(--cyan-500);
    }

    .contact-detail-item {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }

    .contact-detail-item label {
      font-size: 12px;
      text-transform: uppercase;
      color: var(--cyan-300);
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .contact-detail-item span {
      font-size: 18px;
      font-weight: 500;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 16px;
      border-radius: 12px;
      color: white;
      font-family: inherit;
      font-size: 15px;
      transition: 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--cyan-500);
      background: rgba(255, 255, 255, 0.08);
    }

    .submit-btn {
      background: var(--cyan-500);
      color: var(--navy-900);
      padding: 18px;
      border-radius: 12px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 10px;
    }

    .submit-btn:hover {
      background: var(--cyan-300);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
      }

      .about-header h2 {
        font-size: 36px;
      }
    }

    @media (max-width: 768px) {
      .about-header h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 768px) {
      .contact-info h2 {
        font-size: 36px;
      }
    }

    /* ================= FOOTER THEME ================= */
    :root {
      --navy-900: #061b2f;
      --navy-800: #0a2a45;
      --navy-700: #0e3a5c;
      --cyan-500: #19c5ff;
      --cyan-300: #6fe3ff;
      --footer-gradient: linear-gradient(180deg, var(--navy-900) 0%, #030d17 100%);
    }

    footer {
      padding: 80px 8% 40px;
      background: var(--footer-gradient);
      color: #e2e8f0;
      font-family: 'Outfit', sans-serif;
      border-top: 1px solid rgba(25, 197, 255, 0.1);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
    }

    .footer-column h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 24px;
      color: #ffffff;
      letter-spacing: -0.5px;
    }

    .footer-column h3 span {
      color: var(--cyan-500);
    }

    .footer-description {
      line-height: 1.7;
      font-size: 0.95rem;
      color: #94a3b8;
      max-width: 360px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--cyan-500);
      transform: translateX(5px);
    }

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

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #ffffff;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-links a svg {
      width: 20px;
      height: 20px;
    }

    .social-links a:hover {
      background: var(--cyan-500);
      color: var(--navy-900);
      border-color: var(--cyan-500);
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(25, 197, 255, 0.2);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 60px auto 0;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #64748b;
    }

    /* Mobile Responsive */
    @media (max-width: 900px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .footer-description {
        margin: 0 auto;
      }

      .social-links {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 15px;
      }
    }
