* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.section1-container {
  overflow: hidden;
  position: relative;
}
.section1-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
  object-position: 69% 0%;
}

.section1-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px 30px 10px;
  color: #fff;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.section1-bar {
  /* height: 80px; */
  padding: 30px;
  /* background-color: blue; */
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
}

.section1-left {
  flex: 1 1 500px;
  max-width: 100%;
}

.section1-logo {
  width: 100px;
  position: absolute;
  top: -50px;
  left: 10px;
}

.section1-logo img {
  width: 100%;
  height: 100%;
}

.section1-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section1-stats {
  width: fit-content;
  display: flex;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  transition:
    transform 0.3s ease,
    background 0.3s;
}

.section1-stat {
  width: 200px;
  padding: 15px;
}

.section1-stats:hover {
  transform: scale(1.03);
}

.section1-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.section1-stat h2 {
  font-size: 30px;
  font-weight: 700;
}

.section1-stat p {
  font-size: 20px;
}

.section1-subtitle {
  font-size: 34px;
  margin: 25px 0;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.section1-buttons {
  display: flex;
  gap: 15px;
}

.section1-btn-primary {
  padding: 13px 26px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff512f, #f09819);
  position: relative;
  overflow: hidden;
}

.section1-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.section1-btn-primary:hover::before {
  left: 100%;
}

.section1-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
}

.section1-right {
  /* flex: 1 1 320px; */
  /* flex-shrink: 0; */
  max-width: 400px;
  width: 100%;
  height: auto;
  min-height: 350px;
  /* background: #000; */
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.6s;
}

.section1-right h2 {
  color: white;
  text-transform: uppercase;
  padding: 20px;
  font-size: 28px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s infinite linear;
  z-index: 1;
}

.circle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.circle:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 9%;
  left: 47%;
}

.circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 23%;
  left: 38%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.counter {
  font-weight: bold;
}

@media (max-width: 1000px) {
  .section1-bg {
    height: 49%;
    object-position: 50% 0%;
  }
  .section1-title {
    font-size: 40px;
  }
  .section1-subtitle {
    font-size: 26px;
  }

  .section1-content-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .section1-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section1-stats {
    flex-direction: column;
    width: auto;
  }

  .section1-stat {
    padding: 15px;
    width: auto;
  }

  .section1-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .section1-right {
    margin-top: 30px;
    max-width: 100%;
  }
}

@media (max-width: 750px) {
  .section1-logo {
    width: 70px !important;
    position: absolute;
    top: -50px;
    left: 10px;
  }
  .section1-content-wrapper {
    padding: 60px 20px 40px 20px;
  }
}

@media (max-width: 480px) {
  .section1-title {
    font-size: 28px;
  }
  .section1-subtitle {
    font-size: 20px;
  }

  .section1-btn-primary {
    width: 100%;
  }
  .section1-left {
    max-width: 100%;
  }
  .section1-stats {
    flex-direction: column;
  }
}

.section1-logo {
  width: 100px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-80px) scale(0.8);
  animation: logoPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section2-container {
  font-family: Arial, sans-serif;
  /* background: linear-gradient(135deg, #dfe9f3, #cfd9df); */
  background: url("images/section2/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 50%;
  padding: 50px 0px;
  text-align: center;
}

.section2-title {
  font-size: 32px;
  font-weight: bold;
  color: #1b4f72;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.section2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  padding: 0px 10px;
  margin: auto;
}

.section2-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.section2-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.section2-card img {
  /* border: 1px solid red; */
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  transform: scale(1.5);
}

.section2-card:hover img {
  transform: rotate(10deg) scale(1.1);
}

.section2-text {
  font-size: 16px;
  color: #555;
}

.section2-text strong {
  display: block;
  margin-top: 5px;
  color: #000;
}

/* Hover overlay effect */
.section2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 79, 114, 0.08);
  opacity: 0;
  transition: 0.3s;
}

.section2-card:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .section2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section2-title {
    font-size: 24px;
    padding: 0px 5px;
  }

  .section2-grid {
    grid-template-columns: 1fr;
  }

  .section2-card {
    padding: 15px;
  }
}

/* BACKGROUND */
.section3-container {
  background: url("images/section3/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}

/* WRAPPER */
.section3-wrapper {
  max-width: 1300px;
  padding: 0px 10px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 15px;
  align-items: center;
}

/* LEFT */
.section3-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD (GRID FIX FOR PERFECT ALIGNMENT) */
.section3-card {
  display: grid;
  grid-template-columns: 74px 104px 1px auto;
  align-items: center;
  background: #f1f5f8;
  border-radius: 12px;
  padding: 15px;
  min-height: 90px;
  gap: 15px;
  transition: 0.3s;
}

.section3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ICON */
.section3-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  display: flex;
  align-items: center;
  justify-content: center;
}

.section3-icon img {
  width: 36px;
  height: 36px;
}

/* NUMBER */
.section3-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e4c7a;
  white-space: nowrap;
}

