* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.top-bar {
  background: #ffffff;
  padding: 8px 30px;
  font-size: 13px;
  text-align: right;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo span {
  font-weight: 800;
  font-size: 22px;
  color: #001776;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: #001776;
}

.hero {
  position: relative;
  background: url("../images/fire-background.webp") center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  padding-left: 50px;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  max-width: 1100px;
}

.hero h1 {
  font-size: 80px;
  font-weight: 1000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 30px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 30px;
  margin-bottom: 30px;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e60000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.learn-more-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

.chatbox {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 420px;
  height: 600px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.chatbox.active {
  opacity: 1;
  transform: translateY(0);
}

.chat-body {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input {
  width: 100%;
  padding: 10px;
  border: none;
  border-top: 1px solid #ccc;
}

.bot-msg {
  background: #f0f0f0;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  animation: slideIn 0.3s ease;
}

.user-msg {
  background: #001776;
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: right;
  margin-left: auto;
  display: inline-block;
  animation: slideInRight 0.3s ease;
}

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

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

.typing-indicator {
  padding: 8px 12px;
  background: #f0f0f0;
  border-radius: 12px;
  margin-bottom: 10px;
  display: none;
}

.typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  margin: 0 2px;
  animation: bounce 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.9s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: -0.8s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

button {
  margin: 2px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: #001776;
  color: white;
  border-color: #001776;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

.chat-message {
  background: #4a90e2;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  animation: float 3s ease-in-out infinite;
}

.chat-message:hover {
  background: #3578d3;
  transform: translateY(-2px);
}

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

.chat-message img {
  width: 30px;
  height: 30px;
}

/*  Fire Safety Coverage Section (part 2 done)  */

.fire-safety-section {
  /* top right bottom left */
  padding: 10px 10px 30px 20px;
  background: #fff;
  text-align: center;
}

.purple-bar {
  background: #001776;
  padding: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.fire-safety-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}

.fire-safety-left {
  /* flex: 1 1 600px; */
  padding-left: 10px;
}

.fire-image {
  /* only touch max height and height */
  width: 100%;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 28px;
  padding-top: 10px;
}

.fire-safety-right {
  flex: 1 1 500px;
  text-align: left;
}

.fire-desc {
  font-size: 17px;
  margin-bottom: 15px;
}

.fire-desc a {
  color: #001776;
  text-decoration: underline;
}

.fire-box-header {
  position: relative;
  top: 9px;
  left: 35px;
  /* set block ensure the background and text align */
  display: inline-block;
  width: fit-content;
  padding: 15px 10px;

  font-size: 26px;
  font-weight: 700;
  background: #001776;
  /* for center */
  display: block;
  color: #fff;
  border-radius: 20px;
  z-index: 5;
}

.objectives-box {
  background: #e9f1f7;
  padding: 20px;
  /* border-radius: 15px; */
}

.objectives-box ul {
  list-style: none;
  padding-left: 0;
}

.objectives-box li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.objectives-box li:nth-child(odd):before {
  content: "➤";
  position: absolute;
  left: 0;
  color: orange;
}

.objectives-box li:nth-child(even):before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #fdd52f;
}

/* end of Fire Safety Coverage Section (part 2 done)  */

/* Fire Safety Coverage Section (part 3 done) */
#mobile-fire-safety-coverage-v2 {
  display: none;
}

#fire-safety-coverage-v2 {
  /* background: #e6ecf5; */
background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
padding-bottom: 10px;
}

.perform-title {
  font-size: 28px;
  font-weight: 700;
}

.perform-h3 {
  font-size: 18px;
  text-decoration: underline;
}

.perform-training-container-v2 {
  display: grid; /*flex change to grid*/
  /* justify-content: center; */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 80px;
  text-align: center;
}

/* .perform-training-container-v2-white {
  position: relative;
  z-index: 999;
  background: white;
  padding: 5px;
} */

.perform-side {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.perform-item-v2-1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin: 0;
  flex-direction: row-reverse;
}

.perform-item-v2-2 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 13px;
  text-align: left;
}

.number-circle-v2 {
  width: 60px; /* You can adjust for larger/smaller circles */
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border: 5px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px; /* Adjust font size as needed */
  color: #000;
  background: #e6ecf5;
  box-sizing: border-box;
  margin-right: 16px; /* Space between circle and text */
  margin-bottom: 0;
}

.text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.text-group a {
  font-weight: 700;
  font-size: 16px;
  color: #001776;
  text-decoration: underline;
}

.text-group p {
  margin: 5px 0 0 0;
  font-size: 14px;
}

.text-group-v2-1 {
  font-size: 14px;
  margin-top: 5px;
  text-align: left;
}
.text-group-v2-2 {
  font-size: 14px;
  margin-top: 5px;
  text-align: left;
}

/* ensure both of them start at same line */
.text-group,
.text-group-v2-1 {
  width: 255px;
}

.center-firefighter-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.firefighter-image-v2 {
  position: relative;
  width: 260px;
  height: auto;
  top: 5px;
}

.highlight-text {
  color: #1a73e8;
  text-decoration: underline;
}

/* for half circle */
.center-firefighter-v2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 250px;
  background: #fff;
  border-radius: 215px 215px 0 0;
  z-index: -1;
}

/* .center-firefighter-v2::before {
  content: "";
  position: absolute;
  bottom: -20px; adjust based on layout
  left: 50%;
  transform: translateX(-50%);
  width: 275px;
  height: 275px; same as width
  background: #fff;
  border-radius: 50%; makes it a perfect circle
  z-index: -1;
} */

