:root {
  --text-dark: #1e3d59;
  --text-light: #00bfa6;
  --text-fent: #e21743db;
  --bg-main: #ffffff;
  --bg-light: #ffffff;
  --text-blue: #4ed4f6;
}

/* General */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
}

/* Navbar */
.nav-item{
  font-size: 20px;
  margin-right: 20px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 20px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-blue);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.hero-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 61, 89, 0.5); /* based on --text-dark */
  z-index: -1;
}
.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-blue);
  animation: fadeInDown 1s ease-out;
}
.hero-content h6 {
  font-size: 1.5rem;
  color:#fff;
  animation: fadeInUp 1s ease-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery */
.project-gallery img {
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.project-gallery img:hover {
  transform: scale(1.03);
}

/* Modal */
.modal-content {
  border-radius: 10px;
  background-color: var(--bg-light);
}

/* Buttons */
.btn-outline-dark {
  color: var(--text-dark);
  border-color: var(--text-fent);
}
.btn-outline-dark:hover,
.btn-outline-dark.active {
  background-color: var(--text-fent);
  color: white;
  border-color: var(--text-fent);
}

.btn-warning {
  background-color: var(--text-fent);
  border-color: var(--text-fent);
  color: #fff;
}
.btn-warning:hover {
  background-color: var(--text-fent);
  border-color: var(--text-fent);
}





.contact-modal {
  border-radius: 12px;
  background-color: var(--bg-light);
  animation: fadeInZoom 0.4s ease-out;
}

.contact-modal .modal-header {
  background-color: var(--text-fent);
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.contact-modal .modal-body {
  padding: 20px;
}

.contact-modal .form-label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-modal .form-control {
  border-radius: 8px;
  border: 1px solid var(--text-blue);
  transition: border 0.3s ease;
}

.contact-modal .form-control:focus {
  border-color: var(--text-fent);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.contact-modal .btn-primary {
  background-color: var(--text-fent);
  border-color: var(--text-fent);
}
.contact-modal .btn-primary:hover {
  background-color: var(--text-fent);
}

/* Animation */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}




/* counting style */

.stats-section {
  background: linear-gradient(135deg, var(--text-dark), var(--text-blue));
  color: white;
  padding: 25px 0;
  position: relative;
  margin-top: 410px; /* Adjust this value based on your layout needs */
  z-index: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.col {
  flex: 0 0 30%;
  max-width: 20%;
  padding: 10px;
}

@media (min-width: 768px) {
  .col {
    flex: 0 0 20%;
    max-width: 20%;
  }

}

.stats-box {
  background-color: rgba(255, 255, 255, 0.11);
  padding: 5px;
  border-radius: 15px;
  transition: transform 0.3s;
  gap: 30px;
}

.stats-box:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.stats-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  color: white;
}

.stats-box p {
  font-size: 16px;
  color: white;
  margin-top: 10px;
}


.header-text {
  color: #333;
  font-weight: 600;
}
.dream-home {
  color: var(--text-blue);
  font-weight: 700;
}
.content-section {
  padding: 60px 0;
}
.btn-custom-green {
  background-color: #2a8c82;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-custom-green:hover {
  background-color: #217267;
  color: white;
}
.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin-top: 35%;

  transform: translateY(-50%);
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.why-choose{
  color: var(--text-fent);
}


/* Responsive styles */
/* Mobile devices (576px and below) */
@media (max-width: 576px) {
  .content-section {
      padding: 2rem 0.5rem;
  }
  .header-text {
      font-size: 1.8rem;
  }
  .whatsapp-float {
      bottom: 15px;
      left: 15px;
      width: 45px;
      height: 45px;
      font-size: 20px;
  }
  .logo-corner {
      width: 50px;
  }
  .btn-group-mobile {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  .btn-group-mobile .btn {
      width: 100%;
      margin-right: 0 !important;
  }
  .stats-section{
    margin-top: 280px;
  }
}

/* Tablets (577px to 991px) */
@media (min-width: 577px) and (max-width: 991px) {
  .content-section {
      padding: 2.5rem 1rem;
  }
  .carousel-wrapper {
      margin-top: 2rem;
  }
}

/* Laptops/Desktops (992px and above) */
@media (min-width: 992px) {
  .content-section {
      padding: 4rem 2rem;
  }
}

/* Large Desktops (1200px and above) */
@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}





/* our project */
.section-titles {
  margin-bottom: 3rem;
}

.section-titles h2 {
  color: var(--text-blue);
  font-weight: 700;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 35px;
}
.projects{
  color: var(--text-dark);
}
.section-titles h3 {
  color: var(--text-dark);
  font-weight: 500;
}

.section-titles h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--text-fent);
}

.project-card {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-img-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transform: translateY(70%);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  background-color: var(--text-light);
  color: white;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.project-card:hover .project-category {
  transform: translateY(0);
  opacity: 1;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.project-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--text-fent);
}

.project-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.3s;
}

