



/* About Details Styles */


.about-details{
    width: 100%;
    padding: 0 5%;
    margin-top: 80px;
    /* max-width: 1200px; */
    /* margin: 80px auto; */
    margin-bottom: 60px;
}

.about-text h2{
    font-size: 3rem;
    color: #1d2b2b;
    margin-bottom: 10px;
}

.about-text h3{
    font-size: 1.3rem;
    color: #6d7c7c;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-text p{
    color: #4d5b5b;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Peronal Information */

.personal-info{
    margin-top: 60px;
    text-transform:uppercase;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 80px;
    /* background: #000; */
}

.info-item{
    display: flex;
    gap: 15px;
    /* background-color: red; */
}

.label{
    color: #008080;
    font-weight: 700;
    min-width: 110px;
    text-transform: uppercase;
    font-size: 1.1rem;
    
}

.info-item span:last-child{
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

    .personal-info{
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width:600px){

    .personal-info{
        grid-template-columns: 1fr;
    }

    .info-item{
        flex-direction: column;
        gap: 5px;
    }

}







/* ===========================
        SERVICES SECTION
=========================== */

.services{
    width: 100%;
    height: max-content;
    padding: 0 5%;
    margin: 100px 0;
}

.services-heading{
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2{
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1f2d2d;
}

.services-heading p{
    width: 60%;
    margin: auto;
    line-height: 1.8;
    color: #666;
}

/* My services section */


/* ===========================
        SERVICES GRID
=========================== */





  
/* Testimonials section styles */

.testimonials {
  text-align: center;
  padding: 30px 5%;
  height: 100vh;
  background-color:#fff;
;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  /* color: white; */
}
.testimonials .head-text{
  /* color: white; */

}
.testimonials p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.6;
 
}

.testimonial-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 300px;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  background-color:#FFC72C;
}

.testimonial h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.testimonial span {
  font-size: 0.9rem;
  color: #777;
}

