/* About Us Page Styles */

/* About Hero Section */
.about-hero{
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  padding:80px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.about-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events:none;
}

.about-hero-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:1;
}

.about-hero-content h1{
  font-size:clamp(2.5rem, 5vw, 4rem);
  font-weight:800;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.about-hero-content h1 i{
  font-size:0.8em;
}

.about-hero-content p{
  font-size:1.2rem;
  max-width:800px;
  margin:0 auto;
  opacity:0.9;
  line-height:1.6;
  color: #fff;
}

/* Our Story Section */
.our-story{
  background:#fff;
  padding:80px 0;
}

.story-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.story-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.story-text h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:30px;
  display:flex;
  align-items:center;
  gap:15px;
}

.story-text h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.story-text p{
  font-size:1.1rem;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:25px;
}

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

.stat-item{
  text-align:center;
  padding:25px;
  background:rgba(46,125,115,0.05);
  border-radius:15px;
  border:1px solid rgba(46,125,115,0.1);
}

.stat-number{
  font-size:2.5rem;
  font-weight:800;
  color:var(--brand);
  margin-bottom:8px;
}

.stat-label{
  font-size:1rem;
  color:var(--text);
  font-weight:600;
}

.story-image{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.story-image img{
  width:100%;
  height:400px;
  object-fit:cover;
}

/* Mission & Values Section */
.mission-values{
  background:linear-gradient(135deg, #f8fbfa 0%, #ffffff 100%);
  padding:80px 0;
}

.mission-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.mission-header{
  text-align:center;
  margin-bottom:60px;
}

.mission-header h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.mission-header h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.mission-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}

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

.value-card{
  background:#fff;
  padding:30px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(46,125,115,0.1);
  transition:all 0.3s ease;
}

.value-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.value-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

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

.value-card h3{
  font-size:1.4rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
}

.value-card p{
  color:var(--muted);
  line-height:1.6;
}


/* Why Choose Us Section */
.why-choose{
  background:linear-gradient(135deg, #f8fbfa 0%, #ffffff 100%);
  padding:80px 0;
}

.why-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.why-header{
  text-align:center;
  margin-bottom:60px;
}

.why-header h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.why-header h2 i{
  color:var(--brand);
  font-size:0.8em;
}

.why-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}

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

.why-card{
  background:#fff;
  padding:30px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(46,125,115,0.1);
  transition:all 0.3s ease;
}

.why-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.why-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.why-icon i{
  font-size:2rem;
  color:#fff;
}

.why-content h3{
  font-size:1.4rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
}

.why-content p{
  color:var(--muted);
  line-height:1.6;
  font-size:0.95rem;
}

/* CTA Section */
.cta-section{
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  padding:80px 0;
  text-align:center;
}

.cta-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.cta-content h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.cta-content h2 i{
  font-size:0.8em;
}

.cta-content p{
  font-size:1.2rem;
  margin-bottom:40px;
  opacity:1;
  color:#fff;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.cta-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.cta-buttons .btn{
  padding:16px 32px;
  font-size:1.1rem;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:all 0.3s ease;
  min-width:180px;
  justify-content:center;
}

.cta-buttons .btn.primary{
  background:#fff;
  color:var(--brand);
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons .btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  background:var(--brand-050);
}

.cta-buttons .btn.secondary{
  background:var(--brand);
  color:#fff;
  border:2px solid var(--brand);
}

.cta-buttons .btn.secondary:hover{
  background:var(--accent);
  border-color:var(--accent);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(46,125,115,0.3);
}

/* About Page Responsive */
@media (max-width: 1024px){
  .story-content{
    grid-template-columns:1fr;
    gap:40px;
  }
  
  .story-stats{
    grid-template-columns:repeat(2, 1fr);
  }
  
  .values-grid,
  .why-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
  }
}

@media (max-width: 768px){
  .about-hero{
    padding:60px 0;
  }
  
  .our-story,
  .mission-values,
  .why-choose,
  .cta-section{
    padding:60px 0;
  }
  
  .story-stats{
    grid-template-columns:1fr;
    gap:20px;
  }
  
  .values-grid,
  .why-grid{
    grid-template-columns:1fr;
    gap:25px;
  }
}

@media (max-width: 480px){
  .about-hero{
    padding:40px 0;
  }
  
  .our-story,
  .mission-values,
  .why-choose,
  .cta-section{
    padding:40px 0;
  }
  
  .story-image img{
    height:250px;
  }
  
  .value-card{
    padding:25px 20px;
  }
  
  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }
  
  .cta-buttons .btn{
    width:100%;
    max-width:300px;
  }
}
