 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }
 
 body {
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background: #f3f4f6;
      }

      .banner {
      width: 100%;
    height: 450px;
position: relative;
}

.banner img {
   width: 100%;
    height: 450px !important;
    object-fit: cover;
}

.banner::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65));
content: '';
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    z-index: 1;
}

.banner-content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

      /* Services Section */
      .services-section {
        padding: 50px 0px;
        background: linear-gradient(135deg, #fda12b, #00d4ff);
        color: #fff;
        text-align: center;
        position: relative;
      }

      .services-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://via.placeholder.com/1920x1080") center/cover
          no-repeat;
        opacity: 0.1;
        z-index: -1;
      }

      .services-section h2 {
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        animation: fadeIn 1s ease-in-out;
      }

      .services-section p {
        font-size: 17px;
        margin-bottom: 35px;
        font-weight: 500;
        color: #8d92a4;
        animation: fadeIn 1.2s ease-in-out;
      }

      .our-services {
width: 1250px;
margin: 0 auto;
      }

      .paragraph {
        font-size: 17px !important;
        margin-bottom: 35px !important;
        font-weight: 400 !important;
        color: #8d92a4 !important;
        animation: fadeIn 1.2s ease-in-out !important;
        width: 100% !important;
      }

      .our-services p {
        font-size: 18px;
        font-weight: 500;
        color: #000;
        animation: fadeIn 1.2s ease-in-out;
        width: 800px;
        margin: 0 auto;
        padding-bottom: 40px;
      }

       .our-services p span {
         font-size: 20px !important;
        font-weight: 600 !important;
       }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin: 0 auto;
        max-width: 1250px;
      }

      .service-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: transform 0.4s, box-shadow 0.4s;
        cursor: pointer;
      }

      .service-card:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
      }

      .service-icon {
        font-size: 5rem;
        color: #007bff;
        margin-bottom: 25px;
        transition: color 0.4s;
      }

      .service-card:hover .service-icon {
        color: #00d4ff;
      }

      .service-title {
        font-size: 30px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
      }

      .service-description {
        font-size: 17px;
        color: #8d92a4;
        line-height: 1.8;
      }

      @keyframes fadeIn {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Image Section
      .image-section {
  padding: 80px 40px;
  background: #f8f9fa;
  text-align: center;
}

.image-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fda12b;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.image-section p {
  font-size: 1.2rem;
  color: #8d9297;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.image-card .image {
  width: 100%;
  display: block;
  border-radius: 15px;
  height: 300px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: left;
  opacity: 1;
}

.image-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.image-caption p {
  font-size: 1rem;
  line-height: 1.5;
   color: #fda12b;
} */



      @media (max-width: 768px) {
              .banner {
    height: 300px;
}

.banner img {
    height: 300px !important;
}
   .our-services {
    width: 100%;
    padding: 0 20px;
   
   }
   .our-services p {
    width: 100%;
   }
      }
