  /* 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(26, 0, 70),  
    rgba(80, 0, 200, 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;
}


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


/* 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-text {
    order: 1; /* ensure text comes first */
  }
}



/* Whitepaper Section */
.whitepaper-section {
  padding: 50px 0;
}

.whitepaper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.whitepaper-card {
  display: flex;
  border-radius: 5px;
  flex-direction: row;
  background: #fff;
  border: 1px solid #5000C8;
  height: 311px;
  width: 100%;
  max-width: 531px;
  overflow: hidden;
  margin-bottom: 40px;
}

.whitepaper-image {
  margin: 10px 0 10px 10px; /* top:10px, right:0, bottom:10px, left:10px */
  width: 255px; /* reduced by 10px to keep layout aligned */
  height: auto;
  border-radius: 5px;
  max-height: 293px;
  object-fit: cover;
}


.whitepaper-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whitepaper-meta {
  font-size: 0.7rem;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.whitepaper-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0; /* No space between title and description */
  color: #5000C8;
}

.whitepaper-description {
  font-size: 0.95rem;
  color: #5000C8;
  flex-grow: 1;
}

.whitepaper-icon {
  margin-top: 10px;
}

.whitepaper-icon img {
  width: 12px;
  height: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .whitepaper-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: center;
  }

  .whitepaper-card {
    flex-direction: column;
    height: auto;
  }

  .whitepaper-image {
    margin: 10px; /* space on all four sides */
    width: calc(100% - 20px); /* adjust width to account for left+right margin */
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }

  .whitepaper-content {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .whitepaper-content {
    padding: 10px;
  }

  .whitepaper-title {
    font-size: 1rem;
  }

  .whitepaper-description {
    font-size: 0.9rem;
  }
}

