/*---------------------------------------
  ABOUT US PAGE STYLES             
-----------------------------------------*/

/* Hero Section with Dark UI */
.about-hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(218, 117, 1, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #ffffff;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .text-primary {
  color: var(--primary-color) !important;
  -webkit-text-fill-color: var(--primary-color) !important;
  background: none !important;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

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

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

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(218, 117, 1, 0.95);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.3);
}

.badge-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.badge-subtext {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Mission & Vision Section */
.mission-section {
  background-color: var(--white-color);
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--p-color);
  margin-bottom: 60px;
  font-weight: 400;
}

.section-description {
  font-size: 1.1rem;
  color: var(--p-color);
  line-height: 1.7;
  margin-bottom: 40px;
}

.mission-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: #f8f9fa;
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0;
}

.vision-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vision-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vision-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: #ffffff;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Expertise Section */
.expertise-section {
  background-color: var(--section-bg-color);
  padding: 100px 0;
}

.expertise-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(218, 117, 1, 0.1);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.expertise-card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.expertise-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.expertise-card p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  font-size: 0.9rem;
  color: var(--p-color);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 20px;
}

.expertise-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.expertise-list li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--white-color);
  padding: 100px 0;
}

.team-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(218, 117, 1, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(218, 117, 1, 0.9), rgba(238, 80, 7, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: #ffffff;
}

.social-link i {
  font-size: 1.2rem;
}

.team-content {
  padding: 30px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.team-position {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-description {
  font-size: 0.95rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0;
}

/* Achievements Section */
.achievements-section {
  background-color: var(--section-bg-color);
  padding: 100px 0;
}

.achievements-content {
  padding-right: 40px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 25px;
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.achievement-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.achievement-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.achievement-content p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cert-item {
  background: var(--white-color);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(218, 117, 1, 0.1);
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.cert-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  /* filter: grayscale(60%); */
  
  filter: brightness(0.6);
  opacity: 0.7;
}

.cert-item:hover .cert-logo {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

.cert-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

/* Values Section */
.values-section {
  background-color: var(--white-color);
  padding: 100px 0;
}

.value-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(218, 117, 1, 0.1);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  font-size: 2rem;
  color: #ffffff;
}

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

.value-card p {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 991px) {
  .about-hero-section {
    padding: 80px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
  }
  
  .hero-image {
    height: 400px;
    margin-top: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .achievements-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-section,
  .expertise-section,
  .team-section,
  .achievements-section,
  .values-section {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .expertise-card,
  .value-card {
    padding: 30px 20px;
  }
  
  .team-content {
    padding: 20px;
  }
  
  .achievement-item {
    padding: 20px;
  }
  
  .cert-item {
    padding: 20px 15px;
  }
  
  .hero-badge {
    top: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  
  .badge-text {
    font-size: 1rem;
  }
  
  .badge-subtext {
    font-size: 0.75rem;
  }
}
