.carousel-item {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out !important;
}

.carousel-img {
  height: 100vh; /* full screen */
  object-fit: cover;
  animation: zoomOut 12s infinite ease-in-out; /* ensures image fills screen */
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.6;
}

.carousel-indicators .active {
  background-color: #007bff;
  opacity: 1;
}

.carousel-caption-content {
 
  border-radius: 4px;
  
  text-align: left;
  color: whitesmoke;
}
.carousel-caption-content-first{
  width: 70%;
  background-color: #335876c9;
   padding: 40px 20px 20px 40px;
}
.carousel-caption {
  position: absolute;
  bottom: 40vh;
  left: 0;
  right: 0;
  border-radius: 4px;
}

.carousel-caption h1 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 0px;
}

.carousel-caption p {
  font-size: 18px;
  font-weight: 200;
  line-height: 35px;
  opacity: 0.81;
}

/* Animation for Ken Burns Effect */
@keyframes zoomOut {
  0% {
    transform: scale(1) translate(0%, 0%);
  }
  100% {
    transform: scale(1.2) translate(-2%, -2%);
  }
}

/* Responsive Styling for Phone Mode */
@media (max-width: 1024px) {
  .carousel-caption {
    bottom: 25vh;
    padding: 30px 40px 30px 40px;
  }
  .about-container {
    padding: 20px 20px !important;
  }
  .about-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .carousel-caption {
    padding: 20px 20px;
  }
  .carousel-caption-content {
    padding: 20px;
  }

  h1 {
    font-size: 16px;
    line-height: 24px;
  }

  .carousel-caption p {
    font-size: 14px;
    font-weight: 200;
    line-height: 25px;
    opacity: 0.81;
  }
}

@media (max-width: 576px) {
  .carousel-caption {
    padding: 10px 15px;
    bottom: 35vh;
  }

  .carousel-caption-content {
    padding: 10px;
  }

  .carousel-caption h1 {
    font-size: 20px;
    line-height: 20px;
    font: bold;
    margin-bottom: 8px;
    text-align: left;
  }
  .carousel-caption p {
    font-size: 14px;
    font-weight: 200;
    line-height: 18px;
    opacity: 0.81;
    margin-bottom: 0px;
    text-align: left;
  }
  .carousel-caption-content-first{
    width: 100%;
    padding: 20px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.trusted-by-section {
  padding: 60px 0px;
}
.trusted-by-heading {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #0d3758;
  margin: 0px 0px -80px 0px;
}

.company-logo-carousel {
  overflow: hidden;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 200px;
  max-width: 768px;
  margin: auto;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite; /* adjust speed */
  align-items: center;
}

.logo-track img {
  height: 300px;
  object-fit: contain;
}

/* Keyframes for continuous scrolling */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

swiper-container {
  width: 1100px;
  height: 200px;
  margin: auto;
  display: flex;
  gap: 40px;
  --swiper-wrapper-transition-timing-function: linear; /* smooth continuous scroll */
}

swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1px;
  height: 100%;
}

swiper-slide img {
  width: 350px;
  object-fit: contain;
}

.explore-btn {
  text-decoration: none;
  background-color: white;
  border-color: #0d3758;
  color: #0d3758;
  border: 2px solid #0d3352a3;
  margin-top: 100px;

  padding: 10px 20px;
  font-size: 14px;
  border-radius: 05px 05px 05px 05px;
}

.explore-btn:hover {
  cursor: pointer;
  background-color: #0f4f83;
  color: white;
  border-color: #0f4f83;
  transition: background-color 0.5s ease;
  transform: scale(0.9);
}

.about-container {
  max-width: 1200px;
  margin: auto;
}
.about-text-container {
  width: 50%;
}
.about-text {
  font-size: 16px;
  line-height: 1.875; /* Equivalent to 30px */
  opacity: 0.77;
  text-align: justify;
}

.about-heading {
  font-size: 32px;
  font-weight: 600 !important;
}

.about-section {
  background-color: #1e3a8a;
  color: white;
  padding: 60px 0px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .about-container {
    padding: 20px 20px !important;
  }
  .about-heading {
    font-size: 24px;
    padding: 10px 0px !important;
    font-weight: 600 !important;
    margin-bottom: 0px;
  }
  .about-text {
    font-size: 14px;
  }
}

.btn-custom {
  background-color: #134161;
  color: white;
  padding: 10px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #0f4f83;
}

.about-img-container {
  width: 35%;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .about-img-container {
    width: 70%;
    padding-left: 0;
  }
  .about-text-container {
    width: 100%;
  }
}

.capabilities-section {
  padding: 60px 0px;
  text-align: center;
  background-color: rgb(247, 247, 247);
}

.map-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
  background-color: rgb(247, 247, 247);
  padding: 10px 20px; /* Added container padding for small screens */
  overflow: hidden; /* Ensures nothing bleeds out */
  box-sizing: border-box;
}

.world-map {
  width: 100%;
  max-width: 1200px;
  height: auto;
  box-sizing: border-box;
}

.section-heading {
  color: #0d3758;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0px;
}

.section-description1 {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
  color: rgb(122, 122, 122);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 2px;
  text-align: center;
}
.section-description {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
  color: rgb(122, 122, 122);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 2px;
  text-align: justify;
}

@media(max-width: 576px) { 
  .section-heading{
    margin-bottom: 10px;
  }
  
}

@media (max-width: 768px) {
  .about-container {
    padding: 20px 20px !important;
  }
  .about-heading {
    font-size: 24px;
    padding: 10px 0px !important;
    font-weight: 600 !important;
    margin-bottom: 0px;
  }
  .about-text {
    font-size: 14px;
  }
  .section-description {
    margin-top: 6px;
  }
}


@media(max-width: 576px){
   .about-text {
    text-align: justify;
  }
  .about-heading{
    text-align: justify;
  }
  .know-btn{
    text-align: justify;
  }
 .report div{
  width: 100%;
 }

}

.report-card {
  background-image: url("../public/Framebg2.png");
  color: white;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.report-card-heading{
  font-weight: 600;
}
.work {
  color: rgba(255, 255, 255, 0.77);
  font-size: 16px;
  font-weight: 400;
}
.work a i {
  color: rgba(255, 255, 255, 0.77);
}

.report {
  width: 90%;
  margin: 0 auto;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
}
.stat-wrapper p {
  font-size: 16px;
   color: rgba(255, 255, 255, 0.77);
}


.report-card h1 {
  font-size: 32px;
  line-height: 52px;
  margin-bottom: 10px;
}
.report-card a {
  text-decoration: none;
  color: white;
  opacity: 0.77;
}

@media (max-width: 984px) {
  .report-card h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 24px;
  }
}

.stat-wrapper {
  padding: 5px;
  border-radius: 8px;
}