.project-card:hover .project-description {
  opacity: 1;
  transform: translateY(0);
}

.project-link {
  display: inline-block;
  background-color: var(--text-fent);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: background-color 0.3s ease, opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.project-link:hover {
  background-color: var(--text-fent);
  color: white;
}

.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}

.project-count {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--text-fent);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s;
  z-index: 10;
}

.project-card:hover .project-count {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.count-num {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.count-text {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.icon-container {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-60px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.project-card:hover .icon-container {
  transform: translateY(0);
  opacity: 1;
}

/* Shimmer effect */
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: all 0.8s;
  opacity: 0;
}

.project-card:hover::before {
  animation: shine 1.5s;
}

@keyframes shine {
  100% {
      left: 125%;
      opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .project-card {
      height: 400px;
  }
}

@media (max-width: 768px) {
  .project-card {
      height: 350px;
  }
}

@media (max-width: 576px) {
  .project-title {
      font-size: 1.3rem;
  }
  
  .project-description {
      font-size: 0.85rem;
  }
}

/* features */
.containers{
  background: linear-gradient(135deg, var(--text-dark), var(--text-blue));
  font-family: "Segoe UI", sans-serif;
  color: var(--bg-main);
  padding: 40px 0;
  min-height: 100vh;
  width: 100%;

}
.page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--bg-light);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  z-index: -1;
}

.feature-box:hover {
  background-color: var(--text-fent);
  transform: translateY(-10px) scale(1.02);
  border-color: var(--text-fent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-fent);
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  color: var(--bg-main);
  transform: scale(1.2);
}

.feature-box h5 {
  color: var(--bg-main);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.feature-box h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--text-fent);
  transition: all 0.4s ease;
}

.feature-box:hover h5::after {
  width: 80px;
  background-color: var(--bg-main);
}

.feature-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* Scroll animations */
.scroll-down {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--bg-main);
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
}

.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--text-fent);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-up.visible {
  opacity: 1;
}

.scroll-up:hover {
  background-color: var(--text-fent);
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}


