body{
  font-family: "Saira Semi Condensed", sans-serif;
}


.carousel-item img {
  filter: brightness(25%);
  height: auto;
}

/* Base styles for carousel controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  transition: all 0.3s ease;
  /* z-index: 10; */
  cursor: pointer;
}

/* Hover effect - darker black and yellow icon color */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #000000;
  color: #f8d007; /* Bright yellow on hover */
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Positioning */
.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

/* Custom icons using FontAwesome */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  font-family: 'FontAwesome';
  font-size: 28px;
  background-color: transparent;
}

.carousel-control-prev-icon::before {
  content: '\f104'; /* Left arrow */
}

.carousel-control-next-icon::before {
  content: '\f105'; /* Right arrow */
}

.our_service :hover{
  background-color:red;
  border:2px solid red;
  transition: background-color 0.5s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.05)
}


/* Font styles for carousel caption elements */
.carousel-caption h1 {
 

  font-weight: 600; /* Make the heading bold */
}

.carousel-caption p {

  font-weight: 300; /* Lighter weight for the paragraph text */
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgb(167 165 165 / 60%);
}

.carousel-item img {
  height: 80vh;
  object-fit: cover;
}

/* carousel */
.carousel-left-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: -0.04em;
  color:white
}

.carousel-left-text p {
  font-size: 20px;
  margin-top: 10px;
}

/* Shared base style for both buttons */
.carousel-caption .btn1,
.carousel-caption .btn2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* z-index: 1; */
  font-weight: 600;
  padding: 14px 25px;
  font-size: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, box-shadow 0.4s ease;
}

/* ------------------------------------
   Button 1: Coral base, white overlay
--------------------------------------*/
.carousel-caption .btn1 {
  background: #142c54;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(228, 104, 93, 0.3);
}

.carousel-caption .btn1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 0%;
  background: #ffffff;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  /* z-index: -1; */
  border-radius: 0;
}

.carousel-caption .btn1:hover::before {
  height: 700%;
}

.carousel-caption .btn1:hover {
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}


/* ------------------------------------
   Button 2: White base, coral overlay slide-in
--------------------------------------*/
.carousel-caption .btn2 {
  background: #ffffff;
  color: #000000 !important;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: color 0.4s ease, box-shadow 0.4s ease;
}



.carousel-caption .btn2:hover::before {
  left: 0;
}

.carousel-caption .btn2:hover {
  color: #000000 !important;
  box-shadow: 0 8px 25px rgba(16, 53, 219, 0.4);
  overflow: hidden;
}


.crh6{
    color: #f47c1f;
;
}
.carousel-indicators {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;   /* Align to the left */
  z-index: 10 !important;
  margin: 0;
  padding: 0;
  gap: 8px;
  width: 10px;
}

/* Carousel dots */
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Active indicator */
.carousel-indicators .active {
  background-color: #da4934;
  opacity: 1;
  transform: scale(1.4);
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px rgba(218, 73, 52, 0.6);
}

/* Override Bootstrap if needed */
.carousel-indicators [data-bs-target] {
  width: 5px;
  height: 10px;
}

/* Divider lines (aligned left like the buttons) */
.divider1,
.divider2 {
  width: 2px;
  height: 50px;
     background: linear-gradient(0deg, rgba(1, 15, 52, 0.7) 0%, #fff 100%);
    top: 100%;
/* z-index: -999; */
  opacity: 0.6;
  border-radius: 1px;
  margin-left: 8px;   /* aligns with buttons to the left */
}



/* Media Queries for Mobile */
@media (max-width: 768px) {

  /* Adjust carousel image size for mobile */
.carousel-item img

 {
        height: 30vh;
        object-fit: cover;
    }

  /* Adjust font sizes for carousel caption */
  .carousel-caption h1 {
      font-size: 2rem; /* Smaller heading */
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6); /* Smaller shadow for mobile */
  }

  .carousel-caption p {
      font-size: 1rem; /* Smaller paragraph text */
  }

  /* Reduce button size for mobile */
  .carousel-caption .btn1, .carousel-caption .btn2 {
      padding: 5px 10px;
      font-size: 10px; /* Smaller button text */
  }

  /* Reduce spacing in the carousel text */
  .carousel-left-text h1 {
      font-size: 1.5rem; /* Smaller heading */
  }

  .carousel-left-text p {
      font-size: 16px; /* Smaller paragraph */
  }
}

/* Further adjustments for very small screens (e.g., phones) */
@media (max-width: 480px) {

  /* Make buttons even smaller on very small screens */
  .carousel-control-prev, .carousel-control-next {
      width: 40px;
      height: 40px;
      font-size: 24px;
  }

  .carousel-caption h1 {
      font-size: 1rem; /* Even smaller heading for small screens */
  }

  .carousel-caption p {
      font-size: 0.8rem; /* Even smaller paragraph text */
  }
}