/* DIVIDER */
.section3-divider {
  width: 1px;
  height: 45px;
  background: #1e4c7a;
}

/* TEXT */
.section3-card p {
  font-size: 15px;
  color: #1e4c7a;
}

/* RIGHT CAROUSEL CONTAINER */
.s3-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.s3-carousel-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-width: 0;
  border-radius: 12px;
}

.s3-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.s3-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  box-sizing: border-box;
  align-content: start;
}

/* LOGO CARD */
.section3-logo {
  background: #ffffff;
  border-radius: 8px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  height: 70px;
}

.section3-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.section3-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* NAVIGATION BUTTONS */
.s3-nav-btn {
  background: #1e4c7a;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
  z-index: 10;
}

.s3-nav-btn:hover:not(:disabled) {
  background: #0bb3a6;
}

.s3-nav-btn:disabled {
  background: #a0b3c6;
  cursor: not-allowed;
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section3-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s3-slide {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .s3-carousel-container {
    width: 100%;
    min-width: 0;
    margin: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .s3-slide {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .s3-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .s3-carousel-container {
    gap: 8px;
  }

  .section3-card {
    grid-template-columns: 60px 75px 1px auto;
    padding: 12px 10px;
    gap: 10px;
  }

  .section3-card h2 {
    font-size: 16px;
  }

  .section3-icon {
    width: 60px;
    height: 60px;
  }

  .section3-icon img {
    width: 28px;
    height: 28px;
  }

  .section3-card p {
    font-size: 13px;
    white-space: normal;
  }
}

/* SECTION */
.section4-container {
  background-image: url("images/section4/bg2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 100%;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

/* MAIN GRID */
.section4-wrapper {
  max-width: 1300px;
  padding: 0px 10px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.section4-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.section4-subtitle {
  margin-top: 20px;
  font-size: 20px;
  color: #d7f3ef;
  max-width: 420px;
  font-weight: 600;
}

/* RIGHT SIDE - CAROUSEL */
.section4-carousel-container {
  position: relative;
  width: 100%;
}

.section4-cards {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  padding: 60px 0 20px 0; /* Added top padding to prevent avatar clipping */
  /* scroll-snap-type: x mandatory; */
}

.section4-cards::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* CARD */
.section4-card {
  flex: 0 0 calc(50% - 13px);
  /* Show 2 cards at a time on large screens */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px 20px 30px 20px;
  padding-top: 55px;
  margin-top: 45px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid #ffffff3e;
  scroll-snap-align: center;
}

.section4-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* IMAGE */
.section4-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* border: 4px solid #fff; */
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* background: #fff; */
  z-index: 5;
}

.section4-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: invert(1);
}

.section4-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.section4-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
  color: #fff;
}

.section4-desc {
  font-size: 14px;
  margin-top: 10px;
  color: #e4f7f5;
  line-height: 1.6;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  overflow: hidden;
  flex-grow: 1;
}

/* BUTTON */
.section4-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  font-size: 12px;
  background: #ff6a2b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.3s;
}

.section4-btn:hover {
  background: #e55a1e;
}

/* NAV BUTTONS */
.section4-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff6a2b;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    background 0.3s,
    transform 0.2s;
}

.section4-nav-btn:hover {
  background: #e55a1e;
  transform: translateY(-50%) scale(1.1);
}

.section4-prev-btn {
  left: -22px;
}

.section4-next-btn {
  right: -22px;
}

.section4-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1350px) {
  .section4-container {
    padding: 60px 30px;
  }

  .section4-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 100%;
    gap: 10px;
  }

  .section4-wrapper > div {
    min-width: 0;
    /* Critical for carousel in grid */
  }

  .section4-subtitle {
    margin: 15px auto;
    font-size: 18px;
    max-width: 100%;
  }

  .section4-title {
    font-size: 36px;
    word-wrap: break-word;
  }

  .section4-cards {
    padding: 0px 0 20px 0;
  }

  .section4-card {
    flex: 0 0 calc(50% - 13px);
  }

  .section4-prev-btn {
    left: -15px;
  }

  .section4-next-btn {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .section4-container {
    padding: 50px 20px;
  }

  .section4-title {
    font-size: 30px;
  }

  .section4-subtitle {
    font-size: 16px;
  }

  .section4-card {
    flex: 0 0 100%;
  }

  .section4-cards {
    padding: 60px 0 20px 0;
  }

  .section4-nav-btn {
    width: 40px;
    height: 40px;
    top: 25%;
  }
}

