body {
      font-family: 'Segoe UI', Tahoma, sans-serif;
    }
    .navbar {
      background: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-link {
      color: #2d3a4b;
      font-weight: 500;
      margin: 0 10px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #c8962f; /* Green hover & active effect */
    }
    .btn-appointment {
      background: #0a51a0;
      color: #fff;
      font-weight: 600;
      border-radius: 30px;
      padding: 10px 25px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: 0.3s;
      text-decoration: none;
    }
    .btn-appointment:hover {
      background: #68b237;
      color: #fff;
    }
    .btn-appointment .icon-circle {
      width: 28px;
      height: 28px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7AC943;
      font-size: 16px;
      transition: 0.3s;
    }
    .btn-appointment:hover .icon-circle {
      color: #68b237;
    }
    .logo-text {
      font-weight: bold;
      color: #2d3a4b;
      font-size: 1.3rem;
    }
    .logo-dot {
      color: #7AC943;
    }
    
	
	
	.banner {
    position: relative;
    min-height: 70vh; /* Not full screen as per your request */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .banner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .btn-gradient {
    background: linear-gradient(90deg, #007BFF, #0056D2);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-gradient:hover {
    background: linear-gradient(90deg, #0056D2, #003EA6);
  }

  /* Responsive text sizes */
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 1.8rem;
    }
    .banner p {
      font-size: 1rem;
      padding: 0 15px;
    }
  }
  
  
  .about-section {
  padding: 50px 20px;
  background-color: #fff;
  
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.about-images {
  flex: 1;
  position: relative;
}
.about-images img {
  width: 280px;
  border-radius: 12px;
}
.img-top {
  position: relative;
  z-index: 2;
}
.img-bottom {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 1;
}
.about-content {
  flex: 1;
}
.about-heading {
  font-size: 32px;
  font-weight: bold;
  color: #115898;
  margin-bottom: 15px;
}
.about-intro {
  font-size: 18px;
  color: #333; text-align:justify;
  margin-bottom: 15px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.about-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.about-list .icon {
  width: 28px;
  height: 28px;
  background: #115898;
  color:#fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.about-list .icon i {
  color: #fff;
  font-size: 14px;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #115898, #0a3d6d);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.read-more-btn:hover {
  background-color: #68b237;
}
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-images img {
    width: 90%;
    max-width: 250px;
  }
  .img-bottom {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .about-list li {
    justify-content: center;
    text-align: left;
  }
}


.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* ✅ Top se start karega */
  gap: 30px;
}

.about-images {
  flex: 1;
  position: relative;
}

.about-images img {
  width: 280px;
  border-radius: 12px;
}

.img-top {
  position: relative;
  z-index: 2;
}

.img-bottom {
  position: absolute;
    top: 235px;
    left: 250px;
    z-index: 2;
}






.clients-section {
  padding: 40px 0;
  background: #f9f9f9;
  text-align: center;
}

.clients-heading {
  font-size: 28px;
  margin-bottom: 20px;
}

.clients-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 10px;
  animation: scroll 20s linear infinite;
}

.clients-track img {
  height: 95px;
  object-fit: contain;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.milestone-section {
  background: #115898;
  padding: 50px 20px;
}

.milestone-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.milestone-box {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.milestone-box:hover {
  transform: translateY(-8px);
}

.milestone-box .icon {
  background: #115898;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.milestone-box .content h3 {
  font-size: 20px;
  color: #115898;
  margin: 0;
  font-weight: 700;
}

.milestone-box .content p {
  font-size: 14px;
  color: #333;
  margin: 3px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .milestone-box {
    flex-direction: row;
    text-align: left;
  }
}


.industries-section {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}
.section-heading {
    font-size: 28px;
    color: #115898;
    margin-bottom: 30px;
}
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}
.slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.slide {
    flex: 0 0 calc(33.33% - 13.33px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
    background: #f3f3f3;
    border-radius: 8px;
    text-align: center;
	    background: linear-gradient(45deg, #115898, #0a3d6d);
}
.slide img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}
.slide h3 {
    padding: 15px 0;
    font-size: 20px;
    color: #fff;
    padding-bottom: 5px;
    font-weight: 600;
}
button.prev, button.next {
    position: absolute;
	width:47px;
    top: 50%;
    transform: translateY(-50%);
    background: #115898;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
}
button.prev {
    left: 10px;
}
button.next {
    right: 10px;
}
@media (max-width: 768px) {
    .slide {
        flex: 0 0 100%;
    }
}


/* Section Background */
    .our-services {
      position: relative;
      background: url('../img/backservice.png') no-repeat center center/cover;
      padding: 60px 0;
    }

    /* Black Overlay */
    .our-services::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    /* Container on top of overlay */
    .our-services .container {
      position: relative;
      z-index: 1;
    }

    /* Heading */
    .our-services h2 {
      color: #fff;
      margin-bottom: 40px;
      font-weight: bold;
    }

    /* Service Box */
    .service-box {
      background: #fff;
      border-radius: 0px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      padding: 5px;
      height: 100%;
    }

    .service-box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      
    }

    .service-box h5 {
      margin-top: 17px;
      color: #007bff;
      font-weight: 700;
      text-transform: capitalize;
      font-size: 18px;
      line-height: 1.4em;
    }

    /* Button */
    .view-all-btn {
      background: #fff;
      color: #000;
      font-weight: bold;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      transition: 0.3s;
    }

    .view-all-btn:hover {
      background: #007bff;
      color: #fff;
    }
	
	
	.career-section {
    padding: 60px 0;
}
.career-content h2 {
    font-size: 36px;
    color: #1b1642;
    margin-bottom: 15px;
}
.career-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.career-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}
.career-content .btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #1b1642;
    color: #1b1642;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}
.career-content .btn:hover {
    background: #1b1642;
    color: #fff;
}
.career-image img {
    width: 100%;
    border-radius: 15px;
}
@media (max-width: 768px) {
    .career-content {
        
        margin-bottom: 30px;
    }
}

.footer {
    background: #0951A1;
    color: #fff;
    padding: 50px 0 20px;
    font-size: 15px;
}
.footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer .footer-col {
    flex: 1 1 250px;
    margin: 15px;
}
.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}
.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #68b237;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer ul li a:hover {
    color: #68b237;
}
.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #1b1642;
    margin-right: 10px;
    transition: 0.3s;
}
.footer .social-icons a:hover {
    background: #68b237;
    color: #fff;
}
.footer .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .footer .footer-top {
        flex-direction: column;
        text-align: center;
    }
}



