@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



*{
    font-family: sans-serif;
  }
  
  .jumbotron {
    background-color: #f4511e;
    color: #fff;
    padding: 100px 25px;
  }
  .bg-grey {
    background-color: #f6f6f6;
  }
  .container-fluid {
    padding: 60px 50px;
  }
  
  .nav-linkk{
    color: red;
    background: green;
  }
  
  .wish{
    margin-top:40px;
    padding-top:40px;
    padding-bottom:40px;
    background-color: red;
  
  }
  /* .about-section{
    background-color: #e1e7dd;
    padding-top:40px;
  } */
  
  .scrool{
    background-color: #9fe08e;
    padding-top:40px;
  
  }
  .portfolio{
    background-color: #9fe08e;
    padding-top:40px;
  }
  .contact{
    background-color: #9fe08e;
    padding-top:40px;
  }

  /* landing page */
   /* Hero Section */
   .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0078d7, #005bb5);
    color: #fff;
  }

  .hero-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 2.0rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero-content a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #0078d7;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .hero-content a:hover {
    background-color: #005bb5;
    color: #fff;
  }

  .hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
    /* Responsive Design */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }}

  /* about us */
  .about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    background-color: #fff;
  }

  .about-image {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .about-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
  }

  .about-content h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #0078d7;
  }

  .about-content p {
    font-size: 2.0rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078d7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .about-content a:hover {
    background-color: #005bb5;
  }

  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
    }

    .about-image,
    .about-content {
      max-width: 100%;
    }

    .about-content h2 {
      font-size: 3rem;
    }

    .about-content p {
      font-size: 1.5rem;
    }
  }
  /* swipper services */

  .services_testimonial{
    background: #9fe08e;
    padding:10px;
}
.swiper {
  width: 90%;
  max-width: 900px;
  max-height: 300px; 
  margin: 50px auto;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.testimonial {
  text-align: center;
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testimonial p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
.testimonial .name {
  font-weight: bold;
  color: #333;
}
.swiper-pagination-bullet {
  background: #333 !important;
}
@media (max-width: 768px) {
  .swiper {
    width: 95%;
  }
  .testimonial p {
    font-size: 14px;
  }
  .testimonial img {
    width: 60px;
    height: 60px;
  }
}
  /* footer  */
  .footer{
    background-color: #24262b;
      padding: 70px 0;
  }
  .footer-col{
     width: 25%;
     padding: 0 15px;
  }
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 20px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }