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

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

.banner-text {
  position: relative;
  z-index:2;
  color: #fff;
  max-width: 600px;
  padding: 100px 0;
}

.banner-text h1 {
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 10px;
}

.banner-text p {
  font-size: 28px;
  margin:0;
}

/* 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;
  font-size: 18px;
  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:20px;
  font-weight:bold;
  margin-bottom:10px;
  color: #00A0E6;
}

/* Add blue line to first column */
.offering-details .col:first-child {
  border-left: 2px solid #00A0E6;
  padding-left: 15px;
}

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

/* Banner & Offering Responsive */
@media (max-width:768px) {
  .banner {
    height:auto;
    min-height:300px;
  }

  .banner-image {
    max-width:100%;
    height:100%;
    opacity:0.3;
  }

  .banner-text {
    padding:40px 0;
    max-width:90%;
  }

  .offering-boxes {
    gap: 15px;
    padding-bottom: 10px;
  }

  .offering-details {
    flex-direction:column;
  }

  .offering-details .col:first-child {
    border-left: none;
    border-top: 4px solid #00A0E6;
    padding-left: 0;
    padding-top: 10px;
  }
}

@media (max-width:480px) {
  .banner-text h1 {
    font-size:28px;
  }

  .banner-text p {
    font-size:20px;
  }

  .offering-box {
    width: 240px;
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(90deg, #5000C8 0%, #00A0E6 100%);
  padding: 100px 0;
  color: #fff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;       /* allow wrapping to next row */
  gap: 150px;             /* space between cards */
  justify-content: flex-start; /* align cards to the left */
}

.stat-box {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 5px;
  width: 280px;          /* fixed width */
  height: 220px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.stats-section .stat-box p {
  font-size: 18px; /* Set paragraph font size */
  line-height: 1.4; /* Optional: adjust line spacing */
  margin: 0; /* Optional: remove default margin */
}

/* Responsive */
@media (max-width:900px) {
  .stats-grid {
    gap: 24px; /* Reduced gap on tablet */
  }

  .stat-box {
    width: 48%;           /* 2 cards per row */
    min-width: unset;     /* reset min-width */
  }
}

@media (max-width:600px) {
  .stats-grid {
    gap: 24px; /* Reduced gap on mobile */
  }

  .stat-box {
    width: 100%;          /* 1 card per row */
  }
}



/* Latest Market Assessment Reports Section */
.latest-reports {
  padding: 80px 0;
}

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

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

.reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px; /* Space between cards */
}

.report-card {
  width: 240px;
  height: 294px;
  border: 1px solid #E0E0E0; /* Outline color */
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: none; /* removed transition */
  cursor: default; /* not a clickable pointer */
}

/* Removed hover effect */
.report-card:hover {
  background-color: inherit;
  border-color: #E0E0E0;
  cursor: default;
}

.report-card .card-icon {
  width: 40px;
  height: 50px;
  margin-bottom: 20px;
}

.report-card .report-date {
  font-size: 14px;
  color: rgb(108, 108, 108);
  margin: 10px 0 5px 0;
  margin-bottom: 10px;
}

.report-card .report-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  flex-grow: 1;
}

/* Disable hyperlink look if <a> is inside */
.report-card a {
  text-decoration: none;
  color: inherit;
  cursor: default;
  pointer-events: none; /* disables clicking */
}

.report-card .card-arrow {
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .report-card {
    width: calc(50% - 15px); /* 2 cards per row */
    height: 280px;
  }
}

@media (max-width: 768px) {
  .report-card {
    width: 100%; /* 1 card per row */
  }
}



/* custom buttin for banner */
.custom-btn {
  width: 200px;
  height: 44px;
  background-color: #5000C8; /* Adjust color as per theme */
  color: #fff;
  font-size: 16px;
  border: none;
  margin-top: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #7800FA;
}

.report-button-wrapper {
  text-align: center;
  margin-top: 30px;
}



.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;
}


/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 700px;
  max-width: 95%;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

.form-group input,
.form-group textarea {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkbox-group {
  margin: 10px 0;
}

.submit-btn {
  background: #6a1b9a;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

/* Snackbar Style */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #6EC800;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 9999;  /* Ensure it's on top */
  left: 50%;
  top: 30px;  /* Positioned at the top of the page */
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.snackbar.show {
  visibility: visible;
  opacity: 1;
}