/* FAQ */
.faq-section {
  position: relative;
  background-image: url("/images/faq-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 30px;
  color: #000;
  z-index: 4;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.faq-icon {
  width: 100px;
}

button.faq-questions {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px;
  color: #fff;
  background: #001776;
  padding: 20px;
  text-align: left;
  border-radius: 50px;
}

button.faq-questions:hover {
  background: #000b39;
}

.faq-questions {
  position: relative;
  padding-right: 60px; /* create space for icon */
}

.faq-questions i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fff; /* white circle */
  color: #001776; /* arrow color */
  border-radius: 500%; /* makes it circle */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
}

.faq-questions i {
  transition: transform 0.5s ease-in-out;
}

.faq-questions.active i {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  background: #f1f1f1;
  /* border-radius: 12px; */
  padding: 20px;
  font-size: 15px;
  text-align: left;
  display: none;
  overflow: hidden;
  border-radius: 50px;
}

.highlight-text-v2 {
  color: #1882fe;
  font-weight: 600;
}

/* test 1 */
:root {
  --main-blue: #001776;
  --highlight-blue: #4a90e2;
}

#hero-slider {
  position: relative;
  width: 100%;
  height: 780px;
  background: #222;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8%;
  opacity: 0;
  transition: 0.8s ease-in-out;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.blue-text {
  color: var/(--highlight-blue);
  text-transform: uppercase;
}

/* Slide 2 & 3 Grids */

#s2-image-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 40px;
}

/* Navigation */
.ctrl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 1);
  color: rgb(0, 0, 0);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
#prev-btn {
  left: 20px;
}
#next-btn {
  right: 20px;
}
#slide-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 1);
  cursor: pointer;
}
.dot.active {
  background: var(--main-blue);
}

#s2-highlight-text,
#s3-highlight,
.blue-text {
  /* Exact blue color hex from your image */
  color: #3b82f6;

  /* Bold font weight to match the heavy typography */
  font-weight: 800;

  /* This shadow creates the 'outline' and 'depth' effect seen in the screenshot */
  text-shadow:
    2px 2px 0px rgba(0, 0, 0, 0.2),
    0px 0px 15px rgba(59, 130, 246, 0.5);

  text-transform: uppercase;
  letter-spacing: 1px;
}

#s2-main-title,
#s3-title,
#s4-title {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;

  /* Soft shadow to ensure readability on any background image */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);

  line-height: 1.1;
  margin: 0;
}

#s4-text {
  color: rgba(255, 255, 255, 0.95); /* Off-white for better reading comfort */
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;

  /* Sharper shadow for smaller text */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Container for the 3D perspective */
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 320px;
  perspective: 1000px; /* Essential for 3D effect */
  margin: 10px;
}

/* The wrapper that actually rotates */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

/* This class is toggled by JavaScript */
.flip-card-inner.is-flipped {
  transform: rotateY(180deg);
}

/* Positioning front and back */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hides the reverse side */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  /* version 1 gold border */
  border: 2px solid #d4af37;
  /* version 3 purple border */
  /* border: 2px solid #8b5cf6; */
  /* version 4 blue border */
  /* border: 2px solid #3b82f6; */
}

