@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

/* NAVBAR */
nav {
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.logo-box {
    width: 35px;
    height: 35px;
    background: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.nav-btn {
    background: #facc15;
    padding: 8px 15px;
    border-radius: 5px;
    color: black !important;
    font-weight: 600;
}

/* CORPORATE HERO */

.corporate-hero {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    text-align: center;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 800px;
    margin: auto;
}

.corporate-hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.corporate-hero h3 {
  font-weight: 400;
  opacity: 0.9;
}


.corporate-hero p {
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Rounded pill button */
.hero-pill-btn {
    display: inline-block;
    background: #facc15;
    color: #1e3a8a;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-pill-btn:hover {
    background: #fde047;
}

button,
.hero-pill-btn {
    transition: all 0.2s ease;
}

button:hover,
.hero-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Smooth curve bottom */
.corporate-hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #f4f6f9;
    border-radius: 50% 50% 0 0;
}


/* Sections */
.section {
  padding: 100px 20px;
  border-bottom: 1px solid #e5e7eb;

}

.light {
    background: #eef2ff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h2 {
    margin-bottom: 20px;
    color: #1e3a8a;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    background: rgba(0,0,0,0.5);
    
    
  }

  
  
  .modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 5% auto;   
    padding: 20px;
    border-radius: 8px;
  }
    
  /* CONTACT CTA */
.contact-cta {
  text-align: center;
  margin-bottom: 50px;
}


.contact-cta p {
  color: #555;
  margin-bottom: 20px;
}


  
  .close {
    float: right;
    font-size: 24px;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  

/* Cards */
.services-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 25px;
}

.floating-whatsapp,
.floating-email {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp {
    bottom: 90px;
    background-color: #25D366;
}

.floating-email {
    bottom: 20px;
    background-color: #0A66C2;
}

.floating-whatsapp:hover,
.floating-email:hover {
    transform: scale(1.1);
}
.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    cursor: pointer;
}

  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  
 
  
  .close {
    float: right;
    font-size: 22px;
    cursor: pointer;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
  }
  
  input, select, textarea {
    padding: 8px;
    margin-top: 5px;
  }
  
  button {
    margin-top: 15px;
    padding: 10px;
    background: #0A66C2;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* TRUST STRIP */
.trust-strip {
  background: white;
  padding: 25px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1e3a8a;
}

.trust-item i {
  font-size: 18px;
  color: #2563eb;
}

  
  @media (max-width: 768px) {

    .nav-links {
      flex-direction: column;
      gap: 15px;
      background: white;
      position: absolute;
      top: 70px;
      right: 0;
      width: 200px;
      padding: 20px;
      display: none; /* hide for now */
    }
  
  }

  @media (max-width: 768px) {

    .corporate-hero {
      padding: 100px 20px;
    }
  
    .corporate-hero h1 {
      font-size: 2rem;
    }
  
    .corporate-hero h3 {
      font-size: 1rem;
    }
  
    .corporate-hero p {
      font-size: 0.9rem;
    }
  
  }

  @media (max-width: 768px) {
    .trust-container {
      flex-direction: column;
      text-align: center;
    }
  }
  

  @media (max-width: 480px) {

    .floating-whatsapp,
    .floating-email {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  
  }
  
  