.hero-banner {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding-top: 120px;
  background: linear-gradient(
    to bottom,
    rgba(2, 11, 24, 0.7),
    rgba(2, 11, 24, 0.9)
  ); /* Placeholder for the global network map */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  width: 100%;
}

/* Editable Title Styles */
.title-main {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}

/* Editable Description Styles */
.banner_content {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  padding: 0 15px;
}

/* Editable Text highlight */
[contenteditable="true"]:focus {
  outline: 2px dashed #0096ff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.slider-container {
  position: relative;
  margin: auto;
  overflow: hidden; /* Hides the images outside the frame */
  border-radius: 2px;
}

.slider-track {
  display: flex; /* Lines images up horizontally */
  width: 100%;
}

.slide {
  width: 100%; /* Ensures each slide takes up the full container width */
  box-sizing: border-box;
}

.slide img {
  display: block;
}

/* Navigation remains mostly the same as the previous version */
.prev,
.next {
  position: absolute;
  bottom: -11%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 12px;
  border: none;
  z-index: 10;
  cursor: pointer;
}

.next {
  right: 1.5%;
}
.prev {
  right: 4.5%;
}

.dots {
  text-align: center;
  margin-top: 10px;
  display: none;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.member_sec {
  position: relative;
  top: -80px;
}
.counter {
  background: #f58320;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}

.stat-group {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 20px;
}

/* SVG Icon Styling */
.icon-container {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.icon-svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.number {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: -2px;
}

.description {
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: none;
  max-width: 200px;
}

.divider {
  width: 1px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 40px;
}
.cube_sec {
  padding-bottom: 30px;
  position: relative;
}

.cubeheader {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cubeheader h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  padding-right: 15px;
  color: var(--text-color);
}

.cubeheader .line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--line-color);
}

/* Main collage */
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing);
  height: 500px; /* same overall height */
}

/* Left big image */
.main-image {
  height: 100%;
}

/* Right 4-image grid */
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: var(--spacing);
  height: 100%;
}

/* Image boxes */
.photo-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  padding: 5px;
}

/* Images */
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-item img:hover {
  transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .photo-collage {
    grid-template-columns: 1fr;
    height: auto;
  }

  .main-image {
    height: 300px;
  }

  .sub-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .sub-grid .photo-item {
    height: 150px;
  }
}
.about-section {
  text-align: center;
  padding: 40px 10%;
}
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.about-section p {
  font-size: 1.1rem;
  color: #444;
}
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.bottom-grid img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.map_sec {
  padding: 50px 0px;
}
.map_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.map_header h2 {
  font-size: 2rem;
  margin: 0;
  white-space: nowrap;
}

.view-all {
  color: #fbc465;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.view-all::after {
  content: " →";
}

/* Map Section */
.map_contain {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 60px;
}

.map_contain img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}
.news_sec {
  padding: 0px;
}
.news_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.news_header h3 {
  font-size: 2rem;
  margin: 0;
  white-space: nowrap;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.news-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  cursor: pointer;
}

.news-card {
  position: relative;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  overall: hidden;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-overlay {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0px;
  color: #666;
}

.arrow-icon {
  display: inline-block;
  background: var(--accent);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: #666;
}
.main_sec {
  display: flex;
  padding: 60px 0px;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.events-section {
  flex: 3;
  padding: 30px;
  background: #faf6f2;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.events-header h2 {
  font-size: 36px !important;
  margin: 0;
  color: var(--text-dark);
}

.view-all {
  color: var(--orange);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 15px;
}

.event-card h3 {
  font-size: 16px !important;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: #333;
}

.event-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 45px;
}

.read-more {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* --- RIGHT SECTION: FEATURED NEWS SLIDER --- */
.news-sidebar {
  flex: 1;
  background-color: var(--orange);
  padding: 40px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.news-sidebar h3 {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 30px 0;
  color: #fff;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: 300%; /* Total slides * 100% */
  animation: slide-logic 12s infinite ease-in-out;
}

.slide {
  width: 100%;
}

.slide img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 20px;
}

.slide p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

/* Animation: Pause on slide, then move */
@keyframes slide-logic {
  /* 0% to 25%: Show Slide 1 */
  0%,
  25% {
    transform: translateX(0);
  }
  /* 33% to 58%: Show Slide 2 */
  33%,
  58% {
    transform: translateX(-33.33%);
  }
  /* 66% to 91%: Show Slide 3 */
  66%,
  91% {
    transform: translateX(-66.66%);
  }
  /* 100%: Loop back to start */
  100% {
    transform: translateX(0);
  }
}

.slider-track:hover {
  animation-play-state: paused;
}

.footer-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.footer-content01 p {
  margin-top: 20px;
  color: #666;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  text-transform: capitalize;
}

.footer-content02 h5 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 6%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #333;
}

.footer-content02 ul li {
  list-style: none;
  display: block;
  cursor: pointer;
}

.footer-content02 ul {
  padding-left: 0px !important;
}

.footer-content02 ul li a {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #666;
}

.info-content {
  display: flex;
  margin-bottom: 10px;
}
.info-content a {
  color: #666;
}

.footer-content04 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 6%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #333;
}

.info-text {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
  color: #b0b0b0;
  margin-left: 10px;
}

.horzantal-linefooter {
  margin-top: 40px;
  width: 100%;
  height: 0.1px;
  background-color: #ffffff0f;
}

.copy-rightText p {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 6%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-top: 15px;
}

.iconfoot {
  color: #b0b0b0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .main_sec {
    display: block;
    padding: 0px;
  }
  .events-section {
    padding: 15px;
  }
  .events-grid {
    display: block;
  }
  .events-header h2 {
    font-size: 24px !important;
  }
  .view-all {
    font-size: 14px;
  }
  .event-card {
    margin-bottom: 20px;
  }
  .about-section h1 {
    font-size: 26px;
  }
  .counter {
    display: block;
    padding: 15px;
  }
  .text-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .number {
    font-size: 3rem;
  }
  .divider {
    width: 100%;
    height: 1px;
    margin: 0px 0px;
  }
  .stat-group {
    gap: 10px;
    padding: 10px 0px;
  }
  .news-sidebar h3 {
    font-size: 28px;
  }
  .hero-banner {
    padding: 40px 10px;
    min-height: 400px;
  }
  .member_sec {
    top: 20px;
  }
  .slider-container {
    min-height: auto;
  }
  .cube_sec {
    padding-bottom: 0px;
    padding-top: 50px;
  }
  .prev,
  .next {
    bottom: -19%;
    padding: 4px 8px;
  }
  .next {
    right: 4%;
  }
  .prev {
    right: 8%;
  }
}