/* Front Styling (Dark Theme) */
.flip-card-front {
  background: linear-gradient(145deg, #1a1a1a, #333333);
  color: white;
}

.profile-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* gold ring version 1 */
  border: 4px solid rgb(218, 185, 0); 
  box-shadow: 4px 4px 10px rgba(246, 171, 59, 0.5);
  /* purple ring version 3 */
  /* border: 4px solid #8b5cf6;
  box-shadow: 4px 4px 10px rgba(139, 92, 246, 0.5); */
/* blue ring version 4 */
/* border: 4px solid #3b82f6;
box-shadow: 0 0 12px rgba(59, 130, 246, 0.5); */
  /* box-shadow: 3px 3px 10px rgba(59, 130, 246, 0.5); Subtle blue glow */
  overflow: hidden;
  margin-bottom: 15px;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back Styling (Lighter/Clean Theme) */
.flip-card-back {
  background-color: #f9f9f9;
  color: #333;
  transform: rotateY(180deg);
}

/* Button Styling */
.flip-btn {
  background: #ff0000;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  margin-top: 10px;
}

.details-list {
  text-align: left;
  font-size: 11px;
  padding: 0;
  list-style: none;
}

.details-list li {
  margin-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

.bio-text li {
  position: relative;
  padding-left: 20px;
}

.bio-text li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

#trainer-section {
  position: relative;
  padding: 20px;
  text-align: center;
  z-index: 3;
  /* background: linear-gradient(100deg, #0B1F4D 0%, #001776 40%); */
  /* background: linear-gradient(180deg, #7A8FC2 0%, #5C73A6 100%); */
  /* background: linear-gradient(180deg, #7188bd 0%, #53699d 100%); */
  /* version 1 */
  /* background: #8d98c7;
  background: -webkit-linear-gradient(
    0deg,
    rgba(141, 152, 199, 1) 0%,
    rgba(114, 138, 194, 1) 50%,
    rgba(96, 118, 171, 1) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(141, 152, 199, 1) 0%,
    rgba(114, 138, 194, 1) 50%,
    rgba(96, 118, 171, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(141, 152, 199, 1) 0%,
    rgba(114, 138, 194, 1) 50%,
    rgba(96, 118, 171, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8D98C7", endColorstr="#6076AB", GradientType=0); */

  /* version 2 */
  background: #001776;
background: -webkit-linear-gradient(0deg, rgba(0, 23, 118, 0.82) 0%, rgba(0, 23, 118, 0.88) 50%, rgba(0, 23, 118, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(0, 23, 118, 0.82) 0%, rgba(0, 23, 118, 0.88) 50%, rgba(0, 23, 118, 1) 100%);
background: linear-gradient(0deg, rgba(0, 23, 118, 0.82) 0%, rgba(0, 23, 118, 0.88) 50%, rgba(0, 23, 118, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001776", endColorstr="#001776", GradientType=0);
}

.highlight-text-2 {
  /* version 1 */
  color: #d4af37;
    /* color: rgb(218, 185, 0);  */
  /* version 2 */
  /* color: #10b981; */
  /* version 3 */
  /* color: #8b5cf6; */
  /* version 4 */
  /* color: #60a5fa; */
  font-weight: 700;
  /* version 1 */
  /* text-shadow:
    1px 1px 0px rgba(0, 0, 0, 0.25),
    0px 0px 10px rgba(212, 175, 55, 0.35); */
  /* version 2 */
  /* text-shadow:
  1px 1px 0px rgba(0, 0, 0, 0.25),
  0px 0px 8px rgba(16, 185, 129, 0.35); */
    /* version 3 */
    text-shadow:
  1px 1px 0px rgba(0, 0, 0, 0.25),
  0px 0px 10px rgba(139, 92, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#trainer-grid {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the 5 cards in the second row */
  gap: 10px;
  max-width: 2200px;
  margin: 0 auto;
  background: rgba(0, 23, 118, 0.08);
}

/* Specific styling for the back-side text to match your image */
.bio-text {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #333;
  padding: 10px;
  text-align: justify;
  /* border-left: 3px solid #001776;   */
  list-style-type: none;
}

li {
  margin-bottom: 5px;
}

#trainer-title-h {
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

/*text for trainner section*/
#trainer-p {
  font-weight: 600;
  color: #f3f6fb;
}
/* container for images loops */

.carousel {
  width: 100%;
  overflow: hidden;
background: #e0e0e0;
background: -webkit-linear-gradient(0deg, rgba(224, 224, 224, 1) 0%, rgba(235, 237, 244, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(224, 224, 224, 1) 0%, rgba(235, 237, 244, 1) 100%);
background: linear-gradient(0deg, rgba(224, 224, 224, 1) 0%, rgba(235, 237, 244, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E0E0E0", endColorstr="#EBEDF4", GradientType=0);

  padding-top: 20px;
  padding-bottom: 20px;
}

/* all images or video horizontal */
.images-and-video {
  display: flex;
  width: max-content;
  /* no auto align */
  flex-wrap: nowrap;
  /* animation: spin, animation duration:200s, constant speed:linear, repeat forever: infinite */
  animation: spin 130s linear infinite;
}

.images-and-video img,
.images-and-video video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  padding-left: 13px;
}

@keyframes spin {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-85%);
  }
}

#bio-text-id-1,
#bio-text-id-2,
#bio-text-id-3,
#bio-text-id-4,
#bio-text-id-5,
#bio-text-id-6,
#bio-text-id-7,
#bio-text-id-8,
#bio-text-id-9,
#bio-text-id-10,
#bio-text-id-11 {
  height: 260px;
  /* list-style-type: none; */
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.carousel-header h3 {
  color: #001776;
}

/* part 6 */
.clients-section {
  position: relative;
  /* min-height: 100vh; */
  padding: 10px;
  background: url("../images/bg_client.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* soft white overlay  */
.clients-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.clients-wrapper {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* top badge */
.clients-badge {
  background: linear-gradient(180deg, #0d2f80, #4d82ff);
  color: white;
  font-weight: 700;
  font-size: 2rem;
  padding: 10px 20px;
  margin-top: 30px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  /* clip-path: polygon(
50% 0%, 
50% 0%, 
100% 30%, 
100% 75%, 
50% 100%, 
0% 75%, 
0% 30%
); */
  letter-spacing: 1px;
}

/* logo grid */
.clients-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-bottom: 20px;
}

/* each logo box */
.client-card {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

/* keep all logos visually balanced */
.client-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

/* mbdk reasign */
.client-card-2 {
  max-width: 60%;
}

/* tnb */
.client-card-5 {
  max-width: 50%;
}

/* xiao en reasign */
.client-card-6 {
  max-width: 62%;
}

/* slide 1 */
#slide-1 {
  background-image: url("../images/bg_slide1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#s1-content {
  position: relative;
  z-index: 2;
}

/* soft white overlay  */
.slide1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 59, 59, 0.5);
  z-index: 1;
}

/* title */
#s1-title {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;

  /* Soft shadow to ensure readability on any background image */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);

  line-height: 1.1;
  margin: 0;
}

#s1-des-bold {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 2;
}

#s1-des-des {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

#s1-description {
  margin-bottom: 20px;
  width: 40%;
}

#s1-des-div-two {
  width: 50%;
}

/* button */
#s1-learn-btn .text {
  color: #ff1a0a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

#s1-learn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 14px 60px 14px 22px;
  border-radius: 40px;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.15s ease;
  top: 20px;
}

#s1-learn-btn-a{
    text-decoration: none;
}

#s1-learn-btn .circle {
  position: absolute;
  right: -10px;
  width: 52px;
  height: 52px;
  background: #ff1a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

/* PRESS animation */
#s1-learn-btn:active {
  transform: scale(0.94);
}

#s1-learn-btn:active .circle {
  transform: scale(0.9);
}

/* slide 2 */
.mobile-cert-only {
  display: none;
}

.slide2-img-dek {
  display: block;
}

