/* ===========================
   ABOUT HERO
=========================== */
.about-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.about-hero .lead {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
}



/* ===========================
   WHO WE ARE SECTION
=========================== */
.about-section {
  padding: 4rem 0;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.about-img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(215,48,44,0.55), transparent);
  pointer-events: none;
}

.about-text {
  color: var(--text);
  line-height: 1.6;
  margin-left: 2rem;
}

.about-list {
  list-style: none;
  padding: 0;
   
}

.about-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .7rem;
  font-weight: 600;
  color: var(--text);

}

.about-list li i {
  color: var(--gold);
}



/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  padding: 4rem 0;
}

.giti-about-card {
  padding: 2rem;
  text-align: center;
  border-radius: 14px;
}

.giti-about-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.giti-about-card h4 {
  font-size: 20px;
  margin-bottom: .8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}



/* ===========================
   MISSION, VISION, VALUES
=========================== */
.mv-section {
  padding: 4rem 0;
}

.mv-card {
  padding: 2rem;
  border-radius: 14px;
}

.mv-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: .7rem;
}

.mv-values {
  list-style: none;
  padding: 0;
}

.mv-values li {
  padding: .2rem 0;
  font-weight: 600;
}


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .about-hero h1 { font-size: 38px; }
  .section-title { 
    font-size: 28px;
align-items: center;
    justify-content: center;
 
}
}

@media (max-width: 576px) {
  .about-hero h1 { font-size: 30px; }
  .giti-about-card { padding: 1.5rem; }
  .mv-card { padding: 1.5rem; }
}




/* ===========================
   TEAM SECTION
=========================== */
.team-section {
  padding: 4rem 0;
}

.team-subtitle {
  max-width: 620px;
  margin: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.team-card {
  text-align: center;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: .3s ease;
   background: var(--glass-bg);
   box-shadow: 2px 8px 24px rgba(0,0,0,.1);
  
}

.team-card:hover {
  transform: translateY(-8px);
}

/* TEAM IMAGE */
.team-img-wrap {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.2);
  border: 3px solid var(--gold);
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAME + ROLE */
.team-name {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}

.team-role {
  font-size: .95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .6rem;
}

.team-desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  min-height: 60px;
}

/* SOCIAL ICONS */
.team-social {
  margin-top: 1rem;
}

.team-social a {
  margin: 0 .3rem;
  font-size: 1.1rem;
  color: var(--text);
  padding: .4rem .5rem;
  border-radius: 6px;
  transition: .25s ease;
}

.team-social a:hover {
  color: var(--gold);
  background: rgba(238,187,87,0.12);
}

/* DARK MODE FIXES */
html.theme-dark .team-card {
  background: rgba(255,255,255,0.04);
}

html.theme-dark .team-role {
  color: var(--gold);
}

/* ===========================
   RESPONSIVENESS
=========================== */
@media (max-width: 991px) {
  .team-section { padding: 3rem 0; }
  .team-img-wrap { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  .team-img-wrap { width: 150px; height: 150px; }
  .team-name { font-size: 1.2rem; }
  .about-list li{
       align-items: center;
    justify-content: center;
  }
  .section-title { 
    font-size: 28px;
align-items: center;
    justify-content: center;
    text-align: center;
 
}
}

@media (max-width: 576px) {
  .team-card { padding: 1.5rem; }
  .team-img-wrap { width: 100px; height: 100px; }
  .team-desc { min-height: auto; }
  .about-list li{
       align-items: center;
    justify-content: center;
  }

  .section-title { 
    font-size: 28px;
align-items: center;
    justify-content: center;
    text-align: center;
 
}
}
