  /* Hero Section */
  .about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    padding: 5rem 0 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .about-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2rem;
  }
  
  .location-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .location-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .location-badges a {
    color:white;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 5rem 0;
    background: var(--white);
  }
  
  .mission-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(71, 159, 248, 0.3);
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .mission-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .mission-card p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
  }
  
  /* Values Section */
  .values-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
  }
  
  .value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
  }
  
  .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
  }
  
  .value-card:hover::before {
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(71, 159, 248, 0.2);
  }
  
  .value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .value-card h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .value-card p {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.05rem;
  }
  
  /* Services Section */
  .services-highlight {
    padding: 5rem 0;
    background: var(--white);
  }
  
  .service-highlight-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
  }
  
  .service-highlight-card:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(71, 159, 248, 0.15);
  }
  
  .service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
  }
  
  .service-highlight-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .service-highlight-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1.1rem;
  }
  
  /* Team Section */
  .team-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
  }
  
  .team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(71, 159, 248, 0.2);
  }
  
  .team-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-placeholder {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .team-content {
    padding: 2.5rem;
  }
  
  .team-name {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .team-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .team-description {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 1.05rem;
  }
  
  /* Why Choose Section */
  .why-choose-section {
    padding: 5rem 0;
    background: var(--white);
  }
  
  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .why-choose-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  
  .why-choose-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(71, 159, 248, 0.1);
  }
  
  .why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--white);
  }
  
  .why-choose-content h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .why-choose-content p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {

    .about-hero h1 {
      font-size: 1.5rem;
      padding: 0px;
    }
    
    .about-hero-subtitle {
      font-size: .9rem;
      padding: 0px;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }

    .team-image {
      height: 300px;
    }
  }