

/*----slider code------*/
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9
}

.slider-wrapper {
  position: relative;
  overflow: hidden
}

.slider-container {
  width: 100%;
  height: 550px
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-size: cover;
  background-position: center
}

.swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.slider-content {
  position: relative;
  z-index: 2;
  background: rgb(0 0 0 / .6);
  color: #fff;
  padding: 60px;
  max-width: 1200px;
  text-align: left;
  border-radius: 10px
}

.slider-title {
  font-size: 36px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700
}

.slider-description {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8
}

.slider-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease
}

.slider-btn:hover {
  background: #0056b3
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgb(0 0 0 / .5);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #007bff
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: .7
}

.swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1
}

/*services container*/

#services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 30px;
  background: #f9f9f9
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgb(0 0 0 / .1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  padding: 20px
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgb(0 0 0 / .2)
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s
}

.service-card:hover .service-title {
  color: #007bff
}

.service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px
}

.service-btn a {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s
}

.service-btn a:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: scale(1.1)
}

@media (max-width:768px) {
  #services-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
  }
}

.service-card {
  opacity: 0;
  transform: scale(.9);
  animation: cardFadeIn 0.7s ease-in-out forwards
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(.9)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/*---footer css-----?*/

    .footer {
        background: #808;
        color: #fff;
        padding: 20px 0;
        font-family: Arial, sans-serif;
    }

    .footer .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 10px;
    }

    .footer-contact,
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 10px 0 0;
    }

    .footer-contact li,
    .footer-menu li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-contact li i {
        margin-right: 10px;
    }

    .footer-menu a {
        color: #fff;
        text-decoration: none;
    }

    .footer-menu a:hover {
        text-decoration: underline;
    }

    .footer-form {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .footer-form input {
        flex: 1;
        padding: 8px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
    }

    .footer-form button {
        padding: 8px 16px;
        border: none;
        background-color: #ff7f00;
        color: #fff;
        font-size: 14px;
        border-radius: 4px;
        cursor: pointer;
    }

    .footer-form button:hover {
        background-color: #e66c00;
    }

    .footer-social {
        margin-top: 10px;
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .footer-social a:hover {
        color: #ff7f00;
    }

    .footer-bottom {
        margin-top: 20px;
        text-align: center;
        font-size: 12px;
    }

    .footer-bottom a {
        color: #ff7f00;
        text-decoration: none;
    }

    .footer-bottom a:hover {
        text-decoration: underline;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 40px;
        }

        .footer-col {
            flex: 1 1 100%;
            min-width: unset;
        }

        .footer-form {
            flex-direction: column;
            gap: 10px;
        }

        .footer-form input,
        .footer-form button {
            width: 100%;
        }
    }