/* our services */
    /* Services section styling */
    .services-section {
      padding: 80px 0;
      margin-top: 50px;
    }

    /* Header styles */
    .services-header {
      text-align: center;
      margin-bottom: 50px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .services-header.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .services-header h1 {
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .services-header h1 span {
      color: var(--text-light);
      font-size: 40px;
      font-weight: 800;
    }

    /* Service card styles */
    .service-card {
      background-color: var(--bg-light);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(30, 61, 89, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      border-bottom: 3px solid transparent;
      height: 100%;
    }

    .service-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(30, 61, 89, 0.15);
      border-bottom: 3px solid var(--text-blue);
    }

    .service-image {
      height: 200px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-image img {
      transform: scale(1.05);
    }

    .service-content {
      padding: 20px;
    }

    .service-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-fent);
    }

    .service-description {
      color: var(--text-dark);
      opacity: 0.75;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .know-more {
      display: inline-block;
      color: var(--text-light);
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .know-more:hover {
      transform: translateX(5px);
      color: var(--text-fent);
    }

    .arrow-icon {
      display: inline-block;
      margin-left: 5px;
      transition: transform 0.3s ease;
    }

    .know-more:hover .arrow-icon {
      transform: translateX(3px);
    }


    /* video section */
    
       /* Section styling */
       .video-gallery {
        padding: 50px 20px;
        background: linear-gradient(135deg, var(--text-dark), var(--text-blue));

    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 40px;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--bg-light);
    }
    
        /* Video grid layout */
        .video-grid {
          display: flex;
          flex-direction: column;
          gap: 30px;
          max-width: 1200px;
          margin: 0 auto;
      }
      
      /* Desktop - side by side videos */
      @media (min-width: 768px) {
          .video-grid {
              flex-direction: row;
              flex-wrap: wrap;
          }
          
          .video-item {
              flex: 0 0 calc(50% - 15px);
          }
      }
      
      /* Video items */
      .video-item {
          background-color: #fff;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      }
      
      .video-media-container {
          position: relative;
          height: 350px;
          overflow: hidden;
          cursor: pointer;
      }
      
      /* Thumbnail styling */
      .video-thumbnail {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 2;
          transition: opacity 0.3s ease;
      }
      
      .video-thumbnail img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      
      .play-icon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 60px;
          height: 60px;
          background-color: rgba(0, 0, 0, 0.874);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 3;
          color: var(--bg-light);
      }
      
      .play-icon i {
          color: white;
          font-size: 24px;
      }
      
      /* Video player styling */
      .video-player {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: 1;
      }
      
      /* Show video, hide thumbnail when playing */
      .is-playing .video-thumbnail {
          opacity: 0;
          pointer-events: none;
      }
      
      .is-playing .video-player {
          z-index: 4;
      }
      
      /* Close button */
      .close-btn {
          position: absolute;
          top: 10px;
          right: 10px;
          background-color: rgba(0,0,0,0.7);
          color: white;
          width: 30px;
          height: 30px;
          border-radius: 50%;
          border: none;
          display: none;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          z-index: 10;
      }
      
      .is-playing .close-btn {
          display: flex;
      }
      
      .close-btn:hover {
          background-color: rgba(255,0,0,0.8);
      }
      
      .video-info {
          padding: 20px;
      }
      
      .video-info h3 {
          margin-bottom: 10px;
          color: var(--text-blue);
      }
      .video-info p{
      color: var(--text-fent);
      }


      /* <!-- clients review --> */
      .testimonial-section {
        background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .testimonial-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .testimonial-subtitle {
        color: var(--text-blue);
        font-weight: 600;
        font-size: 2.5rem;
        display: inline-block;
        margin: 0 10px;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 30px;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
        color: #555;
        position: relative;
    }
    
    .testimonial-text::before {
        content: "";
        font-size: 60px;
        color: var(--text-fent);
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: -15px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--text-light);
    }
    
    .author-info {
        margin-left: 15px;
    }
    
    .author-name {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark-color);
    }
    
    .author-position {
        font-size: 0.9rem;
        color: var(--text-blue);
        font-weight: 500;
    }
    
    .rating {
        color: #ffc107;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: var(--text-fent);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        bottom: -50px;
    }
    
    .carousel-indicators [data-bs-target] {
        background-color: var(--text-fent);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
    }
    
    .highlight {
        position: relative;
        display: inline-block;
    }
    
    .highlight::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(0, 191, 166, 0.2);  /* Using text-light with opacity */
        z-index: -1;
    }
    
    .badge-custom {
        background-color: var(--text-fent);
        color: white;
        padding: 5px 10px;
        border-radius: 30px;
        font-size: 0.8rem;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    
    /* Additional decorative elements */
    .shape {
        position: absolute;
        opacity: 0.1;
        z-index: 0;
    }
    
    .shape-1 {
        top: 20%;
        left: 5%;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--text-blue);
    }
    
    .shape-2 {
        bottom: 10%;
        right: 8%;
        width: 150px;
        height: 150px;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background-color: var(--text-fent);
    }
    
    @media (max-width: 768px) {
        .testimonial-title {
            font-size: 1.6rem;
        }
        
        .testimonial-subtitle {
            font-size: 1.8rem;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }
        
        .testimonial-card {
            padding: 25px 20px;
            margin: 0 10px;
        }
        
        .testimonial-text {
            font-size: 0.95rem;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
        }
    }


    /* footer section */
    .foot {
      line-height: 1.7;
      margin: 0;
      padding: 0;
      min-height: 9vh;
      display: flex;
      flex-direction: column;
      margin-top: auto;
  }

  .footer {
    background: linear-gradient(135deg, var(--text-dark), var(--text-blue));
      position: relative;
      overflow: hidden;
  }

  .footer::before {
      content: '';
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      height: 50px;
      background: var(--text-dark);
      clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
  }

  .footer-top {
      padding: 80px 0 40px;
  }

  .footer-bottom {
      background-color: rgba(0, 0, 0, 0.1);
      padding: 20px 0;
  }

  .footer-logo {
      margin-bottom: 25px;
      transition: var(--transition);
  }

  .footer-logo img {
      height: 50px;
      transition: var(--transition);
  }

  .footer-logo:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
  }

  .footer-heading {
      color: var(--bg-light);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 25px;
      position: relative;
  }

  .footer-heading::after {

      position: absolute;
      left: 0;
      bottom: -10px;
      width: 40px;
      height: 3px;
      background-color: var(--text-fent);
      transition: var(--transition);
  }

  .footer-col:hover .footer-heading::after {
      width: 60px;
  }

  .footer-text {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 25px;
      line-height: 1.8;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
      position: relative;
      padding-left: 15px;
      display: block;
  }

  .footer-links a::before {

      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      background-color: var(--text-fent);
      border-radius: 50%;
      opacity: 0;
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: var(--text-fent);
      padding-left: 20px;
  }

  .footer-links a:hover::before {
      opacity: 1;
  }

  .footer-contact-info {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .footer-contact-info span{
    font-size: 15px
  }

  .footer-contact-info li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.7);
  }
    .footer-contact-info .icons{
        color:var(--text-fent);
        margin-top: 4px;
        margin-right: 10px;
        font-size: 18px;
        transition: var(--transition);

    }

  .footer-contact-info li:hover .icons {
      transform: scale(1.2);
  }

  .social-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--bg-light);
      font-size: 16px;
      transition: var(--transition);
  }

  .social-links a:hover {
      background-color: var(--text-fent);
      transform: translateY(-5px);
  }

  /* Special hover effects for each social media */
  #facebook:hover {
      background-color: #3b5998;
      box-shadow: 0 0 15px #3b5998;
  }

  #twitter:hover {
      background-color: #1da1f2;
      box-shadow: 0 0 15px #1da1f2;
  }

  #instagram:hover {
      background-color: #e1306c;
      box-shadow: 0 0 15px #e1306c;
  }

  #linkedin:hover {
      background-color: #0077b5;
      box-shadow: 0 0 15px #0077b5;
  }

  .newsletter-form {
      position: relative;
      margin-top: 20px;
  }

  .newsletter-input {
      width: 100%;
      padding: 14px 60px 14px 20px;
      border: none;
      border-radius: 50px;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--bg-light);
      transition: var(--transition);
  }

  .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
  }

  .newsletter-input:focus {
      outline: none;
      background-color: rgba(255, 255, 255, 0.15);
      box-shadow: var(--shadow-md);
  }

  .newsletter-btn {
      position: absolute;
      right: 5px;
      top: 5px;
      background-color: var(--text-fent);
      color: white;
      border: none;
      height: calc(100% - 10px);
      width: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      cursor: pointer;
  }

  .newsletter-btn:hover {
      background-color: var(--text-fent);
      transform: scale(1.05);
  }

  .copyright {
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      margin: 0;
      font-size: 14px;
  }

  .footer-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
      margin: 30px 0;
  }

  .back-to-top {
      position: fixed;
      bottom: 85px;
      right: 30px;
      background-color: var(--text-fent);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: var(--transition);
      z-index: 100;
      cursor: pointer;
  }

  .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      background-color: var(--text-dark);
  }

  .back-to-top:hover {
      background-color: var(--text-fent);
      transform: translateY(-5px);
  }

  /* WhatsApp Button */
  .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: var(--shadow-md);
      z-index: 100;
      cursor: pointer;
      transition: var(--transition);
  }

  .whatsapp-button:hover {
      background-color: #128c7e;
      transform: scale(1.1);
  }

  .whatsapp-button i {
      font-size: 30px;
  }

  .footer-widget {
      animation-duration: 1s;
      animation-fill-mode: both;
      transform: translateY(50px);
      opacity: 0;
  }

  .footer-widget.animated {
      transform: translateY(0);
      opacity: 1;
  }

  /* Animation Classes */
  .fadeInUp {
      animation-name: fadeInUp;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translate3d(0, 50px, 0);
      }

      to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
      }
  }

  .fadeIn {
      animation-name: fadeIn;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* Wave animation */
  .wave-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
  }

  .wave {
      position: relative;
      width: 100%;
      height: 50px;
  }

  .wave svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 50px;
      animation: waveAnimation 15s linear infinite;
  }

  @keyframes waveAnimation {
      0% {
          transform: translateX(0);
      }

      50% {
          transform: translateX(-25%);
      }

      100% {
          transform: translateX(0);
      }
  }

  .wave .shape-fill {
      fill: #ffffff9a;
  }

  /* Pulse animation for social links */
  @keyframes pulse {
      0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
      }

      70% {
          transform: scale(1.1);
          box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
      }

      100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
      }
  }

  .pulse {
      animation: pulse 2s infinite;
  }

  /* Improved mobile styling */
  @media (max-width: 991px) {
      .footer-col {
          margin-bottom: 40px;
      }

      .footer-widget {
          transform: translateY(30px);
      }

      .wave {
          height: 40px;
      }

      .wave svg {
          height: 40px;
      }
  }

  @media (max-width: 767px) {
      .footer-col {
          margin-bottom: 30px;
      }

      .footer-top {
          padding: 60px 0 20px;
      }

      .text-md-end,
      .text-md-right {
          text-align: center;
      }

      .wave {
          height: 30px;
      }

      .wave svg {
          height: 30px;
      }

      .back-to-top {
          width: 40px;
          height: 40px;
          font-size: 16px;
          bottom: 90px;
          right: 30px;
      }

      .social-links {
          justify-content: center;
      }

      .footer-heading {
          text-align: center;
      }

      .footer-heading::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .footer-col:hover .footer-heading::after {
          width: 60px;
          left: 50%;
          transform: translateX(-50%);
      }

      .footer-text {
          text-align: center;
      }
  }

  @media (max-width: 480px) {
      .social-links {
          gap: 8px;
      }

      .social-links a {
          width: 35px;
          height: 35px;
          font-size: 14px;
      }

      .wave {
          height: 25px;
      }

      .wave svg {
          height: 25px;
      }
  }


  /* Mobile Footer Alignment Fixes */
@media (max-width: 767.98px) {
  /* Align all footer columns to start on mobile */
  .footer-col {
    text-align: left;
  }
  
  /* Fix for footer widgets */
  .footer-widget {
    margin-bottom: 30px;
  }
  
  /* Align logo and text to left */
  .footer-logo, .footer-text {
    text-align: left;
  }
  
  /* Fix social links alignment */
  .social-links {
    text-align: left;
    margin-bottom: 20px;
  }
  
  /* Adjust contact info alignment */
  .footer-contact-info li {
    text-align: left;
  }
  
  /* Fix newsletter form */
  .newsletter-form {
    text-align: left;
    margin-bottom: 15px;
  }
  
  /* Fix copyright section */
  .copyright {
    text-align: left !important;
    margin-bottom: 10px;
  }
  
  /* Fix the text-md-end class on mobile */
  .text-md-end {
    text-align: left !important;
  }
  
  /* Add a bit more space between footer sections */
  .footer-top .row > [class^="col-"] {
    margin-bottom: 15px;
  }
}
  .copyright a{
    color: var(--text-fent);
    text-decoration: none;
    font-weight: 600;
  }