@media (max-width: 480px) {
  .section4-container {
    padding: 40px 10px;
    width: 100%;
    overflow-x: hidden;
  }

  .section4-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .section4-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .section4-card {
    flex: 0 0 100%;
  }

  .section4-cards {
    padding: 20px 0 20px 0;
  }

  .section4-image {
    width: 70px;
    height: 70px;
    top: -35px;
  }

  .section4-nav-btn {
    display: flex;
    width: 36px;
    height: 36px;
    background: rgba(255, 106, 43, 0.9);
  }

  .section4-prev-btn {
    left: -5px;
  }

  .section4-next-btn {
    right: -5px;
  }

  .section4-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* MODAL STYLES */
.section4-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section4-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.section4-modal-content {
  background: #fff;
  color: #333;
  max-width: 650px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  /* padding: 40px; */
  padding: 55px 25px 25px 25px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.section4-modal-overlay.active .section4-modal-content {
  transform: translateY(0);
}

.section4-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #444;
  transition:
    background 0.2s,
    transform 0.2s;
}

.section4-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.section4-modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #0ea996;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.section4-modal-body {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar for modal body */
.section4-modal-body::-webkit-scrollbar {
  width: 6px;
}

.section4-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.section4-modal-body::-webkit-scrollbar-thumb {
  background: #0ea996;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .section4-modal-content {
    padding: 30px 20px;
  }

  .section4-modal-title {
    font-size: 22px;
  }

  .section4-modal-body {
    font-size: 15px;
  }
}
.section5-container {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 30px;
}

.section5-container h3 {
  font-size: 22px;
  margin: 10px 0px 20px 0px;
}

.section5-title {
  color: #0b4a7d;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

.section5-slider-wrapper {
  position: relative;
}

.section5-accordion {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 20px 0;
}

.section5-accordion::-webkit-scrollbar {
  display: none;
}

/* ── Accordion Item ── */
.section5-item {
  position: relative;
  height: 500px;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Collapsed state */
.section5-item {
  width: 55px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section5-item:hover {
  background: #f8fcfc;
}

/* Active / Expanded state — default desktop */
.section5-item.section5-active {
  width: 600px;
  cursor: default;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ── Expanded Content ── */
.section5-item-full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.section5-item.section5-active .section5-item-full {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.15s;
}

.section5-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section5-item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 140px 35px 30px;
  background: linear-gradient(
    to top,
    rgba(16, 150, 108, 1) 0%,
    rgba(16, 150, 108, 0.85) 40%,
    transparent 100%
  );
  color: white;
}

.section5-item-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.section5-item-text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── Collapsed Label ── */
.section5-item-collapsed {
  width: 55px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.section5-item.section5-active .section5-item-collapsed {
  opacity: 0;
  pointer-events: none;
}

.section5-plus {
  font-size: 24px;
  color: #c0c0c0;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1;
}

.section5-tab-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #999;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 600;
  max-height: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
  transform: rotate(180deg);
}

/* ── Navigation Buttons ── */
.section5-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #f55a00);
  color: white;
  border: none;
  box-shadow:
    0 4px 12px rgba(245, 90, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.section5-nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(135deg, #ffa726, #ff7043);
}

.section5-nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.section5-prev-btn {
  left: -24px;
}

.section5-prev-btn svg {
  transform: rotate(180deg);
}

.section5-next-btn {
  right: -24px;
}

/* ════════════════════════════════════════
           RESPONSIVE
           ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .section5-item.section5-active {
    width: 480px;
  }
}

@media (max-width: 768px) {
  .section5-container {
    padding: 0 50px;
    margin: 40px auto;
  }

  .section5-title {
    font-size: 24px;
  }

  .section5-item.section5-active {
    width: calc(100vw - 120px);
  }

  .section5-item {
    height: 460px;
  }

  .section5-nav-btn {
    width: 40px;
    height: 40px;
  }

  .section5-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .section5-prev-btn {
    left: -45px;
  }

  .section5-next-btn {
    right: -45px;
  }
}

@media (max-width: 480px) {
  .section5-container {
    padding: 0 35px;
    margin: 30px auto;
  }

  .section5-title {
    font-size: 24px;
    text-align: center;
    /* margin-bottom: 25px; */
  }

  .section5-container h3 {
    /* font-size: 22px; */
    margin: 10px 0px 20px 0px;
    text-align: center;
  }

  .section5-item {
    height: 430px;
  }

  .section5-item {
    width: 45px;
  }

  .section5-item.section5-active {
    width: calc(100vw - 90px);
  }

  .section5-item-collapsed {
    width: 45px;
  }

  .section5-item-text {
    padding: 100px 20px 25px;
  }

  .section5-item-text h3 {
    font-size: 1.05rem;
  }

  .section5-item-text p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .section5-accordion {
    gap: 8px;
  }

  .section5-nav-btn {
    width: 32px;
    height: 32px;
  }

  .section5-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .section5-prev-btn {
    left: -32px;
  }

  .section5-next-btn {
    right: -32px;
  }
}

.section6-container {
  width: 100%;
  max-width: 1300px;
  margin: 20px auto 0px auto;
  display: flex;
  position: relative;
  /* min-height: 560px; */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 4px;
  overflow: visible;
}

/* Left Side */
.section6-left {
  flex: 1;
  /* background-color: #00846E; */
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  /* background-image: url("/images/section6/left-bg.jpg"); */
  color: #ffffff;
  /* padding: 70px 60px 80px 80px; */
  padding: 20px 35px 110px 40px;
  position: relative;
  z-index: 2;
}

/* Circuit Pattern SVG overlay */
.section6-circuit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  pointer-events: none;
}

.section6-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.section6-description {
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 25px;
  max-width: 540px;
}

/* Right Side */
.section6-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 670px;
}

