
    /* About */
/* Outer section: full white background */
.about {
  background-color: #ffffff;
  padding: 40px 20px;margin-top:-23px;
}
/* Flex container for H3 and logo image */
.about-header {
  display: flex;
  align-items: center;
  gap: 12px; /* space between text and image */
  margin-bottom: 12px;
}

.about-header h3 {
  font-size: 24px;
  color: #222;
  margin: 0;
}

.about-header img {
  max-width: 50px;
  height: auto;
}


/* Inner content wrapper */
.about-inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  color: #222;

}

/* Grid layout: logo + video/text */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

/* Logo styling */
.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-box img {
  width: 400px;
  height: auto;
}

/* Video + text styling */
.video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.video-box img {
  max-width: 120px;
  margin-bottom: 12px;
}

.video-box p {
  font-size: 16px;
  margin-top: -23px;
  margin-bottom: 12px;
  color: #555;
}

/* Video styling */
.video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Summary paragraph + button */
.about-summary {
  margin-top: 0px;
}

.about-summary p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.contact-us {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #E95420;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-us:hover {
  background-color: #5f1a01;
  transform: translateY(-2px);
}

/* Responsive: stack grid on small screens */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-box {
    text-align: center;
  }
}

/********************************************************/
    /* STATS COUNTER  */
   /* Stats Section */
/* Stats Section */
.stats {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.icon-wrapper i {
  font-size: 40px;
  color: #E95420; /* single color for all icons */
  margin-bottom: 10px;
}

.value {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.label {
  font-size: 16px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
}

/******************  *********************/

/* HEAT MAP AREA */

    /* Map area */
/* MAP SECTION */
.map-section {
  position: relative; /* needed for overlay */
  background: url('/imgs/mapbg.png') center/cover no-repeat; /* background image */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* ensures text is visible */
}

/* Black overlay */
.map-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 0;
}

/* Ensure content sits above overlay */
.map-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.map-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7); /* subtle title shadow */
}

.map-container {
  background-color: #111; /* black theme for map */
  border-radius: 16px;
  padding: 20px;
  height: 450px; /* fixed height, adjust as needed */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-placeholder {
  color: #f39c12; /* orange text to match other icons */
  font-size: 20px;
  font-weight: 500;
}

    /* Responsive */
    @media(max-width:900px){
      .about-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .hero-visual{height:300px}
      .hero-visual h1{font-size:28px}
      nav{display:none}
    }

/******************    **************************/
    /*UPDATES AND CONTACT US*/
     body {
        margin: 0;
        padding: 0;
        background: #151919;
        font-family: Arial, sans-serif;
        color: #fff;
    }

    .section-wrapper {
        display: flex;
        justify-content: center;
        gap: 60px;
        padding: 60px 40px;
        flex-wrap: wrap;
    }

    /* Titles */
    .section-title {
        font-size: 26px;
        color: #ff5a1f;
        margin-bottom: 20px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    /* --- LEFT UPDATES BOX --- */
    .updates-box {
        width: 450px;
        background: #666;
        padding: 20px;
        border-radius: 20px;
        position: relative;
        color: #ddd;
        height: 400px;
    }

    .arrow {
        font-size: 22px;
        text-align: center;
        cursor: pointer;
        color: #ff5a1f;
        margin: 8px 0;
    }

    .updates-text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    /* --- RIGHT CONTACT FORM --- */
    .contact-box {
        width: 450px;
    }

    form label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
        color: #ccc;
    }

    form input,
    form textarea {
        width: 100%;
        padding: 12px;
        background: #333;
        border: none;
        border-radius: 10px;
        margin-bottom: 18px;
        color: #fff;
        font-size: 14px;
        outline: none;
    }

    form textarea {
        resize: none;
        height: 120px;
    }

    .row-2 {
        display: flex;
        gap: 20px;
    }
    .submit-btn {
        width: 100%;
        padding: 14px;
        background: #ff5a1f;
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }
    .submit-btn:hover {
        opacity: 0.85;
    }

