/* Hero Section */
#hero {
    background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), url("../images/hero-bg.jpg") no-repeat
      center center / cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease;
  }
  
  /* About Snippet Section */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-text p {
    margin-bottom: 30px;
  }
  
  .about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }
  
  /* Services Preview Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
  }
  
  .service-icon i {
    font-size: 30px;
    color: var(--primary-color);
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  /* Featured Projects Section */
  .project-slider {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
  }
  
  .slider-container {
    width: 100%;
    overflow: hidden;
  }
  
  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .slide {
    min-width: 100%;
    height: 600px;
    position: relative;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
  }
  
  .slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
  }
  
  .prev-btn,
  .next-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .prev-btn i,
  .next-btn i {
    font-size: 1.2rem;
  }
  
  /* Why Choose Us Section */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .feature {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
  }
  
  .feature:hover {
    transform: translateY(-10px);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  .feature h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  /* Testimonials Section */
  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial-wrapper {
    overflow: hidden;
    height: 300px;
    position: relative;
  }
  
  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .testimonial.active {
    opacity: 1;
    visibility: visible;
  }
  
  .testimonial-text {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 600px;
  }
  
  .testimonial-text i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .testimonial-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .client-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--primary-color);
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 991px) {
    .hero-content h1 {
      font-size: 3rem;
    }
  
    .slide img {
      height: 400px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
    }
  
    .about-image {
      order: -1;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .slide {
      height: 400px;
    }
  
    .prev-btn,
    .next-btn {
      width: 40px;
      height: 40px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .slide {
      height: 300px;
    }
  
    .prev-btn,
    .next-btn {
      width: 35px;
      height: 35px;
    }
  }
  