.section6-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.6s ease,
    transform 10s linear;
}

.section6-container:hover .section6-main-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Floating Info Card Overlay */
.section6-info-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
  overflow: hidden;
  width: 440px;
  animation: cardFloat 2s ease-in-out infinite alternate;
  cursor: pointer;
}

@keyframes cardFloat {
  from {
    transform: translateY(0) translateX(-50%);
  }

  to {
    transform: translateY(-5px) translateX(-50%);
  }
}

.section6-line {
  width: 2px;
  border-radius: 100px;
  height: 50px;
  background-color: white;
}

.section6-eligibility {
  padding: 20px 30px;
  /* flex: 1; */
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border-right: 1px solid #eee; */
}

.section6-eligibility h4 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.section6-eligibility p {
  color: #555;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.section6-eligibility p:hover {
  color: #ff6624;
  transform: scale(1.02);
}

.section6-date-box {
  background: linear-gradient(135deg, #ff8e4d 0%, #ff6624 100%);
  color: white;
  padding: 15px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.section6-indicator-dot {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 4px solid #ff6624;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

.section6-date-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.95;
}

.section6-date-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section6-day-container {
  display: flex;
  align-items: flex-start;
}

.section6-day {
  font-size: 38px;
  font-weight: 800;
  line-height: 0.9;
}

.section6-th {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  margin-left: 2px;
}

.section6-month {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Apply Now Vertical Tag Ribbon */
.section6-apply-now {
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(0);
  background: linear-gradient(135deg, #ff8e4d 0%, #ff6624 100%);
  color: white;
  padding: 40px 12px;
  writing-mode: vertical-lr;
  /* writing-mode: vertical-rl;  */
  /* text-orientation: upright; */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 19px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: -8px 5px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 1.5px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section6-apply-now:hover {
  padding-right: 30px;
  background: linear-gradient(135deg, #ff9b66 0%, #ff7a40 100%);
}

@media (max-width: 1024px) {
  .section6-container {
    flex-direction: column;
    min-height: auto;
  }

  .section6-left,
  .section6-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .section6-left {
    padding: 20px;
  }

  .section6-right {
    height: 500px;
  }

  .section6-info-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) !important;
    width: 90%;
    margin: 0 auto;
    animation: none;
  }

  .section6-apply-now {
    writing-mode: horizontal-tb;
    /* top: 50px; */
    bottom: 30%;
    top: auto;
    right: auto;
    font-size: 26px;
    border-radius: 0 10px 10px 0;
    padding: 20px;
    left: 0;
  }

  .section6-eligibility {
    width: unset;
  }
}

@media (max-width: 768px) {
  .section6-title {
    font-size: 32px;
  }

  .section6-info-card {
    flex-direction: column;
    border-radius: 8px;
  }

  .section6-eligibility {
    border-right: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px;
  }

  .section6-indicator-dot {
    display: none;
  }

  .section6-date-box {
    justify-content: center;
    gap: 30px;
    padding: 15px;
  }
}

/* Modal CSS */
.section6-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.section6-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.section6-modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.section6-modal-overlay.active .section6-modal-content {
  transform: translateY(0);
}

.section6-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.section6-modal-close:hover {
  color: #333;
}

.section6-modal-heading {
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
  padding-right: 20px;
}

.section6-modal-subheading {
  color: #ff6624;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.section6-modal-body h4 {
  color: #333;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.section6-modal-body ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.section6-modal-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  font-weight: 600;
}

.section6-modal-body ul li::before {
  content: "•";
  color: #ff6624;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
}

@media (max-width: 600px) {
  .section6-modal-content {
    padding: 25px;
  }
  .section6-modal-heading {
    font-size: 20px;
  }
  .section6-modal-subheading {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .section6-modal-body ul li {
    font-size: 14px;
  }
}

.section7-main-wrapper {
  width: 100%;

  position: relative;
  padding: 80px 20px 300px 20px;

  background-image: url("./images/section7/bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  overflow: hidden;
}

.section7-header {
  text-align: center;
  margin-bottom: 30px;
}

.section7-main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e4d7b;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}

.section7-sub-heading {
  font-size: 1.1rem;
  color: #444;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

.section7-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.section7-tab {
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e4d7b;
  background-color: #fff;
  border: 2px solid #1e4d7b;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section7-tab.active,
.section7-tab:hover {
  background-color: #1e4d7b;
  color: #fff;
  box-shadow: 0 6px 15px rgba(30, 77, 123, 0.2);
}

.section7-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.section7-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section7-tab-title {
  text-align: center;
  font-size: 1.4rem;
  color: #1e4d7b;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

/* The white background container */
.section7-content-container {
  max-width: 1300px;
  margin: 0 auto 20px auto;
  background: #ffffff;
  border-radius: 25px;
  padding: 45px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.section7-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

/* Small Cards */
.section7-card {
  border: 1px solid #d8dde7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 12px 12px;
  transition: all 0.3s ease;
  background: #fff;
  cursor: pointer;
  height: 100px;
  width: 100%;
  overflow: hidden;
}

.section7-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 77, 123, 0.1);
  border-color: #1e4d7b;
}

.section7-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
}

.section7-text-group {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  overflow: hidden;
}

.section7-course-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1e4d7b;
  line-height: 1.3;
  display: block;
}

.section7-divider {
  width: 1px;
  height: 35px;
  background-color: #ddd;
  margin: 0 10px;
  flex-shrink: 0;
}

.section7-seats {
  font-size: 0.68rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
  width: 65px;
  text-align: right;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .section7-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .section7-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section7-card {
    /* height: 80px; */
    height: fit-content;
  }
  .section7-main-heading {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .section7-main-wrapper {
    padding: 60px 20px 50px 20px;
  }

  .section7-grid {
    grid-template-columns: 1fr;
  }

  .section7-divider {
    display: none;
  }

  .section7-seats {
    width: auto;
    margin-left: auto;
  }

  .section7-main-heading {
    font-size: 1.6rem;
  }
  .section7-sub-heading {
    font-size: 0.95rem;
  }
  .section7-tab-title {
    font-size: 1.2rem;
  }
  .section7-tabs {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .section7-course-name {
    font-size: 0.9rem;
  }
  .section7-text-group {
    margin-right: 5px;
  }
  .section7-content-container {
    padding: 15px;
  }
}

/* Overflow prevention */
.section7-main-wrapper {
  overflow: hidden;
}

.section8-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url("images/section8/bg.png") no-repeat center/cover;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

/* FIX: contain overflow */
.section8-container {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0px;
  min-width: 0;
}

/* LEFT */
.section8-content {
  flex: 0 0 38%;
  color: white;
  min-width: 0;
}

.section8-content h2 {
  font-size: 42px;
  /* margin-bottom: 25px; */
  font-weight: 700;
  margin: 10px 0px !important;
}

.section8-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0px !important;
}

.section8-accent {
  color: #f55a00;
  font-size: 46px;
  background: linear-gradient(to right, #f55a00, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA */
.section8-cta-btn {
  display: inline-block;
  /* margin-top: 35px; */
  padding: 16px 36px;
  background: linear-gradient(to right, #f55a00, #ff8c00);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* RIGHT */
.section8-gallery-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

/* SLIDER */
.section8-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items: flex-end;
  min-width: 0;
  padding: 20px 30px 40px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.section8-gallery::-webkit-scrollbar {
  display: none;
}

.section8-pill {
  flex: 0 0 175px;
  width: 175px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.section8-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* hover effect */
.section8-pill:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.section8-pill:hover img {
  filter: grayscale(0%);
}

/* heights */
.section8-pill:nth-child(1) {
  height: 320px;
}

.section8-pill:nth-child(2) {
  height: 350px;
}

.section8-pill:nth-child(3) {
  height: 380px;
}

.section8-pill:nth-child(4) {
  height: 410px;
}

.section8-pill:nth-child(5) {
  height: 440px;
}

.section8-pill:nth-child(6) {
  height: 470px;
}

.section8-pill:nth-child(7) {
  height: 500px;
}

/* BUTTONS */
.section8-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f55a00;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.section8-prev-btn {
  left: 0;
}

.section8-next-btn {
  right: 0;
}

.section8-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* MOBILE */
@media (max-width: 1024px) {
  .section8-wrapper {
    padding: 60px 0 20px;
  }

  .section8-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .section8-pill.active-pill {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .section8-pill.active-pill img {
    filter: grayscale(0%);
  }

  .section8-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .section8-content h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section8-content h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .section8-accent {
    font-size: 36px;
    display: inline-block;
    margin: 5px 0;
  }

  .section8-gallery-wrapper {
    width: 100%;
  }

  .section8-gallery {
    padding: 10px calc(50vw - 87.5px) 30px; /* Center alignment padding */
    scroll-snap-type: x mandatory;
  }

  .section8-pill {
    scroll-snap-align: center;
  }

  .section8-nav-btn {
    width: 40px;
    height: 40px;
  }
}

.section9-wrapper {
  position: relative;
  background: linear-gradient(
    180deg,
    #e9f4f1 0%,
    #e9f4f1 65%,
    rgb(1, 147, 166) 65%,
    rgb(11, 149, 112) 100%
  );
  /* background: linear-gradient(180deg, #e9f4f1 0%, #e9f4f1 65%,  rgb(11, 149, 112) 65%, rgb(1, 147, 166) 100%); */

  padding: 60px 0 30px 0;
  overflow: hidden;
  width: 100%;
}

.section9-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.section9-header h2 {
  margin: 0;
  color: #0b4a7d;
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.section9-header h3 {
  font-size: 1.1rem;
  margin: 10px 0px;
}

/* Slider Styles */
.section9-slider-wrapper {
  position: relative;
  z-index: 5;
}

.section9-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 0 50px 0;
  scrollbar-width: none;
  /* Firefox */
  scroll-snap-type: x mandatory;
}

.section9-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.section9-card {
  flex: 0 0 calc(33.333% - 17px);
  aspect-ratio: 4 / 5;
  min-height: 480px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  scroll-snap-align: center;
}

.section9-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.section9-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.section9-card:hover img {
  filter: grayscale(0);
}

/* Nav Buttons */
.section9-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #f55a00);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 90, 0, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.section9-nav-btn:hover {
  background: linear-gradient(135deg, #ffa726, #ff7143);
  transform: translateY(-50%) scale(1.1);
}

.section9-prev-btn {
  left: -20px;
}

.section9-next-btn {
  right: -20px;
}

.section9-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
  .section9-card {
    flex: 0 0 calc(50% - 12.5px);
  }

  .section9-header h2 {
    font-size: 2rem;
  }

  .section9-prev-btn {
    left: 5px;
  }

  .section9-next-btn {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .section9-card {
    flex: 0 0 100%;
    min-height: 400px;
  }

  .section9-slider {
    padding: 40px 0 50px 0;
  }

  .section9-header h2 {
    font-size: 24px;
  }

  .section9-wrapper {
    padding: 40px 0 20px 0;
  }
}

@media (max-width: 480px) {
  .section9-header h2 {
    font-size: 24px;
  }

  .section9-container {
    padding: 0 20px;
  }

  .section9-nav-btn {
    width: 40px;
    height: 40px;
  }

  .section9-header h3 {
    font-size: 0.95rem;
    margin: 10px 0px;
  }
}

.section10-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("images/section10/bg.jpeg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: center;
}

.section10-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.section10-content {
  max-width: 60%;
}

.section10-text {
  color: #1b807a;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
}

/* Mobile and Tablet (<=992px) */
@media (max-width: 992px) {
  .section10-container {
    min-height: 450px;
    align-items: flex-end; /* Align content to bottom */
    background-position: right center; /* Focus on the right side of the image if needed */
  }

  .section10-wrapper {
    padding: 0;
  }

  .section10-content {
    max-width: 100%;
    width: 100%;
    /* Gradient using shades of #1b807a */
    background: linear-gradient(
      to bottom,
      rgba(27, 128, 122, 0) 0%,
      rgba(27, 128, 122, 0.7) 40%,
      rgba(27, 128, 122, 0.95) 75%,
      #1b807a 100%
    );
    padding: 80px 20px 40px; /* Top padding extra for smooth gradient transition */
    text-align: center;

    position: absolute;
    bottom: 0px;
  }

  .section10-text {
    color: #ffffff;
    font-size: 24px;
  }
}

/* Small Mobile (<=600px) */
@media (max-width: 600px) {
  .section10-container {
    min-height: 400px;
  }

  .section10-text {
    font-size: 20px;
  }
}

.section11-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.section11-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section11-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teal overlay */
.section11-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 80, 75, 0.88) 0%,
    rgba(12, 120, 100, 0.82) 50%,
    rgba(10, 70, 65, 0.9) 100%
  );
  z-index: 2;
}

/* Subtle grid lines */
.section11-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section11-container {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  width: 100%;
  padding: 60px 50px 60px 50px;
}

/* Title */
.section11-title {
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(-30px);
  animation: section11FadeDown 0.8s ease forwards;
}

/* Steps Container */
.section11-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 360px;
  padding: 0 10px;
}

/* The dotted wave SVG path */
.section11-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.section11-path-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-dashoffset: 1000;
  /* animation: section11DashDraw 3s ease forwards 0.5s; */
  animation: section11DashDraw 10s ease 0.5s infinite;
}

/* Individual Step */
.section11-step {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
}

/* Stagger positions: odd=bottom, even=top */
.section11-step:nth-child(odd) {
  align-self: flex-end;
}

.section11-step:nth-child(even) {
  align-self: flex-start;
}

/* Icon Circle */
.section11-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.section11-icon svg {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.85);
  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.section11-icon img {
  width: 36px;
  height: 36px;
  /* fill: rgba(255, 255, 255, 0.85); */
  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.section11-step:hover .section11-icon {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(14, 169, 150, 0.3);
}

.section11-step:hover .section11-icon svg {
  fill: #ffffff;
  transform: scale(1.1);
}

/* Step Label */
.section11-label {
  color: white;
}

.section11-label .section11-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 4px;
}

.section11-step-num .section11-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

.section11-step-num span {
  /* font-size: 0.95rem; */
  font-size: 24px;
  font-weight: 800;
  /* color: #f55a00; */
  color: #ffa137;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section11-label p {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
}

/* APPLY NOW button */
.section11-apply-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 25px 16px;
  background: linear-gradient(to bottom, #f55a00, #ff8c00);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(245, 90, 0, 0.4);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.section11-apply-btn:hover {
  padding: 25px 22px;
  box-shadow: -6px 0 30px rgba(245, 90, 0, 0.6);
}

/* Animations */
@keyframes section11FadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section11FadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section11DashDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes section11Pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.section11-step.section11-visible .section11-icon {
  animation: section11Pulse 2.5s ease infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .section11-title {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }

  .section11-step {
    width: 140px;
  }

  .section11-icon {
    width: 70px;
    height: 70px;
  }

  .section11-icon svg {
    width: 30px;
    height: 30px;
  }

  /* .section11-container {
                padding: 50px 30px;
            } */
}

@media (max-width: 850px) {
  .section11-wrapper {
    min-height: auto;
  }

  .section11-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .section11-steps {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 40px;
    min-height: auto;
  }

  .section11-step {
    flex-direction: row;
    text-align: left;
    width: 100% !important;
    align-self: flex-start !important;
    gap: 18px;
  }

  .section11-step:nth-child(odd),
  .section11-step:nth-child(even) {
    align-self: flex-start !important;
  }

  .section11-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .section11-step-num {
    justify-content: flex-start !important;
  }

  .section11-path-svg {
    display: none;
  }

  .section11-apply-btn {
    position: relative;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    border-radius: 10px;
    margin: 40px auto 0;
    display: block;
    text-align: center;
    right: auto;
    top: auto;
    transform: none;
    padding: 18px 50px;
  }

  .section11-container {
    padding: 40px 25px 50px;
  }
}

@media (max-width: 480px) {
  .section11-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .section11-icon {
    width: 60px;
    height: 60px;
  }

  .section11-icon svg {
    width: 26px;
    height: 26px;
  }

  .section11-label p {
    font-size: 0.82rem;
  }
}

.section12-container {
  /* max-width: 1300px; */
  /* max-height: 100vh; */
  /* height: 100vh; */
  width: 100%; 
  height: auto; 
  margin: auto;
  /* overflow: hidden; */
  /* border: 5px solid red;  */
}
.section12-container img {
  width: 100%;
  /* height: 100%; */
  display: block;
  object-fit: cover;
}

.section13-hero {
  position: relative;
  /* height: 100vh; */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.section13-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/section13/bg.jpg") center/cover no-repeat;
  z-index: 0;
}

/* .section13-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
      );
      z-index: 1;
    } */

.section13-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.section13-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.section13-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

.section13-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff5e3a);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section13-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 58, 0.4);
  background: linear-gradient(135deg, #ff5e3a, #ff7a18);
}

/* Responsive */
@media (max-width: 768px) {
  .section13-title {
    font-size: 28px;
  }

  .section13-subtitle {
    font-size: 16px;
  }

  .section13-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section13-title {
    font-size: 24px;
  }

  .section13-subtitle {
    font-size: 14px;
  }
}

.section14-wrapper {
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  color: #ffffff;
}

.section14-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 70px;
  text-align: center;
  position: relative;
}

/* Heading */
.section14-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
  animation: fadeUp 1s ease;
  font-style: italic;
}

/* Button */
.section14-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff8a3d, #ff5a1f);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeUp 1.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.section14-btn::after {
  display: none;
}

.section14-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Bottom row */
.section14-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  font-size: 14px;
  opacity: 0.95;
}

/* Make links white */
.section14-wrapper a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Underline animation */
.section14-wrapper a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.section14-wrapper a:hover::after {
  width: 100%;
}

.section14-wrapper a:hover {
  color: #ffe0cc;
}

/* Footer strip */
.section14-footer {
  background: #1f4f82;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
  color: #fff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section14-title {
    font-size: 26px;
  }

  .section14-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section14-container {
    padding: 50px 15px 60px;
  }
}

