.projects-top-banner-section {
  position: relative;
}

.projects-banner-top-box {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 80%;
}

.projects-banner-top-flex {
  display: flex;
  gap: 20px;
}

.projects-banner-top-flex-left {
  width: 70%;
  padding: 2%;
  background-color: #d1d1d1;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.projects-banner-top-flex-left-heading {
  color: var(--unnamed-color-004071);
  font-size: 43px;
  line-height: 57px;
  font-weight: normal;
}

.projects-banner-top-flex-left-para {
  color: var(--unnamed-color-004071);
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  margin-top: 10px;
}

.projects-banner-top-flex-right {
  width: 40%;
 margin-left: -15%;
}

/* Carousel styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-card {
  flex: 0 0 50%; /* Show 2 cards at a time */
  box-sizing: border-box;
  padding-right: 15px;
}

.carousel-card img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-card-content {
  padding: 10px;
  text-align: center;
}

.carousel-card-content h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.carousel-card-content p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(255,255,255,0.8);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.nav-arrow.left {
  left: -10px;
}

.nav-arrow.right {
  right: -10px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .projects-banner-top-box {
    left: 5%;
    width: 90%;
    bottom: -10%;
  }

  .projects-banner-top-flex {
    flex-direction: column;
  }

  .projects-banner-top-flex-left,
  .projects-banner-top-flex-right {
    width: 100%;
    margin-left: 0;
  }

  .carousel-card {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .projects-banner-top-box {
    bottom: -5%;
  }

  .projects-banner-top-flex-left-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .projects-banner-top-flex-left-para {
    font-size: 16px;
    line-height: 22px;
  }

  .nav-arrow {
    display: none;
  }

  .carousel-card {
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .projects-banner-top-box {
    position: static;
    padding: 20px;
  }

  .projects-top-banner-section img {
    height: auto;
  }

  .projects-banner-top-flex-left-heading {
    font-size: 24px;
  }

  .carousel-card {
    min-width: 120px;
  }
}




.project-main-page {
  background: url('../images/projects/image2.png') center center / cover no-repeat;
  padding: 80px 20px;
  position: relative;
}

.project-main-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.project-main-left {
  flex: 1 1 40%;
  z-index: 2;
}

.project-desc-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  color: #0b2c4d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.project-desc-glass h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.project-main-right {
  flex: 1 1 55%;
  position: relative;
}

.project-card {
  background: #002c56;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  color: #fff;
}

.project-info h3 {
  margin: 0;
  font-size: 20px;
}

.project-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #d4d4d4;
}

.view-all-wrap {
  text-align: right;
  margin-top: 30px;
}

.view-all-btn {
  color: #002c56;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #002c56;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: #002c56;
  color: #fff;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}