  /* 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;

  /* Flexbox to center content */
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
}

/* Banner image */
.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(120, 0, 250),  
    rgba(0, 160, 230, 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 0 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;
  }
}



/*footer*/
.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;
}


/* Who We Are Section */
.who-we-are {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

/* Flex container for text and image */
.flex-container {
  display: flex;
  align-items: flex-start; /* align text and image to top */
  justify-content: space-between;
  gap: 40px; /* space between text and image */
  flex-wrap: wrap; /* responsive */
}

/* Text content */
.who-text {
  flex: 1;
  max-width: 600px;
}

.who-text p {
  font-size: clamp(16px, 1.2vw, 18px); /* responsive font size */
  line-height: 1.6;
  color: rgb(0, 0, 0);
  margin-top: 0; /* no space below title */
}

/* Image Styling */
.who-image {
  flex: 1;
  max-width: 403px;
  max-height: 349.69px;
}

.who-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Section Title Styling */
.section-title {
  font-size: clamp(20px, 2vw, 26px); /* responsive font size */
  display: flex;
  align-items: center;
  margin-bottom: 0; /* remove default bottom margin */
}

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

/* Responsive: image comes below paragraph on smaller screens */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .who-image {
    order: 2; /* move image after text */
    margin-top: 20px; /* space between paragraph and image */
    max-width: 100%;
  }

  .who-text {
    order: 1; /* ensure text comes first */
  }
}




/* Info Section */
.info-section {
  padding: 80px 20px;
  background-color: #1A0046; /* dark purple background */
  color: #ffffff; /* white text */
}

.info-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.info-item {
  flex: 1 1 calc(50% - 20px); /* two items per row */
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.info-item h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
}

.info-item p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive: stack items on smaller screens */
@media (max-width: 768px) {
  .info-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .info-section .container {
    gap: 30px;
  }
}