:root {
  --footer-color-1: #1c3a66;
  /* --footer-color-2: #ff5d29; */
  --footer-color-2: rgb(14, 235, 176);
  --footer-color-3: #17345c;
  --footer-color-4: rgb(1, 147, 166);
}

/* MAIN FOOTER */
.footer-container {
  background: var(--footer-color-1);
  color: #ffffff;
  padding: 50px 0px 0px 0px;
}

.footer-inner {
  max-width: 1300px;
  padding: 0px 20px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* COLUMN */
.footer-col {
  flex: 1 1 300px;
}

/* HEADINGS */
.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  /* border: 1px solid red; */
}

.footer-title::after {
  position: absolute;
  /* right: 0; */
  /* left: 50%; */
  left: 5px;
  bottom: -11px;

  content: "";
  background: var(--footer-color-2);
  height: 3px;
  width: 50px;

  border-radius: 100px;
  margin-left: 0;
  z-index: 0;

  transition: all 0.4s ease;
}

.footer-title:hover::after {
  /* transform: scaleX(2); */
  /* transform-origin: left; */
  width: 100px;
}

/* TEXT */
.footer-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* ICON ROW */
.footer-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  text-decoration: none;
  /* text-decoration-color: #ff5d29; */
}

.footer-icon {
  margin-right: 10px;
  font-size: 18px;
}

