.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 70px;
    height: 70px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px; /* Bigger icon */
    font-weight: bold; /* Bold feel */
    box-shadow: 0 8px 15px rgba(0,0,0,0.3); /* 3D shadow effect */
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 20px rgba(0,0,0,0.4); /* Hover deeper 3D effect */
}

/* Instgaram video section */

.instagram-section {
  padding: 50px 20px;
  background: #fff;
}

/* Header */
.insta-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;    /* vertical center */
}


.insta-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #E1306C;
}

.insta-title i {
  font-size: 32px;
}

/* Grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .reels-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Follow Button */
.follow-btn {
  text-align: center;
  margin-top: 40px;
}

.follow-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s;
}

.follow-btn a:hover {
  transform: scale(1.1);
}

/* Youtube sections */ 

.youtube-section {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

/* Header */
.youtube-section h2 {
  font-size: 34px;
  color: #ff0000;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.youtube-section h2 i {
  font-size: 38px;
}

.youtube-section p {
  font-size: 25px;
  color: #000000;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 30px;
}

/* Grid */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.youtube-grid iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Subscribe Button */
.youtube-subscribe {
  margin-top: 35px;
}

.youtube-subscribe a {
  background: #ff0000;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.youtube-subscribe a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .youtube-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 992px) {
  .youtube-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .youtube-grid { grid-template-columns: repeat(1, 1fr); }
}

/* End of Youtube section CSS */

/* ongoing project section */
/* Section */
/* Existing */
.ongoing-projects {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.ongoing-projects h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

.ongoing-projects h2 span {
  color: #ED6325;
}

/*  ADD FROM HERE (image same size fix) */

/* Each slide same height */
.ongoing-projects .swiper-slide {
  height: 320px;                 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image same width & height */
.ongoing-projects .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* no stretch, clean crop */
  border-radius: 8px;            /* optional */
}

/* Responsive */
@media (max-width: 992px) {
  .ongoing-projects .swiper-slide {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .ongoing-projects .swiper-slide {
    height: 220px;
  }
}



/* Our Partners Section */
.partners-section {
  padding: 80px 0;
  background-color: #fff;
  font-family: "Poppins", system-ui, "Segoe UI",
    sans-serif;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.partners-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.partners-title span {
  color: #ED6325; /* gold like in design */
  font-weight: 900;
}

.partners-subtitle {
  font-size: 25px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 50px;
}


.partners-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 70px;
  align-items: center;
  justify-items: center;
}

.partners-logos img {
  width: 180px;        
  height: auto;        
  object-fit: contain;
  display: block;
}


/* Responsive */
@media (max-width: 992px) {
  .partners-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}

@media (max-width: 576px) {
  .partners-title {
    font-size: 28px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }

  .partners-subtitle {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .partners-logos img {
    width: 160px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .partners-logos img {
    width: 140px;
    height: 60px;
  }
}


