/* ========== GLOBAL STYLES ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --white: #ffffff;
      --white-bg: #FFFFFF;
      --blue-primary: #03194b;
      --blue-deep: #000b46;
      --green-accent: #137200;
      --green-light: #e2fddf;
      --orange-primary: #fc7201;
      --orange-light: #fff3ea;
      --gray-100: #001264;
      --gray-200: #c7d9e9;
      --gray-700: #2C3E50;
      --gray-900: #1A2A3A;
      --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--white-bg);
      color: var(--gray-900);
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========== NAVIGATION (DESKTOP) ========== */
    .navbar {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.02);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 16px 0;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      height: 52px;
      width: auto;
    }

    /* Desktop links – horizontal row */
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: var(--gray-700);
      transition: 0.2s;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: var(--orange-primary);
    }

    .nav-cta {
      background: var(--orange-primary);
      color: white !important;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
    }

    .nav-cta:hover {
      background: #cf621f;
    }

    /* Hamburger button – hidden on desktop */
    .hamburger {
      display: none;
    }

    /* ========== MOBILE STYLES (≤768px) – MENU COMPLETELY HIDDEN ========== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Show hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: var(--blue-primary);
    border-radius: 3px;
    transition: 0.3s;
  }

  /* Animate to X when open */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile menu – completely hidden by default */
  .nav-links {
    display: none;                 /* ✅ hidden until clicked */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    padding: 2rem 1rem;
    margin: 0;
  }

  /* When active, show the menu */
  .nav-links.active {
    display: flex;                /* ✅ appears when hamburger clicked */
  }

  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
  }
  .menu-overlay.active {
    display: block;
  }

  /* Other responsive adjustments (keep as before) */
  .hero h1 { font-size: 2.2rem; }
  .container { padding: 0 24px; }
  .btn-group { justify-content: center; }
  .navbar { padding: 12px 0; }
  .section { padding: 60px 0; }

  /* Form mobile optimizations */
  .form-wrapper { padding: 32px 20px !important; border-radius: 32px !important; }
  .form-header h2 { font-size: 1.8rem !important; }
  .form-badge { font-size: 0.8rem !important; padding: 6px 16px !important; white-space: normal !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 20px !important; }
  .input-group input, .input-group select, .input-group textarea { padding: 14px 16px !important; font-size: 16px !important; border-radius: 20px !important; }
  .form-btn { padding: 14px 20px !important; font-size: 1rem !important; }
}

      /* General responsive adjustments */
      .hero h1 {
        font-size: 2.2rem;
      }
      .container {
        padding: 0 24px;
      }
      .btn-group {
        justify-content: center;
      }
      .navbar {
        padding: 12px 0;
      }
      .section {
        padding: 60px 0;
      }

      /* Form mobile optimizations */
      .form-wrapper {
        padding: 32px 20px !important;
        border-radius: 32px !important;
      }
      .form-header h2 {
        font-size: 1.8rem !important;
      }
      .form-badge {
        font-size: 0.8rem !important;
        padding: 6px 16px !important;
        white-space: normal !important;
      }
      .form-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .input-group input,
      .input-group select,
      .input-group textarea {
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 20px !important;
      }
      .form-btn {
        padding: 14px 20px !important;
        font-size: 1rem !important;
      }
    

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.9rem;
      }
      .team-card {
        width: 100%;
        max-width: 280px;
      }
      .form-wrapper {
        padding: 24px 16px !important;
      }
      .form-header h2 {
        font-size: 1.5rem !important;
      }
    }

    /* ========== FORM HEADER STYLES ========== */
    .form-header {
      text-align: center;
      margin-bottom: 32px;
    }
    .form-header h2 {
      color: var(--blue-primary);
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .form-header p {
      color: var(--gray-700);
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .form-badge {
      background: var(--gray-100);
      color: white;
      display: inline-block;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* ========== BUTTONS & SECTIONS (keep your existing styles) ========== */
    .btn-primary {
      background: var(--orange-primary);
      color: white;
      border: none;
      padding: 12px 32px;
      border-radius: 44px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 14px rgba(232,122,46,0.2);
    }
    .btn-primary:hover {
      background: #c55e20;
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: transparent;
      border: 1.5px solid var(--blue-primary);
      color: var(--blue-primary);
      padding: 12px 28px;
      border-radius: 44px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-secondary:hover {
      background: rgba(26,95,122,0.05);
    }
    .hero {
      padding: 80px 0 70px;
      background: linear-gradient(145deg, #FFFFFF 0%, #F4F9FE 100%);
    }
    .hero h1 {
      font-size: 3.2rem;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--blue-primary);
    }
    .hero p {
      font-size: 1.2rem;
      color: var(--gray-700);
      margin-bottom: 32px;
    }
    .btn-group {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }
    .section {
      padding: 80px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .section-alt {
      background: var(--gray-100);
    }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-title h2 {
      font-size: 2.4rem;
      color: white;
      margin-bottom: 12px;
    }
    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: white;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 20px;
    }
    .problem-card {
      background: white;
      padding: 28px 20px;
      border-radius: 28px;
      box-shadow: var(--shadow-sm);
      border-left: 5px solid var(--orange-primary);
      transition: 0.25s;
    }
    .problem-card i {
      font-size: 2rem;
      color: var(--blue-primary);
      margin-bottom: 16px;
    }
    .focus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
    }
    .focus-item {
      background: white;
      padding: 32px 20px;
      text-align: center;
      border-radius: 32px;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s;
    }
    .focus-item:hover {
      transform: translateY(-6px);
    }
    .focus-icon {
      font-size: 2.5rem;
      color: var(--orange-primary);
      margin-bottom: 16px;
    }
    .exp-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin-top: 20px;
    }
    .step-card {
      background: white;
      border-radius: 28px;
      padding: 28px;
      flex: 1;
      min-width: 200px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .industry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin: 32px 0 20px;
    }
    .industry-tag {
      background: var(--gray-200);
      padding: 10px 24px;
      border-radius: 60px;
      font-weight: 500;
      color: var(--blue-primary);
    }
    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 32px;
    }
    .team-card {
      background: white;
      border-radius: 32px;
      padding: 28px 24px 32px;
      text-align: center;
      width: 260px;
      transition: 0.2s;
      box-shadow: var(--shadow-sm);
    }
    .team-card img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      object-position: 50% 20%;
      margin-bottom: 18px;
      border: 4px solid var(--orange-primary);
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }
    .team-card h4 {
      font-size: 1.4rem;
      margin: 8px 0 4px;
      color: var(--blue-primary);
    }
    .form-section {
      background: linear-gradient(125deg, #F0F6FA 0%, #FFFFFF 100%);
    }
    .form-wrapper {
      max-width: 860px;
      margin: 0 auto;
      background: white;
      border-radius: 48px;
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .input-group label {
      font-weight: 600;
      color: var(--gray-700);
    }
    .input-group input,
    .input-group textarea,
    .input-group select {
      padding: 14px 18px;
      border-radius: 24px;
      border: 1px solid #E2E8F0;
      font-family: inherit;
      transition: 0.2s;
    }
    .input-group input:focus,
    .input-group textarea:focus {
      outline: none;
      border-color: var(--orange-primary);
      box-shadow: 0 0 0 3px rgba(232,122,46,0.2);
    }
    .form-btn {
      background: var(--orange-primary);
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 48px;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
      margin-top: 16px;
      cursor: pointer;
      transition: 0.2s;
    }
    .alert-message {
      margin-top: 20px;
      padding: 12px;
      border-radius: 32px;
      text-align: center;
      display: none;
    }
    footer {
      background: var(--blue-primary);
      color: white;
      padding: 40px 0;
      text-align: center;
    }
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
    }
    .fade-up.appear {
      opacity: 1;
      transform: translateY(0);
    }
    .toast-success {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green-accent);
      color: white;
      padding: 12px 28px;
      border-radius: 60px;
      font-weight: 500;
      z-index: 2000;
      box-shadow: var(--shadow-lg);
      animation: fadeOut 3s forwards;
    }
    @keyframes fadeOut {
      0% { opacity: 1; transform: translateX(-50%) translateY(0);}
      100% { opacity: 0; transform: translateX(-50%) translateY(20px); visibility: hidden; }
    }



/*************** Whatsapp and Call ***************/

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
}

.floating-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-button.call {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-button .button-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.floating-button .button-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.floating-button:hover .button-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-button .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .floating-button .button-tooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Floating buttons for contact page */
.contact-page .floating-buttons {
    bottom: 100px;
}

/* Animation for new messages */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(25deg); }
    20% { transform: rotate(-25deg); }
    30% { transform: rotate(25deg); }
    40% { transform: rotate(-25deg); }
    50%, 100% { transform: rotate(0); }
}

.floating-button.ringing {
    animation: ring 1.5s ease-in-out 3;
}
