*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}


.logo-text {
  text-decoration: none;
  font-size: 20px;
  color: #161422;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-item {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #162447;
  cursor: pointer;
}

/* Contact Button */
.contact-btn button {
  background: #1e3d6b;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #1e3d6b;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}
.mobile-menu button{
  color: #161422;
}

.mobile-menu button {
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  font-size: 16px;
  /* color: #9794a5; */
  cursor: pointer;
}

.mobile-menu button:hover {
  background: #f8f9fb;
}

.mobile-contact {
  background: #1e3d6b;
  color: white !important;
  margin-top: 10px;
}
@media (max-width: 769px) {
  .nav-links,
  .contact-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
/* ##############  service banner section starts  ################## */

.service-section {
    height: 40vh;
    width: 100vw;
    background: linear-gradient(180deg, #1f3c6d 0%, #0b1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #ffffff;
}

.content p {
    font-size: 20px;
    color: #d0d7e2;
    margin: 0;
    max-width: 900px;
}

/* ##############  service banner section ends  ################## */

/* ##############  image section starts  ################## */

.image-container {
    height: 80vh;
    width: 100vw;
    /* border: 1px solid black; */
}

.img {
    height: 80vh;
    width: 100%;
    /* margin: auto; */
    /* border: 1px solid black; */
    background: url("../images/servicebg.jpg");
    background-size: cover;
    background-position: center;
}

/* ##############  image section ends  ################## */


/* ############  service cards section starts ############ */

.service-container {
    min-height: 100vh;
    width: 100vw;
    background: #f2f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;

    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #eef1f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0a2540;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
}
.service-card ul{
  position: relative;
}

.service-card ul li {
    font-size: 14px;
    color: #374151;
    overflow-y: hidden;
    margin-bottom: 5px;
    padding-left: 18px;
}

.service-card ul li::before {
    content: "•";
    color: #1d4ed8;
    font-size: 15px;
    position: absolute;
    left: 5px;
    
    
}
     
/* ############  service cards section ends ############ */


/* ############  serve section starts ############ */

/* .serve {
    text-align: center;
    margin: 0 auto;
    min-height: 100vh;
    width: 100vw;
    padding: 70px 40px;
} */

.serve-container {
    text-align: center;
    max-width: 100vw;
    margin: 0 auto;
    padding: 70px 60px;
    background: linear-gradient(180deg, #1f3c6d 0%, #0b1f3a 100%);
}

.serve-container h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.serve-container p {
    font-size: 18px;
    color: #f5fff6;
    margin-bottom: 40px;
}

.industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.serve-icon-box {
    width: 50px;
    height: 50px;
    background: #eef1f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Footer section */
.footer {
    background-color: #161422; /* DBS background */
    color: #bdbcb8;
  }
  
  /* CONTAINER */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px 30px;
  }
  
  /* GRID LAYOUT (Kavso-style) */
  .footer-grid {
    display: flex;
    justify-content: space-around;
    /* align-items: flex-start; */
    gap: 40px;
  }

  .footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px; /* Tailwind: text-xl */
    font-weight: 600;
  }
  
  /* LINKS */
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    text-decoration: none;
    color: #9794a5;
    font-size: 16px; /* Tailwind: text-base */
    transition: opacity 0.2s ease;
  }
  
  .footer-col a:hover {
    opacity: 0.8;
  }
  
  /* CONTACT ITEMS */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #bdbcb8;
  }
  
  .contact-item svg {
    width: 18px;
    height: 18px;
    color: #8a90a8;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 14px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    background-color: #1e3d6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    transition: opacity 0.2s ease;
  }
  
  .social-icons a:hover {
    opacity: 0.8;
  }
  
  .social-icons svg {
    width: 18px;
    height: 18px;
  }
  
  /* DIVIDER */
  .footer-divider {
    height: 1px;
    background-color: #1e3d6b;
    margin: 40px 0 20px;
  }
  
  /* BOTTOM BAR */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #9794a5;
    text-align: center;
  }
  
  .footer-bottom span {
    color: #ffffff;
    font-weight: 600;
  }
/* ================= RESPONSIVE FIXES ================= */

/* Tablets */

@media (max-width: 1024px) {
    .content h1 {
      font-size: 44px;
    }
  
    .content p {
      font-size: 18px;
    }
  
    .image-container,
    .img {
      height: 60vh;
    }
  
    .industries {
      grid-template-columns: repeat(3, 1fr);
    }
    .industry-card{
      width :220px
    }
  }
  
  /* Mobile */
  @media (max-width: 769px) {
    .service-section {
      height: 30vh;
      padding: 20px;
    }
  
    .content h1 {
      font-size: 36px;
    }
  
    .content p {
      font-size: 16px;
    }
  
    .image-container,
    .img {
      height: 50vh;
    }
  
    .service-container {
      padding: 30px 20px;
    }
  
    .service-card {
      padding: 24px;
    }
  
    .serve-container {
      padding: 50px 20px;
    }
  
    .serve-container h3 {
      font-size: 30px;
    }
  
    .serve-container p {
      font-size: 16px;
    }
  
    .industries {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .industry-card {
      width: 100%;
    }
    .footer-grid {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .content h1 {
      font-size: 30px;
    }
  
    .content p {
      font-size: 15px;
    }
  
    .industries {
      grid-template-columns: 1fr;
    }
  }
  
/* ############  serve section ends ############ */
