:root {
  --primary-blue: #014379;
  --secondary-blue: #0077b6;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(1, 67, 121, 0.85), rgba(1, 67, 121, 0.85)),
    url("/assets/images/about-us.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.about-hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.about-hero p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
  padding: 100px 0;
  background-color: white;
}

.welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.welcome-icon {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.welcome-icon img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.welcome-icon h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
}

.welcome-content {
  flex: 2;
  min-width: 300px;
  padding: 0 20px;
}

.welcome-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.welcome-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.mission-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 3.5rem;
  }

  .about-hero p {
    font-size: 1.3rem;
  }

  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 80vh;
  }

  .about-hero h1 {
    font-size: 2.8rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .welcome-icon img {
    max-width: 150px;
  }

  .welcome-icon h2 {
    font-size: 2rem;
  }

  .welcome-content h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .welcome-section,
  .mission-section {
    padding: 60px 0;
  }

  .welcome-icon h2 {
    font-size: 1.8rem;
  }

  .welcome-content h3 {
    font-size: 1.5rem;
  }

  .mission-section h2 {
    font-size: 2rem;
  }
}


/* Enhanced Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.welcome-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(1, 67, 121, 0.1);
}

.visual-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(1, 67, 121, 0.3);
}

.years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.welcome-content {
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.welcome-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    margin-bottom: 30px;
    font-weight: 500;
}

.content-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.content-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.text-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.main-image{
  width: 350px;

}


.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    color: white !important;
}
.white{
   color: white !important
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.mission-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.mission-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.highlight-item span {
    color: #555;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 67, 121, 0.3);
}

.mission-visual {
    position: relative;
}

.image-collage {
    position: relative;
    height: 400px;
}

.collage-main {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collage-overlay {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-content-wrapper,
    .mission-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .welcome-content h2 {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-collage {
        height: 300px;
    }
}