#slide-2 {
  background-image: url("../images/bg_slide2.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  display: grid;
  /* grid-template-columns: 1.2fr 0.9fr; */
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 30px 50px;
}

#s2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* soft white overlay  */
.slide2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 59, 59, 0.6);
  z-index: 1;
}

#s2-title {
  position: relative;
  font-size: 80px;
  width: 95%;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  text-align: center;

  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

#s2-blue-text {
  color: #2f80ed;

  text-shadow:
    0 0 2px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ffffff;
}

#s2-logo-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(4, 120px);
  column-gap: 80px;
  row-gap: 30px;
  margin-top: 10px;
  /* justify-content: center; */
}

.cert-circle {
  width: 140px;
  height: auto;
  /* border-radius: 50%; */
  /* border: 3px solid #d4af37; */
  background: transparent;
  object-fit: contain;
  /* padding: 5px; */
  justify-self: center; /* center horizontally inside grid cell */
  align-self: center; /* center vertically inside grid cell */
}

#s2-right-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  top: 20px; /*move whole right side upward*/
  right: -20px;
}

#s2-image-right {
  display: grid;
  grid-template-rows: repeat(2, 320px);
  /* gap: 12px; */
}

#s2-img-1,
#s2-img-2 {
  width: 730px;
  height: 350px;
  object-fit: cover;
}

/* version 1 */
#s2-img-1 {
  border-radius: 40px 40px 0 0;
}

#s2-img-2 {
  border-radius: 0 0 40px 40px;
}

/* version 2 */
/* #s2-img-1,
#s2-img-2 {
  border-radius: 40px;
} */

/* slide 3 */
.slide3-img-dek {
  display: block;
}

#slide-3 {
  /* manually ammend so set relative */
  /* position: relative; */
  background-image: url("../images/bg_slide3.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  display: grid;
  /* grid-template-columns: 1.2fr 0.9fr; */
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 30px 50px;
}

.slide3-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 59, 59, 0.6);
  z-index: 1;
}

/* title */
#s3-title {
  position: relative;
  font-size: 90px;
  width: 70%;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  top: -70px;

  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

#s3-blue-text {
  color: #2f80ed;

  text-shadow:
    0 0 2px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ffffff;
}

#s3-content,
#s3-image-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#s3-image-left {
  left: -70px;
  top: -20px;
}

.s3-img {
  width: 700px;
  height: 250px;
  object-fit: cover;
  /* border-radius: 12px; */
  /* border: 2px solid white; */
}

#s3-img-1{
  border-radius: 40px 40px 0 0;
}

#s3-img-3 {
  border-radius: 0 0 40px 40px;
}

.arrow-icon {
  color: white;
  margin-right: 10px;
  background: #1a3a9c;
  border-radius: 3px;
  padding: 2px 6px;
}

/* button */
#s3-learn-btn .text {
  color: #ff1a0a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

#s3-learn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 14px 60px 14px 22px;
  border-radius: 40px;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.15s ease;
  /* adjust at here */
  /* top right bottom left */
  top: -60px;
  left: 160px;
}

#s3-learn-btn .circle {
  position: absolute;
  right: -10px;
  width: 52px;
  height: 52px;
  background: #ff1a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

/* PRESS animation */
#s1-learn-btn:active {
  transform: scale(0.94);
}

#s1-learn-btn:active .circle {
  transform: scale(0.9);
}

/* Slide 3 List */
#s3-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 15px;
  top: -40px;
}

#s3-list > a {
  text-decoration: none;
}

.s3-item {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  /* left = 0% opacity, right = 90% opacity */
  background: linear-gradient(
    to left,
    rgba(0, 23, 118, 0) 0%,
    rgba(0, 23, 118, 0.9) 100%
  );
  /* background: rgba(0, 23, 118, 0.72); */
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-left: 4px solid #2f80ed;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

.s3-item:hover {
  background-color: #0026bd; /* Slightly lighter on hover */
}

/* slide 4 */
.slide4-img-dek {
  display: block;
}

#slide-4 {
  /* manually ammend so set relative */
  /* position: relative; */
  background-image: url("../images/bg_slide4.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  display: grid;
  /* grid-template-columns: 1.2fr 0.9fr; */
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 30px 50px;
}

.slide4-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 59, 59, 0.6);
  z-index: 1;
}

#s4-image-left,
#s4-content-right {
  position: relative;
  z-index: 2;
}

.s4-thumb {
  width: 85%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid white;
}

#s4-title {
  position: relative;
  font-size: 80px;
  width: 80%;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  top: -50px;

  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

#s4-blue-text {
  color: #2f80ed;

  text-shadow:
    0 0 4px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ffffff;
}

#s4-text {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (min-width: 1801px) {
  #hero-slider {
    height: auto;
    min-height: 880px;
  }

  /* slide 1 */
  #s1-title {
    position: relative;
    top: -25px;
    font-size: 110px;
  }

  #s1-des-bold {
    position: relative;
    top: -20px;
    font-size: 25px;
  }

  #s1-des-div-two {
    width: 50%;
  }

  #s1-des-des {
    position: relative;
    top: -10px;
    font-size: 22px;
  }

  /* slide 2 */
  #s2-title {
    position: relative;
    font-size: 90px;
    top: -25px;
    left: 50px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 200px);
    column-gap: 5px;
    row-gap: 5px;
    top: -30px;
    left: 40px;
  }

  .cert-circle {
    width: 197px;
  }

  #s2-right-side {
    top: -20px;
    right: -50px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 420px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 960px;
    height: 430px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 100px;
    width: 90%;
    top: -40px;
    left: -70px;
  }

  .s3-img {
    width: 800px;
    height: 275px;
  }

  #s3-image-left {
    left: -45px;
    top: -5px;
  }

  #s3-list {
    width: 100%;
    top: -20px;
    left: -70px;
  }

  .s3-item {
    font-size: 21px;
    min-height: 70px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 100px;
    width: 100%;
    top: -80px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 23px;
    top: 10px;
    left: -20px;
    width: 100%;
    text-align: justify;
  }

  .s4-thumb {
    position: relative;
    width: 800px;
    height: 265px;
    top: 5px;
    left: -20px;
  }

  .purple-bar {
    font-size: 35px !important;
  }

  .fire-box-header {
    font-size: 27px;
  }

  .perform-title {
    font-size: 35px;
  }

  #trainer-title-h {
    font-size: 35px;
  }
}

