body {
    font-family: 'Poppins', sans-serif;
  }
  
.containerabout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logoabout {
    height: 60px;
    width: 200px;
    margin: 10px 20px 10px 0;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0px 0;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    /* min-width: 300px; */
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .about-image img {
    max-width: 100%;
    height: auto;
} */

.about-image img {
    /* max-width: 100%; */
    height: auto;
    width: 600px;
}

h1 {
    color: #2d3e50;
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    color: #2d3e50;
    font-size: 26px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: inherit;
        /* padding: 20px 15px; */
        text-align: start;
      }
    
      .about-content {
        max-width: 100%;
        margin-left: -10px;
      }
    
      .about-content h1 {
        font-size: 28px;
      }
    
      .about-content h2 {
        font-size: 20px;
      }
    
      .about-content p {
        font-size: 15px;
        text-align: justify;
      }
    
      .about-image {
        margin-top: 20px;
        justify-content: center;
      }
    
      .about-image img {
        width: 100%;
        max-width: 330px;
      }
    
      .logo-bar {
        gap: 15px;
        padding: 20px 10px;
        margin-top: 30px;
        margin-bottom: -50px;
      }
    
      .logo-bar img {
        height: 50px;
      }
}

.mission-section {
    background-color: #fdf0ed;
    margin-top: -35px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.mission-illustration {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.mission-illustration img {
    max-width: 100%;
    height: auto;
}

.mission-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.mission-content h2 {
    color: #1e3a5f;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mission-section {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-illustration {
        order: -1; /* Places illustration above text on mobile */
    }
}

.vision-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vision-content {
    flex: 1;
    padding-right: 20px;
}

.vision-image {
    flex: 1;
    text-align: center;
}

.vision-image img {
    max-width: 100%;
    height: auto;
}

.vision-content h2 {
    color: #2b3674;
    font-size: 32px;
    margin-bottom: 20px;
}

.vision-quote {
   
   
    padding-left: 15px;
    margin-bottom: 30px;
    
}

.vision-point {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.vision-icon {
    color: #f76540;
    font-size: 24px;
    margin-right: 15px;
    min-width: 24px;
}

.vision-text {
    flex: 1;
}

@media (max-width: 768px) {
    .vision-section {
        flex-direction: column;
    }
    
    .vision-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.testimonial-section {
    max-width: 1200px;
    margin: -20px auto;
    padding: 1px;
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #ee7142;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #213670;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0;
    position: relative;
    margin-bottom: 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #ee7142;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.testimonial-text {
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
} 

.divider {
    width: 80%;
    height: 3px;
    background-color: #ee7142;
    margin: 10px auto 20px;
}

.client-name {
    font-weight: bold;
    font-size: 20px;
    color: #222;
    margin-bottom: 8px;
}

.client-position {
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 5px;
}

.client-location {
    font-size: 16px;
    color: #333;
}

.view-all-btn {
    background-color: #ee7142;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #d65a2f;
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;

    }

    .testimonial-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Subscribe Section Styles */
.subscribe-section {
    background-color: #faf6f0;
    padding: 40px 20px;
}

.subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.form-groupsub {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.form-groupsub input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.form-groupsub input:focus {
    border-color: #e86333;
}

.mobile-input {
    display: flex;
    align-items: center;
    position: relative;
}

.country-code {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: white;
    padding: 4px;
}

.country-code img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    color: #999;
    margin-left: 2px;
}

.mobile-input input {
    padding-left: 60px;
}

.subscribe-btn {
    padding: 15px 40px;
    background-color: #e86333;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background-color: #d55425;
}