.footer-icon img {
  width: 20px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  /* align-items: center; */
  margin-right: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

/* .footer-social a:hover {
            color: #ff6a2c;
            transform: translateY(-2px);
        } */

.footer-item:hover {
  /* color: #ff6a2c; */
  transform: translateY(-2px);
  text-decoration: underline;
  text-decoration-color: var(--footer-color-2);
  text-underline-offset: 2px;
}

.footer-item:hover .footer-text {
  color: var(--footer-color-2);
}

.footer-social span {
  margin-left: 8px;
}

.footer-social img {
  width: 20px;
  filter: brightness(0) invert(1);
}

/* BOTTOM BAR */
.footer-bottom {
  background: var(--footer-color-3);
  text-align: center;
  padding: 18px 10px;
  margin-top: 40px;
  font-size: 15px;
  color: white;
}

/* SCROLL TO TOP */
.footer-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--footer-color-4);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 10;
}

.footer-top-btn:hover {
  filter: brightness(1.3);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-col {
    flex: unset;
  }

  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .footer-title {
    font-size: 20px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-top-btn {
    bottom: 15px;
    right: 15px;
  }
}

.footer-top-btn {
  display: none;
}

.footer-twitter-logo {
  padding: 2px !important;
}

.footer-facebook-logo {
  padding: 2px !important;
}

.footer-youtube-logo {
  padding: 1px !important;
}

.footer-instagram-logo {
  padding: 2px !important;
}

/* CSS reset just for this component if necessary */
.section15-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.section15-wrapper {
  width: 100%;
  /* Linear gradient ensures text on left is fully readable over background image */
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.95) 30%,
      rgba(255, 255, 255, 0.7) 45%,
      rgba(255, 255, 255, 0) 65%
    ),
    url("./images/section15/ai-bg.jpeg") no-repeat right 15% center;
  background-size: cover;
  /* min-height: 80vh;  */
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section15-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.section15-content {
  max-width: 550px;
  /* Fade-in and slide up animation for visual interactivity on load */
  opacity: 0;
  transform: translateY(20px);
  animation: section15-fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.section15-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1b8291;
  /* exact teal */
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.section15-title span {
  color: #f17b35;
  /* exact orange match */
  display: inline-block;
}

.section15-description {
  font-size: 1.25rem;
  color: #1b8291;
  /* same exact color but smaller & normal font weight */
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 45px;
  max-width: 450px;
}

.section15-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f68a27 0%, #f05c28 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.section15-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #faa246 0%, #f66d3a 100%);
}