@media (min-width: 1701px) and (max-width: 1800px) {
  /* slide 1 */
  #s1-title {
    position: relative;
    top: -30px;
    font-size: 100px;
  }

  #s1-des-bold {
    position: relative;
    top: -20px;
    font-size: 24px;
  }

  #s1-des-div-two {
    width: 50%;
  }

  #s1-des-des {
    position: relative;
    top: -15px;
    font-size: 22px;
  }

  /* slide 2 */
  #s2-title {
    position: relative;
    font-size: 85px;
    top: -20px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 170px);
    column-gap: 10px;
    row-gap: 5px;
    top: -35px;
    left: 30px;
  }

  .cert-circle {
    width: 165px;
  }

  #s2-right-side {
    top: -20px;
    right: -60px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 370px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 905px;
    height: 380px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 90px;
    width: 90%;
    top: -40px;
    left: -70px;
  }

  .s3-img {
    width: 740px;
    height: 250px;
  }

  #s3-image-left {
    left: -45px;
    top: -15px;
  }

  #s3-list {
    width: 100%;
    top: -20px;
    left: -70px;
  }

  .s3-item {
    font-size: 20px;
    min-height: 65px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 90px;
    width: 100%;
    top: -70px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 21px;
    top: -30px;
    left: -20px;
    width: 100%;
    text-align: justify;
  }

  .s4-thumb {
    position: relative;
    width: 720px;
    height: 255px;
    top: -25px;
    left: -30px;
  }

  .purple-bar {
    font-size: 35px !important;
  }

  .fire-box-header {
    font-size: 27px;
  }

  .perform-title {
    font-size: 35px;
  }

  #trainer-title-h {
    font-size: 35px;
  }
}

@media (min-width: 1600px) and (max-width: 1700px) {
  /* slide 1 */
  #s1-title {
    position: relative;
    top: -30px;
    font-size: 100px;
  }

  #s1-des-bold {
    position: relative;
    top: -20px;
    font-size: 24px;
  }

  #s1-des-div-two {
    width: 50%;
  }

  #s1-des-des {
    position: relative;
    top: -15px;
    font-size: 22px;
  }

  /* slide 2 */
  #s2-title {
    position: relative;
    font-size: 85px;
    top: -20px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 170px);
    column-gap: 10px;
    row-gap: 5px;
    top: -35px;
    left: 30px;
  }

  .cert-circle {
    width: 170px;
  }

  #s2-right-side {
    top: -10px;
    right: -60px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 360px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 805px;
    height: 370px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 90px;
    width: 90%;
    top: -40px;
    left: -30px;
  }

  .s3-img {
    width: 750px;
    height: 250px;
  }

  #s3-image-left {
    left: -45px;
    top: -23px;
  }

  #s3-list {
    width: 100%;
    top: -20px;
    left: -25px;
  }

  .s3-item {
    font-size: 20px;
    min-height: 65px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 90px;
    width: 100%;
    top: -70px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 21px;
    top: -30px;
    left: -20px;
    width: 100%;
    text-align: justify;
  }

  .s4-thumb {
    position: relative;
    width: 720px;
    height: 250px;
    top: -20px;
    left: -35px;
  }

  .purple-bar {
    font-size: 35px !important;
  }

  .fire-box-header {
    font-size: 27px;
  }

  .perform-title {
    font-size: 35px;
  }

  #trainer-title-h {
    font-size: 35px;
  }
}

