  /* General Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  margin-right: 200px;
}

/* Navigation Menu */
nav {
  flex: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  margin-left: 40px; /* Increased spacing between menu items */
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  transition: all 0.3s;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #6EC800;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
  gap: 5px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* Banner */
.banner {
  position: relative;
  margin-top: 80px;
  height: 400px;
  background-color: #1A0046;
  overflow: hidden;

  /* Add Flexbox for vertical & horizontal centering */
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center (optional) */
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient overlay */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 160, 230),
    rgba(110, 200, 0, 0.4)
  );
  z-index: 2;
  pointer-events: none;
}

.banner-text {
  position: relative;
  z-index: 3; /* make sure it is above the gradient */
  color: #fff;
  max-width: 600px;
}

.banner-text h1 {
  font-size: 40px;
  font-weight: bold;
  margin: 0; /* Remove default margin */
}


/* Offering */
.offering {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.title-line {
  display: inline-block;
  width: 8px;
  height: 32px;
  background-color: #000;
  margin-right: 10px;
  background-color: #5000C8;
}

/* Offering Boxes */
.offering-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.offering-boxes::-webkit-scrollbar {
  height: 6px;
}

.offering-boxes::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.offering-box {
  flex: 0 0 auto;
  width: 270px;
  height: 86px;
  border: 2px solid #00A0E6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.offering-box.active,
.offering-box:hover {
  background-color: #00A0E6;
  color: #fff;
}

.offering-details {
  display: flex;
  gap:30px;
  flex-wrap:wrap;
}

.offering-details .col {
  flex:1;
  min-width:200px;
}

.offering-details h3 {
  font-size:26px;
  font-weight:bold;
  margin-bottom:10px;
}



/* Responsive Menu */
@media (max-width:1024px) {
  .logo img {
    margin-right: 0;
  }

  .menu-toggle {
    display:flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    z-index: 999;
    margin: 0;
    padding: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 15px 30px;
    text-align: left;
  }
}



.site-footer {
  background-color: #FAFAFA;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  text-align: left;
  margin-bottom: 20px;
}

.footer-top p {
  margin: 10px 0 0;
  color: #444;
  font-size: 15px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.footer-column a {
  color: #333;
  text-decoration: none;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #0056b3;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #555;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}


/* Case Study CSS */
.case-studies-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(26, 0, 70, 0.1), rgba(0, 160, 230, 0.1));
}

.case-studies-section .section-title {
  margin-bottom: 40px;
  font-size: 2rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 340px); /* 3 cards per row */
  justify-content: center; /* Center the grid */
  gap: 20px;
}

.case-card {
  width: 340px;
  height: 500px;
  padding: 20px;
  border-radius: 0; /* No rounded corners */
  background: none; /* No background color */
  border: none; /* No border */
  box-shadow: none; /* No shadow */
  color: inherit; /* Inherit default text color */
  text-align: center;
  transition: transform 0.3s ease;
}

.case-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.case-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.case-card p {
  font-size: 0.95rem;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
  .case-card {
    width: 100%;
    height: auto; /* Auto height for smaller screens */
  }
}



/* Case studies grid: 3 columns on desktop */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Title that spans full row */
.case-title {
  grid-column: 1 / -1;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 30px 0 10px;
}

/* Optional: card styling if not already present */
.case-card {
  padding: 20px;
  text-align:left;
  border-left: 1px solid #BE78FF;
  height: 300px;
  width: 320px;
}

/* Responsive columns */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}
