/*======= crausal section ========*/
.page-title {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.page-title .responsive-banner {
  width: 100%;
  height: auto;   /* Keeps full image visible */
  display: block;
  object-fit: contain; /* Makes sure whole image shows */
}

/* =====about-section==== */
.about-section {
  background: #f9fafc;
}

.about-section .image-box {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 1rem;
}

.about-section .about-img {
  width: auto;         /* show full original size */
  max-width: 100%;     /* scale down if larger than column */
  height: auto;        /* maintain aspect ratio */
  transition: transform 0.6s ease;
}

/* Hover zoom effect */
.about-section .image-box:hover .about-img {
  transform: scale(1.05);
}

/* Subtitle style */
.who-we-are {
  color: #e63946; /* Red */
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: -5px;
  letter-spacing: 0.5px;
}

.about-section .content-box p {
  font-size: 0.95rem;  /* Slightly smaller */
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.about-section h2 {
  color: #0d6efd;
}

@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }
  .about-section .content-box {
    padding-left: 0 !important;
  }
}

@media (max-width: 576px) {
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section p {
     font-size: 0.85rem;
  }
  .who-we-are {
    font-size: 1rem;
  }
}

/* ======service-section (Our Mission) ========*/
/* General Section Style */
.service-section {
  overflow: hidden;
}

.service-section .sec-title h2 {
  font-size: 2.4rem;
  color: #1a1a1a; /* Bootstrap blue shade */
}

.service-section .text-box p {
  font-size: 0.95rem;  /* Slightly smaller */
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

/* Image Styling */
.service-section .mission-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.service-section .image-box:hover .mission-img {
  transform: scale(1.05); /* Hover zoom */
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .service-section {
    text-align: center;
  }
  .service-section .content-box {
    padding-right: 0 !important;
  }
  .service-section .sec-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .service-section .sec-title h2 {
    font-size: 1.6rem;
  }
  .service-section .text-box p {
    font-size: 0.85rem;
  }
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
}
        
/* ======service-section (Our vision) ========*/
/* Section Base */
.service-section {
  position: relative;
  padding: 100px 0;
  background: #f9f9f9;
  overflow: hidden;
  z-index: 1;
}

.service-section .bg-layer {
  position: absolute;
  inset: 0;
  background: url(../assets/images/background/service-bg.jpg) no-repeat center/cover;
  opacity: 0.05;
  z-index: -1;
}

/* Image Styling */
.image-box {
  position: relative;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.6s ease;
}

.image-box:hover {
  transform: scale(1.03);
}

.vision-img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Decorative Shape */
.image-shape {
  position: absolute;
  inset: 0;
  background: url(../assets/images/shape/shape-3.png) no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
}

/* Content Styling */
.sec-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a; /* Accent blue */
  margin-bottom: 10px;
}

.sec-title .subtitle {
  font-size: 1rem;
  color: #e63946; /* Red highlight */
  font-weight: 600;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 15px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .content-box {
    padding-left: 0 !important;
    margin-top: 30px;
    text-align: center;
  }
  .sec-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .sec-title h2 {
    font-size: 1.7rem;
  }
  .text-box p {
    font-size: 0.85rem;
  }
}


