/* "hero section start " */
.st-hero-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  max-height: 85vh;
  overflow: hidden;
  background: #f0f0f0;
}

/* The Moving Container */
.st-slider-container {
  display: flex;
  width: 400%; /* 4 slides = 400% */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Individual Slides */
.st-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.st-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  display: block;
}

/* Glassmorphism Navigation Buttons */
.st-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
  user-select: none;
}

.st-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.st-prev {
  left: 30px;
}
.st-next {
  right: 30px;
}

/* Beautiful Bullets */
.st-bullet-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 30px;
}

.st-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-bullet.active {
  background: #ffffff;
  width: 35px; /* Animated pill shape */
  border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .st-hero-wrapper {
    height: 280px;
  }
  .st-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .st-prev {
    left: 15px;
  }
  .st-next {
    right: 15px;
  }
  .st-bullet-container {
    bottom: 20px;
  }
}

/* hero section end  */

/* about section strat  */
:root {
  --mcs-primary: #0056b3;
  --mcs-text: #333;
  --mcs-bg: #ffffff;
  --mcs-card-bg: #e5e5e5;
  --mcs-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mcs-about-section {
  padding: 30px 2%;
  background: var(--mcs-bg);
  overflow: hidden;
}

.mcs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image Layout */
.mcs-image-grid {
  position: relative;
  display: flex;
  gap: 20px;
}

.mcs-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--mcs-transition);
}

.mcs-img-main {
  width: 70%;
  height: 450px;
  object-fit: cover;
}

.mcs-img-sub {
  width: 30%;
  height: 300px;
  object-fit: cover;
  margin-top: 80px;
}

.mcs-img-box:hover {
  transform: translateY(-10px);
}

/* Content Layout */
.mcs-content {
  padding-right: 20px;
}

.mcs-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 86, 179, 0.1);
  color: var(--mcs-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mcs-title {
  font-size: 1.8rem;
  color: var(--mcs-text);
  line-height: 1.2;
  margin-bottom: 25px;
}

.mcs-title span {
  color: var(--mcs-primary);
}

.mcs-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Info Cards */
.mcs-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mcs-card {
  background: var(--mcs-card-bg);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--mcs-transition);
}

.mcs-card:hover {
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--mcs-primary);
}

.mcs-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.mcs-card h4 {
  margin-bottom: 10px;
  color: var(--mcs-text);
}

.mcs-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .mcs-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .mcs-image-grid {
    order: 2;
  }
  .mcs-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .mcs-about-section {
    padding: 60px 20px;
  }
  .mcs-card-grid {
    grid-template-columns: 1fr;
  }
  .mcs-img-main {
    height: 300px;
  }
  .mcs-img-sub {
    height: 200px;
  }
}

/* about section end  */

/* our services section start */
.mcs-wrapper {
  background-color: #fcfcfc;
  padding: 20px 20px;
}

/* Header Styling */
.mcs-wrapper .mcs-main-heading {
  text-align: center;
  margin-bottom: 70px;
}

.mcs-wrapper .mcs-sub-title {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #718096;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mcs-wrapper .mcs-primary-title {
  font-size: 32px;
  text-transform: uppercase;
  color: #1a202c;
  position: relative;
  display: inline-block;
  margin: 0;
}

.mcs-wrapper .mcs-highlight {
  color: #0056b3;
}

.mcs-wrapper .mcs-title-line {
  position: absolute;
  width: 50%;
  height: 3px;
  background: #0056b3;
  bottom: -15px;
  left: 25%;
}

/* Grid Layout Styling */
.mcs-wrapper .mcs-grid-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card Styling */
.mcs-wrapper .mcs-service-item {
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid transparent;
}

.mcs-wrapper .mcs-img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.mcs-wrapper .mcs-img-wrapper img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.8s ease;
  border-radius: 0 0 80px 0;
  display: block;
}

.mcs-wrapper .mcs-text-content {
  padding: 30px 20px;
  text-align: center;
}

.mcs-wrapper .mcs-card-title {
  font-size: 22px;
  color: #2d3748;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
  font-weight: 700;
}

