    @font-face {
    font-family: 'Bebas';
    src: url('../fonts/bebas.otf') format('opentype');
    font-display: swap;
    }

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

    html, body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: #fff;
    font-family: 'WF Visual Sans Variable', 'Inter', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
      padding: 0;
    }

     main {
      flex: 1;
    } 

    #services {
      flex: 1 0 auto;
    }

    footer {
      flex-shrink: 0;
      margin-top: auto;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      z-index: 10010;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      overflow: hidden;
    }

    .logo {
      font-family: 'Bebas', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.15em;
      color: #fff;
    }

    nav.desktop-menu ul {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    nav.desktop-menu a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      transition: color 0.3s ease;
    }

    nav.desktop-menu a:hover {
      color: #fff;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .lang-switch {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      letter-spacing: 0.05em;
    }

    .lang-switch a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      margin: 0 0.3em;
    }

    .lang-switch a.active {
      color: #fff;
      font-weight: 500;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 22px;
      height: 16px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

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

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

    /* ===== MOBILE OVERLAY MENU ===== */
    .mobile-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.97);
      border-top: 1px solid rgba(255,255,255,0.1);
      transform: translateY(-110%);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.35s ease;
      z-index: 10005;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      padding: 2rem 0;
    }

    .mobile-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
    }

    /* ===== BREAKPOINT ===== */
    @media (max-width: 992px) {
      nav.desktop-menu { display: none; }
      .hamburger { display: flex; }
      .lang-switch { font-size: 0.85rem; }
    }

    @media (min-width: 993px) {
      .mobile-menu { display: none; }
    }

    /* ===== CONTENT ===== */
    .content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - 70px);
      padding-top: 70px;
      text-align: center;
    }

    h1 {
      font-family: 'WF Visual Sans Variable', 'Bebas', sans-serif;
      font-size: clamp(4rem, 18vw, 18rem);
      letter-spacing: 0.25em;
      line-height: 1;
      color: #fff;
      text-transform: uppercase;
    }

    p {
      margin-top: 2em;
      font-size: clamp(0.8rem, 2vw, 1.2rem);
      letter-spacing: 0.35em;
      font-weight: 300;
      color: #ffffff;
    }

    /* ===== SERVICES ===== */
    #services {
      position: relative;
      z-index: 2;
      padding: 6rem 10%;
      background: transparent;
      text-align: center;
    }

    #services h2 {
      font-family: 'WF Visual Sans Variable','Inter',sans-serif;
      font-size: clamp(2rem,4vw,3rem);
      font-weight: 700;
      margin-bottom: 3rem;
      color: #fff;
    }

    .service-grid {
      display: grid;
      gap: 2rem;
      justify-items: stretch;
      max-width: 1400px;
      margin: 0 auto;
      padding: 4rem 0;
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    /* 2 cols */
    @media (min-width: 720px) {
      .service-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* 3 cols */
    @media (min-width: 1024px) {
      .service-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* 4 cols (MAX) */
    @media (min-width: 1280px) {
      .service-grid { grid-template-columns: repeat(4, 1fr); }
    }

    .service-card {
      width: 100%;
      background: rgba(30,30,30,0.25);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    }

    .service-card h3 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .service-card p {
      color: #aaa;
      font-size: 0.9rem;
      letter-spacing: normal;
      margin: 0.5rem 0 0;
    }

    /* ===== FOOTER ===== */
    footer {
      position: relative;
      width: 100%;
      margin-top: 4rem;
      background: rgba(0, 0, 0, 0.3);
      border-top: 1px solid rgba(255,255,255,0.2);
      padding: 0.8em 3em;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: clamp(0.55rem, 1vw, 0.8rem);
      color: rgba(255,255,255,0.94);
      letter-spacing: 0.08em;
      font-weight: 300;
    }

    .footer-left a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      margin: 0 0.3em;
      transition: color 0.2s ease;
    }

    .footer-left a:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      footer {
        flex-direction: column;
        text-align: center;
        gap: 0.4em;
      }
    }

    /* ===== BACKGROUND CANVAS ===== */
    #network {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vm;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
      background: transparent;
      overflow: hidden;
    }

    .service-card ul {
      list-style-position: inside;
      text-align: left;
      list-style-type: disc;
      padding-left: 1.2em; 
      margin: 0.8em 0 0; 
    }

    .service-card li {
      font-size: 0.9em;        
      line-height: 1.4em;     
      margin-bottom: 0.3em;    
      color: #e7e4e4ff;             
    }

    #services h2 {
      font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    }

    #services .service-card p {
      font-size: 1.05rem;  
      line-height: 1.8;     
      color: #e0e0e0;       
    }

    /* ===== COMPANY SECTION ===== */
    .company-section {
      position: relative;
      z-index: 2;
      padding: 8rem 10% 10rem; 
      background: transparent;
      text-align: center;
      min-height: 100vh; 
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Heading matches “Experience your Systems evolve…” exactly */
    .company-section h2 {
      font-family: 'WF Visual Sans Variable','Inter',sans-serif;
      font-size: clamp(2rem,4vw,3rem);
      font-weight: 700;
      margin-bottom: 3rem;
      color: #fff;
      animation: fadeUp 1s ease forwards;
    }

    /* The gray box identical to your service cards */
    .company-box {
      background: rgba(30,30,30,0.25);
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeUp 1.2s ease forwards;
      font-family: 'WF Visual Sans Variable', 'Inter', sans-serif;
    }

    .company-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    }

    .company-box p {
      font-size: 1.2rem;
      line-height: 1.9;
      color: #e7e4e4ff;
      letter-spacing: 0.03em;
      margin-bottom: 1.5rem;
      font-family: 'WF Visual Sans Variable', 'Inter', sans-serif;
    }

    .company-box strong {
      color: #fff;
      font-weight: 600; /* match the same weight as bold text in service cards */
    }

    /* Fade-up animation reused */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .company-section {
        min-height: auto; 
        padding: 5rem 8% 6rem; 
        justify-content: flex-start; 
      }

      .company-section h2 {
        font-family: 'WF Visual Sans Variable','Inter',sans-serif;
        font-size: clamp(2rem,4vw,3rem); 
        font-weight: 700;
        margin-bottom: 3rem;
        color: #fff;
        animation: fadeUp 1s ease forwards;
        line-height: 1.3;
      }

      .company-box {
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
      }

      .company-box p {
        font-size: 1rem;
        line-height: 1.7;
      }
    }

    /* ===== CONTACT FORM STYLING ===== */
    #contact h2 {
      font-family: 'WF Visual Sans Variable','Inter',sans-serif;
      font-size: clamp(2rem,4vw,3rem);
      font-weight: 700;
      margin-bottom: 3rem;
      color: #fff;
    }

    #contact form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    label {
      font-size: 0.9rem;
      color: #ccc;
      margin-bottom: 0.4rem;
    }

    input, textarea, select {
      background: rgba(20,20,20,0.7);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 0.8rem;
      color: #fff;
      font-size: 1rem;
      font-family: 'WF Visual Sans Variable','Inter',sans-serif;
      outline: none;
      transition: border 0.3s ease, background 0.3s ease;
    }

    input:focus, textarea:focus, select:focus {
      border-color: rgba(255,255,255,0.5);
      background: rgba(40,40,40,0.9);
    }

    textarea {
      resize: none;
    }

    .btn-submit {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      align-self: flex-start;
    }

    .btn-submit:hover {
      background: rgba(255,255,255,0.25);
      border-color: rgba(255,255,255,0.4);
    }

    /* Make it responsive */
    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;
      }
      .btn-submit {
        align-self: center;
      }
    }

    /* ===== FIX: intl-tel-input dark theme ===== */
    .iti__country-list {
      background-color: rgba(20, 20, 20, 0.95) !important;
      color: #fff !important;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.8);
      backdrop-filter: blur(6px);
    }

    .iti__country {
      color: #fff !important;
      font-size: 0.95rem;
    }

    .iti__country:hover {
      background-color: rgba(255, 255, 255, 0.1) !important;
    }

    .iti__divider {
      border-color: rgba(255,255,255,0.1) !important;
    }

    .iti__flag-container {
      background: rgba(20, 20, 20, 0.6) !important;
      border-radius: 8px;
    }

    .iti__selected-flag {
      background-color: rgba(30,30,30,0.9) !important;
      border-radius: 6px;
    }

    .iti__country-name,
    .iti__dial-code {
      color: #fff !important;
    }

    /* ===== DARK SCROLLBAR STYLE ===== */

    /* Chrome, Edge, Safari */
    ::-webkit-scrollbar {
      width: 10px;
      background: transparent;
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.05);
      transition: background 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    ::-webkit-scrollbar-corner {
      background: transparent;
    }

    /* Firefox */
    * {
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
    }

