    .productSwiper {
  width: 100%;
  padding: 40px 20px 60px;
}
.icon-wrapper1 {
    margin-bottom: 20px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.product-card {
  border-radius: 10px;
  background: rgba(242, 242, 242, 0.70);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  padding: 20px 40px;
  transition: all 0.4s ease;
  height: 400px;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.icon {
  width: 120px;
  height: 120px;
  transition: all 0.4s ease;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A5F7F;
  text-align: center;
  margin: 0;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  margin-top: 0;
}

.card-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}

.product-card:hover .icon-wrapper {
  transform: translateY(-20px);
  margin-bottom: 15px;
}

.product-card:hover .icon {
  width: 90px;
  height: 90px;
}

.product-card:hover .card-title {
  transform: translateY(-20px);
  margin-bottom: 15px;
  font-size: 24px;
}

.product-card:hover .card-description {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #0A5F7F;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .product-card {
    height: 380px;
    padding: 40px 30px;
  }

  .icon {
    width: 100px;
    height: 100px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-description p {
    font-size: 14px;
  }

  .product-card:hover .icon {
    width: 80px;
    height: 80px;
  }

  .product-card:hover .card-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .product-card {
    height: 360px;
    padding: 30px 20px;
  }

  .icon {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description p {
    font-size: 13px;
  }
}


.page-title {
  font-size: 48px;
  font-weight: 700;
  color: #0A5F7F;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.tab-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-button {
 padding: 18px 50px;
    font-size: 20px;
    color: #ffffff;
    background: rgba(64, 64, 64, 0.50);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;

}

.tab-button:hover {
  background: #808080;
  transform: translateY(-2px);
}

.tab-button.active {
  background: #0A5F7F;
}

.tab-content-wrapper {
  position: relative;
  border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 32px 21px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .tab-container {
    gap: 12px;
  }

  .tab-button {
    padding: 14px 30px;
    font-size: 16px;
    min-width: 140px;
  }

 
}

@media (max-width: 480px) {
 

  .page-title {
    font-size: 28px;
  }

  .tab-button {
    flex: 1;
    min-width: auto;
    padding: 12px 20px;
    font-size: 14px;
  }

}
.gallery-section {
  width: 100%;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  height: calc(100vh - 120px);
  min-height: 600px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.info-banner {
  background: #B00249;
  padding: 25px 20px;
  width: 100%;
}

.banner-text {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.4;
 
}

@media (max-width: 1200px) {
  .banner-text {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    height: auto;
    min-height: auto;
  }

  .masonry-item-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
  }

  .masonry-item-medium {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }

  .banner-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .masonry-item-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }

  .masonry-item-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }

  .info-banner {
    padding: 25px 15px;
  }

  .banner-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .masonry-item-large,
  .masonry-item-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 250px;
  }

  .banner-text {
    font-size: 16px;
  }

  .info-banner {
    padding: 20px 15px;
  }
}