.section15-btn:active {
  transform: translateY(0);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

@keyframes section15-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Layout Breakpoints */
@media screen and (max-width: 1024px) {
  .section15-wrapper {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 55%,
        rgba(255, 255, 255, 0.3) 100%
      ),
      url("./images/section15/ai-bg.jpeg") no-repeat right 30% center;
    background-size: cover;
    min-height: 60vh;
  }

  .section15-title {
    font-size: 3rem;
  }

  .section15-description {
    font-size: 1.15rem;
  }

  .section15-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .section15-wrapper {
    /* Show image clearly on top, fading into white content area at bottom */
    /* background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 65%, rgba(255,255,255,0) 100%), url('./images/section15/ai-bg.jpeg') no-repeat top center; */
    background:
      linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.5) 65%,
        rgba(255, 255, 255, 0) 100%
      ),
      url("./images/section15/ai-bg.jpeg") no-repeat top center;
    background-position: 81% 0%;
    background-size: cover;
    /* min-height: 100vh; */
    align-items: flex-end;
    padding: 0 0 20px 0;
  }

  .section15-container {
    padding: 0 25px;
  }

  .section15-content {
    max-width: 100%;
    text-align: center;
    padding-top: 300px;
  }

  .section15-title {
    margin-bottom: 20px;
  }

  .section15-description {
    margin: 0 auto 35px auto;
    max-width: 90%;
  }

  .section15-desktop-br {
    display: none;
    /* Let text flow naturally on smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .section15-title {
    font-size: 2.3rem;
  }

  .section15-description {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .section15-btn {
    padding: 12px 24px;
    width: 100%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }
}

.divider {
  width: 100%;
  height: 3px;
  background-color: #b6b6b6;
  position: relative;
  z-index: 1;
}
 
.onlymobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .onlymobile {
    display: block;
  }
}
