/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/about\ us\ 5.PNG');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .about-hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  }
  
  .about-section {
    padding: 80px 0;
    background: white;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  /* Enhanced Mission & Vision Styles */
  .mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
    perspective: 1000px;
  }
  
  .mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .mv-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
  }
  
  .mv-card:hover {
    transform: rotateY(10deg) translateZ(20px);
    box-shadow: -20px 20px 30px rgba(0,0,0,0.2);
  }
  
  .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
    z-index: -1;
  }
  
  .mv-card:hover::before {
    opacity: 0.1;
  }
  
  .mv-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
  }
  
  .mv-card:hover i {
    transform: scale(1.2) translateZ(30px);
    color: var(--secondary-color);
  }
  
  .mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
  }
  
  .mv-card:hover h3 {
    transform: translateZ(20px);
  }
  
  .mv-card p {
    transition: transform 0.5s ease;
    line-height: 1.6;
  }
  
  .mv-card:hover p {
    transform: translateZ(15px);
  }
  
  /* Core Values */
  .core-values {
    padding: 80px 0;
    background: white;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .value-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: var(--light-gray);
    transition: var(--transition);
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
  }
  
  .value-card:hover i {
    color: white;
  }
  
  .value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
  }
  
  .value-card h3 {
    margin-bottom: 15px;
  }
  
  /* Global Presence */
  .global-presence {
    padding: 80px 0;
    background: var(--light-gray);
  }
  
  .presence-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
  }
  
  .presence-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .presence-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  /* Certifications */
  .certifications {
    padding: 80px 0;
    background: white;
  }
  
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .cert-card {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
  }
  
  .cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .cert-card img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  
  .cert-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .about-grid,
    .mv-grid,
    .presence-content {
      grid-template-columns: 1fr;
    }
  
    .about-hero h1 {
      font-size: 2.5rem;
    }
  
    .about-hero p {
      font-size: 1.2rem;
    }
  
    .presence-stats {
      order: 2;
    }
  
    .presence-map {
      order: 1;
    }
  }

  /* CEO Section */
.ceo-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
  }
  
  .ceo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
  }
  
  .ceo-image {
    position: relative;
    perspective: 1000px;
  }
  
  .ceo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
  }
  
  .ceo-image:hover img {
    transform: rotateY(-10deg) translateZ(20px);
  }
  
  .ceo-social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .ceo-image:hover .ceo-social {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .ceo-social a {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .ceo-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
  }
  
  .ceo-message {
    position: relative;
    width: 200%;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: transform 0.5s ease;
  }
  
  .ceo-message:hover {
    transform: translateX(10px);
  }
  
  .quote-icon {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .ceo-message h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  
  .ceo-message h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  
  .position {
    display: block;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .ceo-message p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .ceo-signature {
    margin-top: 30px;
    text-align: right;
  }
  
  .ceo-signature img {
    max-width: 200px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .ceo-signature:hover img {
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .about-grid,
    .mv-grid,
    .presence-content {
      grid-template-columns: 1fr;
    }
  
    .about-hero h1 {
      font-size: 2.5rem;
    }
  
    .about-hero p {
      font-size: 1.2rem;
    }
  
    .presence-stats {
      order: 2;
    }
  
    .presence-map {
      order: 1;
    }
  
    .ceo-content {
      grid-template-columns: 1fr;
    }
    
    .ceo-image {
      max-width: 300px;
      margin: 0 auto;
    }
    
    .ceo-message {
      padding: 30px;
    }
    
    .quote-icon {
      top: -20px;
      left: 30px;
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  }