/* Section Spacing */
.about_us,
.our_mission {
  padding: 60px 0;
}

/* Layout */
.ab_div2 {
  padding-left: 50px;
}

/* Icon Row Container */
.about_us .d-flex.align-items-start {
  gap: 10px;
}

/* About Us Headings */
.about_us h2 {
  font-size: 45px;
  margin-top: 10px;
  color: #212529;
}
.about_us h6 {
  font-size: 25px;
  color: #da4934;
  text-transform: uppercase;
}

/* Paragraphs */
.about_us p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
}



/* Fan Icon */
.rotating-fan {
  width: 28px;
  animation: spin 1.5s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Icon + Text Row */
.about_us i.fa-circle-check {
  color: #28a745; /* green check color */
  font-size: 1.1rem;
  margin-top: 4px;
}

/* Icon Text Alignment */
.about_us .d-flex p {
  margin-bottom: 0;
}

/* Responsive: Center text on small screens */
@media (max-width: 768px) {
  .ab_div2 {
    padding-left: 0;
  }
}
/* Container Padding */
.our_mission {
  padding: 60px 20px;
  background-color: #fff; /* clean white background */
}

/* Section Titles */
.our_mission h6 {
  color: #142c54; /* a fresh warm red */
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;

}

.our_mission .card{
  border: none;
}
.our_mission h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;

  letter-spacing: 0.02em;
}

:root {
  --primary-color: #142c54;
  --primary-dark: #d63b15;
  --text-dark: #222;
  --text-muted: #666;
  --bg-white: rgba(255, 255, 255, 0.9);
  --shadow-light: rgba(49, 46, 216, 0.05);
  --shadow-hover: rgba(48, 67, 241, 0.2);
}

.mission-box {
  position: relative; /* For positioning pseudo-elements */
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: 10px;
  border-bottom: 20px solid #ecf1f5;
  border-left: none;
  border-right: none;
  box-shadow:
    0 8px 16px var(--shadow-light),
    inset 0 0 15px rgba(255 255 255 / 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  
}

/* Left half-height border */
.mission-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 50%;
  background: #ecf1f5;
  pointer-events: none;
  clip-path: polygon(0 10px, 100% 0, 100% 100%, 0 100%);
}
/* Right half-height border */
.mission-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 50%;
  background: #ecf1f5;
  border-radius: 0px;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 100%);
}


.mission-box:hover {
  border-color: var(--primary-color);
  box-shadow:
    0 14px 28px var(--shadow-hover),
    inset 0 0 30px rgba(30, 9, 214, 0.3);
  transform: translateY(-8px) scale(1.06);
}

.mission-icon {
  font-size: 42px;
  color: #f47c1f;
  background: #142c54;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 5px 10px rgba(35, 21, 228, 0.25));
  transition: transform 0.8s ease, filter 0.3s ease, color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  box-shadow:
    0 2px 6px rgba(32, 44, 209, 0.2);
}

.mission-box:hover .mission-icon {
  transform: rotate(360deg);
  filter: drop-shadow(0 10px 20px rgba(18, 21, 221, 0.5));
  color: var(--primary-color);
  background: rgba(44, 33, 196, 0.3);
}

.mission-box h5 {
  font-weight: 800;
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;

}

.mission-box p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
 
  max-width: 280px;
}

.mission-box:hover::before,
.mission-box:hover::after {
  background: var(--primary-color); /* ya koi bhi color jo hover pe chahiye */
}


/* Responsive tweaks */
@media (max-width: 576px) {
  .our_mission h2 {
    font-size: 30px;
  }

  .mission-box {
    padding: 28px 20px;
  }

  .mission-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
    padding: 16px;
  }

  .mission-box p {
    max-width: 100%;
  }
}
/* 
.feature-box {
  background: #ffffff;
  border-left: 4px solid #d63b15;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  background: #fff5f1;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feature-box h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
} */


.why-chouse {
  background-color: #fdfdfd;
}

.rotating-fan {
  animation: rotateFan 4s linear infinite;
}

@keyframes rotateFan {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-box {
  background-color: #fff;
  border-left: 4px solid #d7863d;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: #fff3ef;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feature-box h6 {
  font-weight: 600;
  color: #222;
}

.feature-box p {
  font-size: 15px;
  color: #555;
}



@media screen and (min-width:300px) and (max-width:768px) {
  .carousel-indicators [data-bs-target]{
    display: none;
  }
  .divider1, .divider2{
    display: none;
  }
  .about_us, .our_mission{
    padding: 10px ;
  }
  .about_us h6{
    font-size: 14px;;
  }
  .rotating-fan{
    width: 20px !important;
  }
  .about_us h2{
    font-size: 25px;;
  }
  .about_us p{
    font-size: 14px;;
  }
  .cardssection{
    padding: 10px;;
  }
  .our_mission h2 {
        font-size: 24px;
    }
}