@media screen and (min-width: 1125px) and (max-width: 1224px) {
  #hero-slider {
    height: auto;
    min-height: 540px;
  }

  /* part 1  */
  /* slide 1 */
  #s1-title {
    font-size: 65px;
    width: 100%;
    margin-bottom: 5px;
  }

  #s1-description {
    width: 70%;
  }

  #s1-des-bold {
    font-size: 19px;
  }

  #s1-des-des {
    font-size: 18px;
  }

  /* part 2 */
  #s2-title {
    position: relative;
    font-size: 55px;
    width: 90%;
    top: -30px;
    left: 15px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 130px);
    column-gap: 10px;
    row-gap: 5px;
    top: -45px;
    left: -5px;
  }

  .cert-circle {
    width: 120px;
  }

  #s2-right-side {
    top: -15px;
    right: 10px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 240px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 585px;
    height: 260px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 65px;
    width: 90%;
    top: -50px;
    left: -110px;
  }

  .s3-img {
    width: 580px;
    height: 175px;
  }

  #s3-image-left {
    left: -110px;
    top: -23px;
  }

  #s3-list {
    width: 100%;
    top: -20px;
    left: -105px;
  }

  .s3-item {
    font-size: 20px;
    min-height: 35px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 65px;
    width: 100%;
    top: -60px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 18px;
    top: -30px;
    left: -20px;
    width: 100%;
    text-align: justify;
  }

  .s4-thumb {
    position: relative;
    width: 500px;
    height: 170px;
    top: -20px;
    left: -20px;
  }

  /* part 2 */
  .fire-desc {
    font-size: 16px;
    text-align: justify;
  }

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
    background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-perform-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 23px;
    font-weight: 800;
    text-align: center;
    /* text-decoration: underline; */
  }

  .mobile-perform-p {
    font-size: 16px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .mobile-number-circle-v2 {
    width: 40px; /* adjust for larger/smaller circles */
    height: 0px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  .firefighter-image-v2 {
    width: auto;
    height: 210px;
  }

  #trainer-p {
    font-size: 19px;
  }

  #carousel-p {
    font-size: 19px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1124px) {
  #hero-slider {
    height: auto;
    min-height: 530px;
  }

  /* part 1  */
  /* slide 1 */
  #s1-title {
    font-size: 60px;
    width: 100%;
    margin-bottom: 10px;
  }

  #s1-description {
    width: 70%;
  }

  #s1-des-bold {
    font-size: 19px;
  }

  #s1-des-div-two {
    width: 60%;
  }

  #s1-des-des {
    font-size: 18px;
  }

  /* part 2 */
  #s2-title {
    position: relative;
    font-size: 55px;
    width: 90%;
    top: -35px;
    left: 5px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 110px);
    column-gap: 10px;
    row-gap: 20px;
    top: -50px;
    left: -10px;
  }

  .cert-circle {
    width: 110px;
  }

  #s2-right-side {
    top: -25px;
    right: 15px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 250px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 600px;
    height: 260px;
  }

  #s2-footer-logos {
    row-gap: 30px;
    column-gap: 10px;
    grid-template-columns: repeat(4, 100px);
  }

  .s2-footer-circle-fix {
    width: 90px;
    max-width: 100px;
  }

  #s2-right-side-badges {
    top: 30px;
    left: 40px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 60px;
    width: 90%;
    top: -40px;
  }

  .s3-img {
    width: 510px;
    height: 170px;
  }

  #s3-image-left {
    left: -40px;
    top: -20px;
  }

  #s3-list {
    width: 100%;
    top: -20px;
  }

  .s3-item {
    font-size: 17px;
    min-height: 45px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 60px;
    width: 100%;
    top: -60px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 18px;
    text-align: justify;
    top: -30px;
    left: -20px;
    width: 100%;
  }

  .s4-thumb {
    position: relative;
    width: 470px;
    height: 165px;
    top: -18px;
    left: -40px;
  }

  /* part 2 */
  .fire-desc {
    text-align: justify;
    font-size: 16px;
  }

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
  }

  .mobile-perform-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    /* text-decoration: underline; */
  }

  .mobile-perform-p {
    font-size: 16px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .mobile-number-circle-v2 {
    width: 50px; /* adjust for larger/smaller circles */
    height: 50px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 255px;
    height: 155px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  .firefighter-image-v2 {
    width: auto;
    height: 210px;
  }

  #trainer-p {
    font-size: 19px;
  }

  #career-p {
    font-size: 19px;
  }
}

@media screen and (min-width: 921px) and (max-width: 1024px) {
  #hero-slider {
    height: auto;
    min-height: 520px;
  }
  /* part 1  */
  /* slide 1 */
  #s1-title {
    font-size: 55px;
    width: 100%;
    margin-bottom: 5px;
  }

  #s1-description {
    width: 70%;
  }

  #s1-des-bold {
    font-size: 19px;
  }

  #s1-des-div-two {
    width: 60%;
  }

  #s1-des-des {
    font-size: 18px;
  }

  /* part 2 */
  #s2-title {
    position: relative;
    font-size: 50px;
    width: 90%;
    top: -30px;
    left: -5px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 110px);
    column-gap: 10px;
    row-gap: 20px;
    top: -45px;
    left: -10px;
  }

  .cert-circle {
    width: 110px;
  }

  #s2-right-side {
    top: -20px;
    right: 20px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 240px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 520px;
    height: 250px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 55px;
    width: 90%;
    top: -60px;
    left: -100px;
  }

  .s3-img {
    width: 550px;
    height: 170px;
  }

  #s3-image-left {
    left: -120px;
    top: -23px;
  }

  #s3-list {
    width: 100%;
    top: -30px;
    left: -100px;
  }

  .s3-item {
    font-size: 17px;
    min-height: 35px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 55px;
    width: 100%;
    top: -60px;
    left: -30px;
  }

  #s4-text {
    position: relative;
    font-size: 18px;
    text-align: justify;
    top: -30px;
    left: -30px;
    width: 100%;
  }

  .s4-thumb {
    position: relative;
    width: 410px;
    height: 165px;
    top: -22px;
    left: -35px;
  }

  /* part 2 */
  .fire-desc {
    text-align: justify;
    font-size: 16px;
  }

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
  }

  .mobile-perform-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    /* text-decoration: underline; */
  }

  .mobile-perform-p {
    font-size: 16px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .mobile-number-circle-v2 {
    width: 50px; /* adjust for larger/smaller circles */
    height: 50px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  .firefighter-image-v2 {
    width: auto;
    height: 200px;
  }

  #trainer-p {
    font-size: 19px;
  }

  #carousel-p {
    font-size: 19px;
  }
}