.mcs-wrapper .mcs-card-para {
  font-size: 14px;
  line-height: 1.7;
  color: #718096;
  margin: 0;
}

/* Interaction States */
.mcs-wrapper .mcs-service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #0056b3;
}

.mcs-wrapper .mcs-service-item:hover img {
  transform: scale(1.1);
}

.mcs-wrapper .mcs-service-item:hover .mcs-card-title {
  color: #0056b3;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .mcs-wrapper .mcs-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mcs-wrapper .mcs-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mcs-wrapper {
    padding: 30px 15px;
  }
  .mcs-wrapper .mcs-primary-title {
    font-size: 26px;
  }
}

/* our services section end  */

/* counter section start  */
.mcs-counter-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mcs-counter-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mcs-counter-card {
  background: #dbdbdb;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.mcs-counter-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.mcs-counter-number {
  font-size: 48px;
  font-weight: 800;
  color: #0056b3; /* Matching your red brand theme */
  margin-bottom: 10px;
  display: block;
}

/* Adding a plus sign after the number */
.mcs-counter-number::after {
  content: "+";
  font-size: 30px;
  margin-left: 2px;
  vertical-align: top;
}

.mcs-counter-label {
  font-size: 16px;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Hover Effects */
.mcs-counter-card:hover {
  transform: translateY(-12px);
  background: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
}

.mcs-counter-card:hover .mcs-counter-number,
.mcs-counter-card:hover .mcs-counter-label {
  color: #ffffff;
}

.mcs-counter-card:hover .mcs-counter-icon {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .mcs-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mcs-counter-grid {
    grid-template-columns: 1fr;
  }
  .mcs-counter-number {
    font-size: 38px;
  }
  .mcs-counter-section {
    padding: 50px 15px;
  }
}

/* counter section end */

/* why choose us section start  */
.mcs-why-wrapper {
  background-color: #ffffff;
  padding: 30px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

/* Header Styling */
.mcs-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.mcs-why-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(211, 47, 47, 0.1);
  color: #0056b3;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.mcs-why-title {
  font-size: 36px;
  color: #1a202c;
  margin: 0;
  font-weight: 800;
}

.mcs-why-title b {
  color: #0056b3;
}

.mcs-why-divider {
  width: 60px;
  height: 4px;
  background: #0056b3;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.mcs-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Premium Card Styling */
.mcs-why-card {
  background: #f2f4f4;
  padding: 40px 25px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  border-left: 4px solid #0056b3;
  border-bottom: 4px solid #0056b3;
}

.mcs-why-icon-box {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
}

.mcs-why-icon {
  font-size: 35px;
}

.mcs-why-name {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 700;
}

.mcs-why-text {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* High-Fidelity Hover Effects */
.mcs-why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: #0056b3;
}

.mcs-why-card:hover .mcs-why-icon-box {
  background: #0056b3;
  transform: rotateY(180deg);
}

.mcs-why-card:hover .mcs-why-icon {
  filter: brightness(0) invert(1); /* Makes emoji/icon pop if using svgs, otherwise just scales */
  transform: rotateY(-180deg);
}

/* Fully Mobile Responsive */
@media (max-width: 1024px) {
  .mcs-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .mcs-why-grid {
    grid-template-columns: 1fr;
  }
  .mcs-why-title {
    font-size: 28px;
  }
  .mcs-why-wrapper {
    padding: 30px 20px;
  }
  .mcs-why-card {
    padding: 30px 20px;
  }
}

/* why choose us section end  */

/* icons section start  */
.mcs-action-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Styling */
.mcs-btn-fixed {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.mcs-btn-fixed:hover {
  transform: scale(1.1);
}

/* WhatsApp Specific */
.mcs-whatsapp {
  background-color: #25d366;
}

.mcs-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Back to Top Specific */
.mcs-top {
  background-color: #06b6d4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.mcs-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mcs-top:hover {
  background-color: #0891b2;
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
}

/* Mobile Adjustment */
@media (max-width: 640px) {
  .mcs-action-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .mcs-btn-fixed {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* icons section end  */
