/* Modern About Us Page Styling */

.about-page {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c3e50;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Text */
h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #009990 0%, #074799 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  width: 100%;
}

.about-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-text {
  max-width: 100%;
  flex: 1;
  text-align: left;
  color: rgb(216, 216, 216);
  z-index: 2;
  padding-right: 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: slideInUp 0.8s ease;
}

.hero-text span {
  background: linear-gradient(45deg, #e1ffbb, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Passion One', cursive;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.9;
  animation: slideInUp 0.8s ease 0.2s both;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: slideInUp 0.8s ease 0.4s both;
}

.stat {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #e1ffbb;
}

.stat p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-img {
  position: relative;
  animation: zoomIn 0.8s ease 0.3s both;
  flex: 0 0 auto;
  max-width: 400px;
  width: 100%;
  z-index: 2;
}

.hero-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-3deg);
}

/* Mission Section */
.mission-section {
  padding: 60px 0;
  background: #f8fffe;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mission-text h2 {
  font-size: 2rem;
  color: #074799;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.mission-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature h4 {
  color: #074799;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  color: #666;
  font-size: 0.9rem;
}

.mission-img{
    justify-items: center;
}

.mission-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Vision Section */
.vision-section {
  padding: 60px 0;
  background: white;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vision-text h2 {
  font-size: 2rem;
  color: #009990;
  margin-bottom: 20px;
  font-weight: 700;
}

.vision-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.vision-goals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.goal {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fffe;
  border-radius: 12px;
  border-left: 4px solid #009990;
}

.goal-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #009990;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 153, 144, 0.2);
}

.goal-content h4 {
  color: #074799;
  margin-bottom: 5px;
  font-weight: 600;
}

.goal-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.vision-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f7f5 100%);
}

.values-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #074799;
  margin-bottom: 40px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.value-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(225, 255, 187, 0.3);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  color: #074799;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.2rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Global Presence Section */
.global-presence-section {
  padding: 60px 0;
  background: white;
}

.global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.global-text h2 {
  font-size: 2rem;
  color: #074799;
  margin-bottom: 20px;
  font-weight: 700;
}

.global-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.global-stat {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #009990, #074799);
  color: white;
  border-radius: 12px;
}

.global-stat h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.global-stat p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.global-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Founder Section */
.founder-section {
  padding: 60px 0;
  background: #f8fffe;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.founder-text h2 {
  font-size: 2rem;
  color: #074799;
  margin-bottom: 20px;
  font-weight: 700;
}

.founder-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.founder-quote {
  padding: 25px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #009990;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.founder-quote blockquote {
  font-style: italic;
  font-size: 1rem;
  color: #074799;
  margin: 0;
  font-weight: 500;
}

.founder-img{
    justify-items: center;
    
   
}

.founder-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  
  .about-hero .hero-container {
    max-width: 1300px;
    padding: 0 40px;
  }
  
  .about-hero {
    padding: 80px 0;
  }
  
  .hero-text h1 {
    font-size: 3.2rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 50px 0;
    min-height: auto;
  }
  
  .about-hero .hero-container {
    padding: 0 20px;
    gap: 30px;
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-img {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .container {
    padding: 0 25px;
  }
  
  .mission-content,
  .vision-content,
  .global-content,
  .founder-content {
    gap: 30px;
  }
  
  .hero-text h1 {
    font-size: 2.4rem;
  }
  
  .mission-features {
    gap: 15px;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .about-hero {
    padding: 45px 0;
  }
  
  .about-hero .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    gap: 25px;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-img {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .hero-text h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 40px 0;
    min-height: auto;
  }
  
  .about-hero .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
    gap: 25px;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
  }
  
  .hero-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-content,
  .mission-content,
  .vision-content,
  .global-content,
  .founder-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision-content {
    grid-template-areas: 
      "text"
      "image";
  }
  
  .vision-img { 
    grid-area: text;
    text-align: center;
  }
  .vision-text { 
    grid-area: image; 
  }

   .hero-img, .mission-img ,.founder-img  {
    order: -1;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-text p[style*="font-size: 1.3rem"] {
    font-size: 1.15rem !important;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mission-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .global-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-hero,
  .mission-section,
  .vision-section,
  .values-section,
  .global-presence-section,
  .founder-section {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }
  
  .mission-text h2,
  .vision-text h2,
  .global-text h2,
  .founder-text h2,
  .values-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .mission-img,
  .vision-img,
  .global-img,
  .founder-img {
    text-align: center;
  }
  
  .mission-img img,
  .vision-img img,
  .global-img img,
  .founder-img img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 30px 0;
  }
  
  .about-hero .hero-container {
    padding: 0 15px;
    gap: 20px;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-img {
    max-width: 250px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .hero-text p[style*="font-size: 1.3rem"] {
    font-size: 1.1rem !important;
  }
  
  .mission-text h2,
  .vision-text h2,
  .global-text h2,
  .founder-text h2,
  .values-section h2 {
    font-size: 1.6rem;
  }
  
  .stat h3 {
    font-size: 1.5rem;
  }
  
  .value-card {
    padding: 20px 15px;
  }
  
  .value-card h3 {
    font-size: 1.1rem;
  }
  
  .feature {
    padding: 15px;
  }
  
  .goal {
    padding: 12px;
    gap: 12px;
  }
  
  .goal-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about-hero,
  .mission-section,
  .vision-section,
  .values-section,
  .global-presence-section,
  .founder-section {
    padding: 30px 0;
  }

 

  

  
}

@media (max-width: 360px) {
  .about-hero {
    padding: 25px 0;
  }
  
  .about-hero .hero-container {
    padding: 0 10px;
  }
  
  .hero-img {
    max-width: 220px;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.1;
  }
  
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .hero-text p[style*="font-size: 1.3rem"] {
    font-size: 1rem !important;
  }
  
  .mission-text h2,
  .vision-text h2,
  .global-text h2,
  .founder-text h2,
  .values-section h2 {
    font-size: 1.4rem;
  }
  
  .hero-text p {
    font-size: 0.95rem;
  }
  
  .container {
    padding: 0 10px;
  }
}