@media screen and (min-width: 820px) and (max-width: 920px) {
  #hero-slider {
    height: auto;
    min-height: 510px;
  }
  /* part 1  */
  /* slide 1 */
  #s1-title {
    font-size: 50px;
    width: 100%;
    margin-bottom: 5px;
  }

  #s1-des-bold {
    font-size: 18px;
  }

  #s1-des-div-two {
    width: 70%;
  }

  #s1-des-des {
    font-size: 17px;
  }

  /* part 2 */
  #s2-title {
    position: relative;
    font-size: 50px;
    width: 90%;
    top: -25px;
    left: -10px;
  }

  #s2-logo-grid {
    position: relative;
    grid-template-columns: repeat(4, 100px);
    column-gap: 10px;
    row-gap: 20px;
    top: -35px;
    left: -20px;
  }

  .cert-circle {
    width: 100px;
  }

  #s2-right-side {
    top: -5px;
    right: 30px;
  }

  #s2-image-right {
    grid-template-rows: repeat(2, 215px);
  }

  #s2-img-1,
  #s2-img-2 {
    width: 420px;
    height: 225px;
  }

  /* slide 3 */
  #s3-title {
    font-size: 50px;
    width: 70%;
    top: -55px;
    left: -90px;
  }

  .s3-img {
    width: 450px;
    height: 165px;
  }

  #s3-image-left {
    top: -23px;
    left: -100px;
  }

  #s3-list {
    width: 100%;
    top: -25px;
    left: -90px;
  }

  .s3-item {
    font-size: 17px;
    min-height: 35px;
  }

  /* slide 4 */
  #s4-title {
    font-size: 45px;
    width: 100%;
    top: -40px;
    left: -20px;
  }

  #s4-text {
    position: relative;
    font-size: 16px;
    text-align: justify;
    top: -20px;
    left: -20px;
    width: 90%;
  }

  .s4-thumb {
    position: relative;
    width: 350px;
    height: 160px;
    top: -15px;
    left: -40px;
  }

  /* part 2 */
  .fire-desc {
    font-size: 16px;
  }

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
  }

  .mobile-perform-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    /* text-decoration: underline; */
  }

  .mobile-perform-p {
    font-size: 16px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .mobile-number-circle-v2 {
    width: 50px; /* adjust for larger/smaller circles */
    height: 50px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  .firefighter-image-v2 {
    width: auto;
    height: 200px;
  }

  /* part 4 */
  #trainer-p {
    font-size: 19px;
  }

  #carousel-p {
    font-size: 19px;
  }
}

