:root {
    --dark-blue: #4a90e2;
    --black: #000000;
    --white: #ffffff;
    --gray: #757575;
    --light-gray: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  }
  
  body {
    line-height: 1.6;
    background: var(--light-gray);
  }
  
  /* about-header Section */
  .about-header {
      min-height: 300px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .about-header::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/pexels-njeromin-15352968.jpg") center/cover;
    opacity: 0.1;
  }
  
  .about-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  
  .about-header p {
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
  }
  
  /* Main Content */
  .main-content {
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  
  .info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  .section-title {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .section-title i {
    font-size: 2rem;
  }
  
  .value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .value-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .value-icon {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .stat-number {
    font-size: 2.5rem;
    color: var(--dark-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .timeline {
    position: relative;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--dark-blue);
  }
  
  .timeline-item {
    margin-bottom: 2rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
  
  .timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .about-header h1 {
      font-size: 2rem;
    }
  
    .timeline::before {
      left: 0;
    }
  
    .timeline-item {
      width: 100%;
      left: 0 !important;
      text-align: left !important;
      padding: 0 0 0 2rem;
    }
  }
  
 /* Contact Sidebar Styles */
 .contact-sidebar {
    position: fixed;
    top: 35%;
    right:  0;
    display: flex;
    flex-direction: column;
    background-color: #1c272f;
    padding: 10px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    
  }
  
  .contact-sidebar a {
    color: #e8f3eb;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(47, 28, 116, 0.1);
  }
  
  .contact-sidebar a i {
    font-size: 20px;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .contact-sidebar a span {
    display: inline-block;
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .contact-sidebar a:hover {
    background-color: #787896;
    color: #fff;
  }
  
  .contact-sidebar a:hover i {
    transform: scale(1.2);
    color: #9addbb;
  }
  
  .contact-sidebar a:hover span {
    opacity: 1;
    width: auto;
    margin-left: 8px;
  } .social-icons {
display: flex;
justify-content: center;
gap: 20px; /* Space between the icons */
margin-top: 20px; /* Add space above the icons */
}
.value-image {
width: 100px; /* Adjust the size */
height: 100px; /* Adjust the size */
border-radius: 50%; /* Make the image round */
object-fit: cover; /* Ensure the image fills the area */
margin-bottom: 15px; /* Add space between image and text */
}
.partner-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
align-items: center;
}

.partner-card {
text-align: center;
max-width: 150px;
}

.partner-logo {
width: 100px;
height: auto;
object-fit: contain;
margin-bottom: 10px;
}
.honor-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
align-items: stretch;
}

.honor-card {
max-width: 250px;
text-align: center;
border: 1px solid #ddd;
padding: 15px;
border-radius: 10px;
background-color: #f9f9f9;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.honor-image {
width: 80px;
height: 80px;
object-fit: contain;
margin-bottom: 10px;
}
.company-culture-section {
padding: 40px 20px;
background-color: #f8f9fa;
}

.culture-container {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
gap: 30px;
}

.culture-image {
flex: 1 1 40%;
}

.culture-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.culture-content {
flex: 1 1 55%;
}

.section-title {
font-size: 28px;
color: #1c272f;
margin-bottom: 20px;
}

.culture-content ul {
list-style-type: none;
padding: 0;
}

.culture-content li {
margin-bottom: 12px;
font-size: 16px;
line-height: 1.6;
}

.culture-content button {
margin-top: 15px;
padding: 10px 20px;
background-color: #1c272f;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
}

.culture-content button:hover {
background-color: #788a96;
}

/* Responsive Design */
@media (max-width: 768px) {
.culture-container {
flex-direction: column;
}
}
.value-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 30px;
}

.value-card {
background-color: #fff;
border-radius: 12px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.value-image {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 10px;
}

.value-icon {
font-size: 22px;
color: #1c272f;
margin-bottom: 10px;
}

.value-card h3 {
margin-bottom: 10px;
font-size: 18px;
color: #1c272f;
}

.value-card p {
font-size: 15px;
color: #555;
line-height: 1.5;
}