#customTestimonialCarousel{
background:#fff !important;

    box-shadow: none !important;
    border: none !important;
	
}
/* Unique styling for testimonial section */
.custom-testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  min-height: 320px;
  display: flex; border:1px solid #ccc;
  flex-direction: column;
  justify-content: space-between;
}

.custom-testimonial-img {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.custom-testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: #555;
}

.custom-testimonial-name {
  font-weight: bold;
  margin-top: 10px;
}

.custom-testimonial-location {
  color: #777;
}

/* Custom arrow design */
.custom-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}




.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0) brightness(0) saturate(100%);
  width: 20px;
  height: 20px;
}

/* Responsive behavior */
@media (max-width: 991px) {
  .carousel-item .col-md-4.d-none.d-md-block {
    display: none !important;
  }
}


.whatsappCallSideIco {
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    left: 15px;
}

.whatsappCallSideIco2 {
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    right: 15px;
}

.callico {
    border-radius: 50%;
    width: 49px !important;
}

.whatsappFixIco {
    width: 52px;
    margin-bottom: 6px;
}

.phoneFixIco {
    width: 52px;
}

/* Hide call icon on larger screens if needed */
@media (min-width: 425px) {
    .whatsappCallSideIco {
        display: block;
    }
}

/* Hide something else on smaller screens if needed */
@media (max-width: 424px) {
    .call-us {
        display: block;
    }
}







/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
   .logo-img {
      height: 45px;
    }
	.carousel-control-next.custom-arrow-btn {
  right: 0px;
}

.carousel-control-prev.custom-arrow-btn {
  left: 0px;
}



}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
   .logo-img {
      height: 45px;
    }
	
	.carousel-control-next.custom-arrow-btn {
  right: 0px;
}


.carousel-control-prev.custom-arrow-btn {
  left: 0px;
}



}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .logo-img {
      height: 65px;
    }
	
	.carousel-control-next.custom-arrow-btn {
  right: -70px;
}


.carousel-control-prev.custom-arrow-btn {
  left: -70px;
}



}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo-img {
      height: 65px;
    }
	
	.carousel-control-next.custom-arrow-btn {
  right: -70px;
}


.carousel-control-prev.custom-arrow-btn {
  left: -70px;
}



}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
   .logo-img {
      height: 65px;
    }
	
	.carousel-control-next.custom-arrow-btn {
  right: -70px;
}


.carousel-control-prev.custom-arrow-btn {
  left: -70px;
}


}