@media screen and (max-width: 819px) {
  /* part 1 */
  #hero-slider {
    height: auto;
    min-height: 500px;
  }

  /* slide 1 */
  #s1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* title */
  #s1-title {
    font-size: 35px;
    width: 100%;
    margin-bottom: 10px;
  }

  /* description */
  #s1-description {
    width: 70%;
    margin-bottom: 10px;
    text-align: center;
  }

  /* bold text */
  #s1-des-bold {
    font-size: 17px;
    line-height: 1.3;
  }

  /* description blocks */
  #s1-des-div-one,
  #s1-des-div-two {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  /* button */
  #s1-learn-btn {
    margin-top: 20px;
  }

  /*slide 2 */

  #slide-2 {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center; /* horizontal center */
    align-content: center; /* vertical center */
    text-align: center;
  }
  #s2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #s2-title {
    font-size: 35px;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
  }

  #s2-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    column-gap: 20px;
    row-gap: 30px;
    justify-content: center;
    margin-top: 20px;
  }

  .cert-circle {
    width: 90px;
  }

  .slide2-img-dek,
  #s2-image-right,
  #s2-img-1,
  #s2-img-2 {
    display: none;
  }

  /* slide 3 */
  #slide-3 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    text-align: center;
  }

  #s3-content {
    order: 1;
    width: 100%;
    max-width: 340px; /* controls container width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  #s3-title {
    /* remove previous offsets */
    order: 2;
    position: static;
    width: 90%;
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  #s3-list {
    order: 3;
    width: 100%;
    max-width: 350px; /*control list width */
    display: flex;
    /* align-items: flex-start; */
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    z-index: 1;
  }

  .s3-item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* center text */
    font-size: 13px;
    /* padding:10px 14px;       restore padding */
    border-radius: 4px;
    width: 320px;
    background: linear-gradient(
      to left,
      rgba(0, 23, 118, 0) 0%,
      rgba(0, 23, 118, 0.9) 80%
    );
    margin: 0 auto;
  }

  #s3-image-left {
    display: none;
  }

  /* slide 4 */
  #slide-4 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    text-align: center;
  }

  #s4-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #s4-title {
    font-size: 35px;
  }

  #s4-text {
    font-size: 16px;
    text-align: justify;
    width: 80%;
  }

  .slide4-img-dek {
    display: none;
  }

  /* part 2 */
  .purple-bar {
    font-size: 26px !important;
    padding: 20px !important;
  }

  .fire-safety-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .fire-safety-left {
    width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fire-image {
    display: block;
    width: 90%;
    max-width: 420px;
    height: auto;
    max-height: none;
    margin: 0 auto;
    padding-top: 0;
  }

  .fire-safety-right {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fire-desc {
    font-size: 16px;
    width: 90%;
    margin: 0 auto 15px;
    text-align: justify;
  }

  .fire-box-header {
    position: static;
    display: block;
    width: fit-content;
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .objectives-box {
    width: 95%;
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
  }
  /* margin: 0 auto 12px;

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
  }

  .mobile-perform-title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    /* text-decoration: underline; */
  }

  .mobile-perform-p {
    font-size: 16px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .mobile-number-circle-v2 {
    width: 50px; /* adjust for larger/smaller circles */
    height: 50px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  .firefighter-image-v2 {
    width: auto;
    height: 200px;
  }

  /* part 5 */
  .images-and-video img {
    /* flex: 0 0 100vw; */
    width: 100%;
    /* height: 70px; */
    max-height: 200px;
    /* padding-left: 8px; */
  }

  /* part 6 */
  .clients-section {
    padding: 20px 16px;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .client-card {
    min-height: 140px;
  }

  .client-card img {
    width: 80%;
    max-height: 90px;
  }

  /* part 7 */
  button.faq-questions {
    font-size: 16px;
  }

  .faq-section {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 480px) {
  #hero-slider {
    height: auto;
    min-height: 530px;
  }

  /* slide 1 */
  #s1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* title */
  #s1-title {
    font-size: 28px;
    width: 100%;
    margin-bottom: 10px;
  }

  /* description */
  #s1-description {
    width: 70%;
    margin-bottom: 10px;
    text-align: center;
  }

  /* bold text */
  #s1-des-bold {
    font-size: 17px;
    line-height: 1.3;
  }

  /* description blocks */
  #s1-des-div-one,
  #s1-des-div-two {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  /* button */
  #s1-learn-btn {
    top: -5px;
    text-decoration: none;
  }

  /* part 2 */
  #slide-2 {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center; /* horizontal center */
    align-content: center; /* vertical center */
    text-align: center;
  }
  #s2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #s2-title {
    font-size: 30px;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
  }

  #s2-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    column-gap: 12px;
    row-gap: 20px;
    justify-content: center;
    margin-top: 10px;
  }

  .mobile-cert-only {
    display: block;
  }

  .slide2-img-dek,
  #s2-image-right,
  #s2-right-side-badges,
  #s2-footer-logos,
  #s2-img-1,
  #s2-img-2,
  .s2-footer-badge {
    display: none;
  }

  /* slide 3 */
  #slide-3 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    text-align: center;
  }

  #s3-content {
    order: 1;
    width: 100%;
    max-width: 340px; /* controls container width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  #s3-title {
    /* remove previous offsets */
    order: 2;
    position: static;
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 70px;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  #s3-list {
    order: 3;
    width: 90%;
    max-width: 300px; /*control list width */
    display: flex;
    /* align-items: flex-start; */
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    z-index: 1;
  }

  .s3-item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* center text */
    font-size: 14px;
    /* padding:10px 14px;       restore padding */
    border-radius: 4px;
    width: 280px;
    background: linear-gradient(
      to left,
      rgba(0, 23, 118, 0) 0%,
      rgba(0, 23, 118, 0.9) 80%
    );
    margin: 0 auto;
  }

  #s3-image-left {
    display: none;
  }

  /* slide 4 */
  #slide-4 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    text-align: center;
  }

  #s4-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #s4-title {
    position: relative;
    font-size: 30px;
    top: -20px;
  }

  #s4-text {
    font-size: 17px;
    width: 80%;
  }

  .slide4-img-dek {
    display: none;
  }

  /* part 2 */
  .purple-bar {
    font-size: 23px !important;
    padding: 15px !important;
  }

  .fire-safety-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .fire-safety-left {
    width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fire-image {
    display: block;
    width: 90%;
    max-width: 420px;
    height: auto;
    max-height: none;
    margin: 0 auto;
    padding-top: 0;
  }

  .fire-safety-right {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fire-desc {
    font-size: 16px;
    width: 90%;
    margin: 0 auto 15px;
    text-align: justify;
  }

  .fire-box-header {
    position: static;
    display: block;
    width: fit-content;
    font-size: 21px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .objectives-box {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  /* margin: 0 auto 12px;

  /* part 3 */
  #fire-safety-coverage-v2 {
    display: none;
  }

  #mobile-fire-safety-coverage-v2 {
    display: block;
    /* background: #e6ecf5; */
    background: rgba(230, 236, 245, 2.4);
background: -webkit-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
background: linear-gradient(0deg, rgba(230, 236, 245, 0.6) 2%, rgba(230, 236, 245, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E6ECF5", endColorstr="#E6ECF5", GradientType=0);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-perform-title {
    font-size: 23px;
    font-weight: bold;
    text-align: center;
  }

  .mobile-perform-training-container-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-perform-h3 {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
  }

  .mobile-perform-p {
    font-size: 15px;
    text-align: center;
  }

  .mobile-perform-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .mobile-number-circle-v2 {
    width: 50px; /* adjust for larger/smaller circles */
    height: 50px;
    min-width: 40px;
    min-height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px; /* Adjust font size as needed */
    color: #000;
    background: #e6ecf5;
    box-sizing: border-box;
    margin-right: 16px; /* Space between circle and text */
    margin-bottom: 0;
  }

  /* for half circle */
  .center-firefighter-v2::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    background: #fff;
    border-radius: 215px 215px 0 0;
    z-index: -1;
  }

  /* part 4*/
  #trainer-p {
    font-size: 13px;
  }
  #carousel-p {
    font-size: 12px;
  }

  /* part 5 */
  .images-and-video img {
    /* flex: 0 0 100vw; */
    width: 100%;
    /* height: 70px; */
    max-height: 130px;
    /* padding-left: 8px; */
  }

  /* part 6 */
  .clients-section {
    padding: 20px 16px;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .client-card {
    min-height: 140px;
  }

  .client-card img {
    width: 70%;
    max-height: 90px;
  }

  /* mbdk reasign */
  .client-card-2 {
    max-width: 80%;
  }

  /* tnb */
  .client-card-5 {
    max-width: 90%;
  }

  /* xiao en reasign */
  .client-card-6 {
    max-width: 85%;
  }

  /* part 7 */
  button.faq-questions {
    font-size: 11px;
  }

  .faq-section {
    padding: 20px 15px;
  }
}
