  /* ============================================
       CSS VARIABLES — FUTURELINK IT CONSULTING COLOR SYSTEM
       (derived from the FutureLink logo: navy → blue → teal/cyan gradient)
    ============================================ */
    :root {
      --green-dark:    #0d3d52;   /* deep teal (used as secondary dark accent) */
      --green-mid:     #14708c;   /* mid teal */
      --green-bright:  #1e9dc9;   /* signature teal — matches logo arrow */
      --green-light:   #63d6f0;   /* bright cyan highlight */
      --blue-dark:     #0a2540;   /* deep navy — matches logo wordmark */
      --blue-mid:      #1f4e82;   /* mid blue */
      --blue-teal:     #2f6fb0;   /* logo blue */
      --blue-light:    #6fa8dc;   /* soft sky blue */
      --accent-gold:   #f0b429;
      --white:         #ffffff;
      --off-white:     #f3f8fb;
      --gray-light:    #e1ecf3;
      --gray-mid:      #7891a3;
      --dark:          #071a2c;
      --text-body:     #33475a;
    }

/*.ibm-plex-sans-<uniquifier> {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}*/
    /* ============================================
       GLOBAL RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.7;
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
     font-family: "IBM Plex Sans", sans-serif;
      line-height: 1.2;
    }

    h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; color: var(--white); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
    h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 1rem 0 0.5rem; }
    h4 { font-size: 1.05rem; font-weight: 700; }

    /* ============================================
       HEADER & NAVBAR
    ============================================ */
    header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--white);
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, var(--blue-dark), var(--blue-teal), var(--green-bright), var(--green-dark)) 1;
      box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    }

    .navbar {
      padding: 0 0;
      background: var(--white) !important;
    }

    .container-fluid.nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      gap: 20px;
    }

    .logo img {
      width: 200px;
      height: auto;
      display: block;
    }

    .navbar-nav {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 4px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-item { }

    .nav-link {
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--dark) !important;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 8px 14px !important;
      border-radius: 6px;
      transition: all 0.25s ease;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 14px; right: 14px;
      height: 2px;
      background: linear-gradient(90deg, var(--green-bright), var(--blue-teal));
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    .nav-link:hover::after { transform: scaleX(1); }
    .nav-link:hover { color: var(--green-dark) !important; }

    /* ============================================
       BANNER / HERO
    ============================================ */
    .banner {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(13,61,82,0.82) 60%, rgba(47,111,176,0.70) 100%),
        url('images/bg.jpg') center center / cover no-repeat;
      overflow: hidden;
    }

    /* Decorative leaves / organic shapes */
    .banner::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(99,214,240,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .banner::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(111,168,220,0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 60px 20px;
      width: 100%;
    }

    .banner-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(10px);
      color: var(--white);
     font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 28px;
    }
    .banner-badge i { color: var(--green-light); font-size: 0.9rem; }

    .banner h1 {
      text-shadow: 0 4px 30px rgba(0,0,0,0.4);
      margin-bottom: 20px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .banner h1 span {
      background: linear-gradient(90deg, var(--green-light), var(--blue-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .banner-sub {
      color: rgba(255,255,255,0.88);
      font-size: 1.15rem;
      font-weight: 400;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: var(--white);
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 50px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.2);
      box-shadow: 0 8px 30px rgba(30,157,201,0.4);
      transition: all 0.3s ease;
    }
    .btn-hero:hover {
      background: linear-gradient(135deg, var(--blue-mid), var(--blue-teal));
      box-shadow: 0 8px 30px rgba(31,78,130,0.5);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.5);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .scroll-dot {
      width: 20px; height: 34px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .scroll-dot::before {
      content: '';
      width: 4px; height: 8px;
      background: var(--green-light);
      border-radius: 2px;
      animation: scrollBounce 1.8s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(8px); opacity: 0.4; }
    }

    /* ============================================
       SECTION — IT PRODUCTS
    ============================================ */
    .section1 {
      padding: 90px 0;
      background: var(--off-white);
    }

    .section-label {
      display: inline-block;
     font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green-mid);
      background: rgba(30,157,201,0.08);
      border: 1px solid rgba(30,157,201,0.2);
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .section-sub {
      color: var(--gray-mid);
      max-width: 620px;
      margin: 0 auto 60px;
      font-size: 1.05rem;
    }

    /* Card */
    .box {
      background: var(--white);
      border-radius: 16px;
      padding: 36px 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1.5px solid var(--gray-light);
      box-shadow: 0 4px 24px rgba(0,0,0,0.05);
      transition: all 0.35s ease;
      overflow: hidden;
    }

    .box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-dark), var(--blue-teal), var(--green-bright));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
      border-radius: 16px 16px 0 0;
    }
    .box:hover::before { transform: scaleX(1); }

    .box:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.10);
      border-color: rgba(30,157,201,0.2);
    }

    .product-icon {
      width: 68px; height: 68px;
      background: linear-gradient(135deg, rgba(10,37,64,0.08), rgba(30,157,201,0.08));
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      margin-bottom: 18px;
      transition: all 0.3s ease;
    }
    .product-icon i {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .box:hover .product-icon {
      background: linear-gradient(135deg, var(--blue-dark), var(--green-mid));
    }
    .box:hover .product-icon i {
      background: linear-gradient(135deg, var(--white), var(--green-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .box h3 { color: var(--dark); font-size: 1.12rem; margin-bottom: 10px; margin-top: 0; }
    .box p { color: var(--text-body); font-size: 0.95rem; flex-grow: 1; line-height: 1.65; }

    .btn-card {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      color: var(--blue-mid);
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 0;
      margin-top: 18px;
      border-top: 1.5px solid var(--gray-light);
      transition: all 0.25s ease;
    }
    .btn-card i { font-size: 0.75rem; transition: transform 0.25s ease; }
    .btn-card:hover { color: var(--green-dark); }
    .btn-card:hover i { transform: translateX(4px); }

    /* ============================================
       PARTNERS SECTION
    ============================================ */
    .clients {
      padding: 70px 0;
      background: var(--white);
    }
    .clients h2 { color: var(--dark); }

    .partners-strip {
      background: var(--off-white);
      border-radius: 20px;
      padding: 32px 40px;
      border: 1.5px solid var(--gray-light);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      overflow: hidden;
    }
    .partners-strip img { width: 100%; display: block; }

    /* ============================================
       WHY CHOOSE SECTION
    ============================================ */
    .section2 {
      padding: 90px 0;
      background: linear-gradient(135deg, var(--dark) 0%, #0d2b0d 50%, var(--blue-dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .section2::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(99,214,240,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .section2::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(111,168,220,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .section2 h2 { color: var(--white); }
    .section2 .section-label {
      color: var(--green-light);
      background: rgba(99,214,240,0.1);
      border-color: rgba(99,214,240,0.2);
    }
    .section2 .section-sub { color: rgba(255,255,255,0.55); }

    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1.5px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 36px 28px;
      display: flex;
      align-items: flex-start;
      gap: 22px;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
      height: 100%;
    }
    .why-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(99,214,240,0.3);
      transform: translateY(-4px);
    }

    .why-icon {
      width: 60px; height: 60px;
      flex-shrink: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(30,157,201,0.35);
    }
    .why-icon img {
      width: 56%;
      filter: brightness(0) invert(1);
    }

    .why-text h4 {
      color: var(--green-light);
     font-family: "IBM Plex Sans", sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .why-text p {
      color: rgba(255,255,255,0.60);
      font-size: 0.93rem;
      line-height: 1.65;
      margin: 0;
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background: #080f08;
      color: #a0b0a0;
      padding: 70px 0 0;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue-dark), var(--blue-teal), var(--green-bright), var(--green-dark));
    }

    .footer-logo img { width: 180px; margin-bottom: 20px; }

    .footer-about {
      color: rgba(255,255,255,0.45);
      font-size: 0.92rem;
      line-height: 1.75;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .footer-social a:hover {
      background: var(--green-dark);
      border-color: var(--green-mid);
      color: var(--white);
    }

    footer h4 {
    font-family: "IBM Plex Sans", sans-serif;
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 10px;
      position: relative;
    }
    footer h4::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 32px; height: 2px;
      background: linear-gradient(90deg, var(--green-bright), var(--blue-teal));
      border-radius: 2px;
    }

    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
    }
    footer ul li a::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--green-bright);
      border-radius: 50%;
      flex-shrink: 0;
      opacity: 0.5;
      transition: opacity 0.25s;
    }
    footer ul li a:hover { color: var(--green-light); }
    footer ul li a:hover::before { opacity: 1; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      color: rgba(255,255,255,0.45);
      font-size: 0.92rem;
      line-height: 1.6;
    }
    .footer-contact-item i {
      color: var(--green-bright);
      margin-top: 3px;
      flex-shrink: 0;
      font-size: 0.95rem;
    }

    .footer-bottom {
      margin-top: 50px;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 20px 0;
      text-align: center;
    }
    .copy {
      color: rgba(255,255,255,0.25);
      font-size: 0.85rem;
      margin: 0;
    }
    .copy span { color: var(--green-light); }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 991px) {
      .container-fluid.nav-inner { padding: 12px 20px; }
      .navbar-nav { gap: 2px; }
      .nav-link { font-size: 0.78rem; padding: 7px 10px !important; }
    }

    @media (max-width: 768px) {
      header { position: relative; }
      .container-fluid.nav-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 16px;
        gap: 12px;
      }
      .navbar-nav {
        justify-content: center;
        gap: 4px;
      }
      .banner { min-height: 70vh; }
      .section1, .section2, .clients { padding: 60px 0; }
    }

    /* ============================================
       LOAD ANIMATIONS
    ============================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.7s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: 0.1s; }
    .fade-up:nth-child(2) { animation-delay: 0.2s; }
    .fade-up:nth-child(3) { animation-delay: 0.3s; }
    .fade-up:nth-child(4) { animation-delay: 0.4s; }
    .fade-up:nth-child(5) { animation-delay: 0.5s; }
    .fade-up:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
	
	   /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 991px) {
      .container-fluid.nav-inner { padding: 12px 20px; }
      .nav-link { font-size: 0.78rem; padding: 7px 10px !important; }
    }
    @media (max-width: 768px) {
      header { position: relative; }
      .container-fluid.nav-inner { flex-wrap: wrap; justify-content: center; padding: 14px 16px; gap: 12px; }
      .navbar-nav { justify-content: center; gap: 4px; }
      .about-section { padding: 60px 0; }
      .about-img-wrap { margin-bottom: 40px; }
      .delivery-list { grid-template-columns: 1fr; }
      .stat-divider { display: none; }
    }

    /* fade-up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp 0.7s ease forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	 /* ============================================
       STATS STRIP
    ============================================ */
    .stats-strip {
      padding: 70px 0;
      background: linear-gradient(135deg, var(--dark) 0%, #0d2b0d 50%, var(--blue-dark) 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-strip::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(99,214,240,0.07) 0%, transparent 70%);
      border-radius: 50%;
    }

    .stat-card {
      text-align: center;
      padding: 30px 20px;
    }
    .stat-number {
      font-family: "IBM Plex Sans", sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 900;
      background: linear-gradient(135deg, var(--green-light), var(--blue-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.50);
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.08);
      margin: auto;
    }
	   /* ============================================
       DELIVERY READINESS — special list styling
    ============================================ */
    .delivery-list {
      list-style: none;
      padding: 0; margin: 0 0 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 20px;
    }
    .delivery-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      color: var(--text-body);
      font-weight: 500;
    }
    .delivery-list li::before {
      content: '';
      display: block;
      width: 20px; height: 20px;
      min-width: 20px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
      border-radius: 50%;
      margin-top: 2px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 65%;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ============================================
       INNER BANNER
    ============================================ */
    .in-banner {
      position: relative;
      min-height: 340px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(13,61,82,0.82) 60%, rgba(47,111,176,0.70) 100%),
        url('images/banner-in.jpg') center center / cover no-repeat;
      overflow: hidden;
    }
    .in-banner::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(99,214,240,0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .in-banner::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(111,168,220,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .in-banner-content {
      position: relative;
      z-index: 2;
      padding: 60px 0;
    }

    .breadcrumb-trail {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .breadcrumb-trail a { color: var(--green-light); text-decoration: none; transition: color 0.2s; }
    .breadcrumb-trail a:hover { color: var(--white); }
    .breadcrumb-trail i { font-size: 0.65rem; }

    /* ============================================
       SECTION LABEL (reused from home)
    ============================================ */
    .section-label {
      display: inline-block;
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green-mid);
      background: rgba(30,157,201,0.08);
      border: 1px solid rgba(30,157,201,0.2);
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    /* ============================================
       ABOUT SECTIONS — alternating layout
    ============================================ */
    .about-section {
      padding: 90px 0;
    }
    .about-section:nth-child(odd) { background: var(--off-white); }
    .about-section:nth-child(even) { background: var(--white); }

    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .about-img-wrap img {
      width: 100%;
      display: block;
      border-radius: 20px;
      transition: transform 0.5s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.03); }

    /* Accent corner decoration on images */
    .about-img-wrap::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      width: 80px; height: 80px;
      border-top: 4px solid var(--green-bright);
      border-left: 4px solid var(--green-bright);
      border-radius: 4px;
      z-index: 1;
      pointer-events: none;
    }
    .about-img-wrap::after {
      content: '';
      position: absolute;
      bottom: -12px; right: -12px;
      width: 80px; height: 80px;
      border-bottom: 4px solid var(--blue-teal);
      border-right: 4px solid var(--blue-teal);
      border-radius: 4px;
      z-index: 1;
      pointer-events: none;
    }

    .about-text { padding: 10px 0; }

    .about-text p {
      color: var(--text-body);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    /* CTA Button */
    .btnc {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: var(--white);
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(30,157,201,0.30);
      transition: all 0.3s ease;
    }
    .btnc:hover {
      background: linear-gradient(135deg, var(--blue-mid), var(--blue-teal));
      box-shadow: 0 8px 24px rgba(31,78,130,0.40);
      color: var(--white);
      transform: translateY(-2px);
    }


  /* SECTION HELPERS */
    .section-label { display: inline-block; font-family: "IBM Plex Sans", sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); background: rgba(30,157,201,0.08); border: 1px solid rgba(30,157,201,0.2); padding: 5px 16px; border-radius: 50px; margin-bottom: 14px; }
    .section-sub { color: var(--gray-mid); max-width: 580px; margin: 0 auto 50px; font-size: 1rem; }

    /* SERVICES SECTION */
    .services-section { padding: 90px 0; background: var(--off-white); }

    /* Service Cards */
    .s-card { background: var(--white); border-radius: 16px; padding: 36px 28px; height: 100%; display: flex; flex-direction: column; border: 1.5px solid var(--gray-light); box-shadow: 0 4px 24px rgba(0,0,0,0.05); transition: all 0.35s ease; position: relative; overflow: hidden; }
    .s-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-dark), var(--blue-teal), var(--green-bright)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; border-radius: 16px 16px 0 0; }
    .s-card:hover::before { transform: scaleX(1); }
    .s-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); border-color: rgba(30,157,201,0.2); }

    .s-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(10,37,64,0.08), rgba(30,157,201,0.08)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: all 0.3s ease; }
    .s-card-icon i { background: linear-gradient(135deg, var(--blue-dark), var(--blue-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .s-card:hover .s-card-icon { background: linear-gradient(135deg, var(--blue-dark), var(--green-mid)); }
    .s-card:hover .s-card-icon i { background: linear-gradient(135deg, var(--white), var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    .s-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--gray-light); }

    .s-card ul { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
    .s-card ul li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 0.93rem; color: var(--text-body); border-bottom: 1px solid rgba(225,236,243,0.6); }
    .s-card ul li:last-child { border-bottom: none; }
    .s-card ul li::before { content: ''; width: 6px; height: 6px; background: linear-gradient(135deg, var(--green-bright), var(--blue-teal)); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

    /* PARTNERS */
    .clients { padding: 70px 0; background: var(--white); }
    .partners-strip { background: var(--off-white); border-radius: 20px; padding: 32px 40px; border: 1.5px solid var(--gray-light); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
    .partners-strip img { width: 100%; display: block; }

    /* SUPPORT SECTION */
    .support-section { padding: 80px 0; background: linear-gradient(135deg, var(--dark), #0d2b0d 50%, var(--blue-dark)); position: relative; overflow: hidden; }
    .support-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,214,240,0.07) 0%, transparent 70%); border-radius: 50%; }
    .support-section h2 { color: var(--white); }
    .support-section .section-label { color: var(--green-light); background: rgba(99,214,240,0.1); border-color: rgba(99,214,240,0.2); }

    .support-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px 32px; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(8px); height: 100%; display: flex; flex-direction: column; align-items: center; }
    .support-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(99,214,240,0.3); transform: translateY(-4px); }

    .support-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, var(--green-dark), var(--green-bright)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(30,157,201,0.35); }

    .support-card h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
    .support-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }

    .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: "IBM Plex Sans", sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 10px 26px; border-radius: 50px; text-decoration: none; border: 2px solid rgba(255,255,255,0.25); transition: all 0.3s ease; }
    .btn-outline-white:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); border-color: transparent; color: var(--white); box-shadow: 0 6px 20px rgba(30,157,201,0.4); }
	
	 /* SECTION LABEL */
    .section-label { display: inline-block; font-family: "IBM Plex Sans", sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); background: rgba(30,157,201,0.08); border: 1px solid rgba(30,157,201,0.2); padding: 5px 16px; border-radius: 50px; margin-bottom: 14px; }

    /* CONTACT SECTION */
    .contact-section { padding: 90px 0; background: var(--off-white); }

    .contact-info-card { background: linear-gradient(135deg, var(--dark), #0d2b0d 50%, var(--blue-dark)); border-radius: 20px; padding: 40px 36px; height: 100%; position: relative; overflow: hidden; }
    .contact-info-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(99,214,240,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
    .contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 28px; }

    .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .contact-item-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(135deg, var(--green-dark), var(--green-bright)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); box-shadow: 0 6px 20px rgba(30,157,201,0.35); }

    .contact-item-text h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .contact-item-text p { color: rgba(255,255,255,0.50); font-size: 0.9rem; line-height: 1.65; margin: 0; }

    /* FORM CARD */
    .form-card { background: var(--white); border-radius: 20px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); border: 1.5px solid var(--gray-light); height: 100%; }
    .form-card h3 { color: var(--dark); }

    .form-group { margin-bottom: 22px; }
    .form-label { font-family: "IBM Plex Sans", sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-body); margin-bottom: 8px; display: block; }

    .form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light); border-radius: 10px; font-family: "IBM Plex Sans", sans-serif; font-size: 0.95rem; color: var(--text-body); background: var(--off-white); transition: all 0.25s ease; outline: none; }
    .form-control:focus { border-color: var(--green-bright); background: var(--white); box-shadow: 0 0 0 4px rgba(30,157,201,0.10); }
    textarea.form-control { resize: vertical; min-height: 130px; }

    .btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); color: var(--white); font-family: "IBM Plex Sans", sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 14px 36px; border-radius: 50px; border: none; cursor: pointer; box-shadow: 0 6px 24px rgba(30,157,201,0.30); transition: all 0.3s ease; }
    .btn-submit:hover { background: linear-gradient(135deg, var(--blue-mid), var(--blue-teal)); box-shadow: 0 6px 24px rgba(31,78,130,0.35); transform: translateY(-2px); }

    /* SUPPORT SECTION */
    .support-section { padding: 80px 0; background: linear-gradient(135deg, var(--dark), #0d2b0d 50%, var(--blue-dark)); position: relative; overflow: hidden; }
    .support-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,214,240,0.07) 0%, transparent 70%); border-radius: 50%; }
    .support-section h2 { color: var(--white); }
    .support-section .section-label { color: var(--green-light); background: rgba(99,214,240,0.1); border-color: rgba(99,214,240,0.2); }

    .support-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px 32px; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(8px); height: 100%; display: flex; flex-direction: column; align-items: center; }
    .support-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(99,214,240,0.3); transform: translateY(-4px); }
    .support-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, var(--green-dark), var(--green-bright)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(30,157,201,0.35); }
    .support-card h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
    .support-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }
    .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: "IBM Plex Sans", sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 10px 26px; border-radius: 50px; text-decoration: none; border: 2px solid rgba(255,255,255,0.25); transition: all 0.3s ease; }
    .btn-outline-white:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); border-color: transparent; color: var(--white); box-shadow: 0 6px 20px rgba(30,157,201,0.4); }