main{
    margin: 105px 0;
}


.ABOUT-US{
    text-align: center;
    padding: 50px;
    font-size: 2rem;
}

body{
  line-height: 1.6;
}

/*---------------------------------------*\
               hero 
\*-------------------------------------- */

section.about-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .about {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    align-items: center;
  }
  
  .about .content {
    flex: 1;
    padding: 40px;
  }
  
  .about .content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .about .content b {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.493);
  }
  
  .about .content p {
    font-size: 1rem;
    color: #333;
  }
  
  .about .side-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 166, 255, 0.02);
    border-radius: 16px;
  }
  
  .about .side-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: auto;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .about {
      flex-wrap: wrap-reverse;
    }
  
    .about .content,
    .about .side-img {
      flex: 100%;
      padding: 10px;
    }
  
    .about .side-img img {
      width: 100%;
      height: auto;
    }
  }
  
/*---------------------------------------*\
               Why choose Us ?
\*-------------------------------------- */
  .testimonals {
    margin: 80px 0;
    padding: 0 20%;
}

.testimonals .title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    margin-bottom: 10px;
}

.testimonals h3 {
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    font-weight: 200;
    color: rgba(0, 0, 0, 0.66);
    
}

.clients {
    margin-top:40px ;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.clients .card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.clients .card p{
    margin: 20px 0;
    line-height: 1.5;
}

.clients .card .client-info {
   
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonals{
        padding: 0 20px;
    }
    .clients {
        grid-template-columns: 1fr;
    }
}


/*---------------------------------------*\
               Why choose Us ?
\*-------------------------------------- */
.why-choose{
    margin: 100px 0;
}
.why-choose .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(34, 34, 34, 0.192);
    border: 1px solid #33333333;
  }

  .why-choose .container h2{
    font-size: 2rem;
  }
  

  
  .choose-list li {
    background-color: #fff;
    border-radius: 8px;
    list-style-type:disc;
    box-sizing: border-box;
  }


  
  .choose-list b {
    font-size: 1.2rem;
    color: #333;
  }
  
  .choose-list p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
  }


/*---------------------------------------*\
               Blog
\*-------------------------------------- */
.blog{
    margin-top: 100px;
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
  }
  
  .blog-cards .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s ease-in-out;
  }
  
  .blog-cards .card:hover {
    transform: translateY(-5px);
  }
  
  .blog-cards .card a {
    text-decoration: none;
    color: inherit;
  }
  
  .blog-cards .card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .blog-cards .card h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .blog-cards .card p {
    font-size: 1rem;
    color: #666;
  }

  h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }