/* About Page Styles */
:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #818cf8;
  --secondary-color: #10b981;
  --dark-color: #1f2937;
  --light-color: #f9fafb;
  --gray-color: #6b7280;
  --light-gray: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  background: linear-gradient(90deg, #ff5252, #6c63ff);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  background: linear-gradient(90deg, #ff5252, #6c63ff);
  color: #fff;
  padding: 9rem 1rem 7rem;
  position: relative;
  overflow: hidden;
  height: 50vh;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pattern.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.page-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero-content p {
  font-size: 1.35rem;
  font-weight: 400;
  opacity: 0.95;
  color: #f0f0f0;
  margin-bottom: 1rem;
}


@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 1rem 5rem;
  }

  .page-hero-content h1 {
    font-size: 2.25rem;
  }

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


/* About Story Section */
.about-story {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.about-image img:hover {
  transform: translateY(-5px);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-color);
}

/* Why We Exist Section */
.about-lis {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-lis li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: #333;
  background: #fff;
  padding: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.about-lis li:hover {
  background-color: #f9f9f9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-lis li i {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-why-image {
  order: 1;
}

.about-why-image img {
  width: 100%;
  height:auto;
  margin-top: 74px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.about-why-image img:hover {
  transform: translateY(-5px);
}

.about-why-content {
  padding: 2rem;
}

.about-why-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.about-why-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  background: linear-gradient(90deg, #ff5252, #6c63ff);
  border-radius: 2px;
}

.about-why-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-color);
}

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

.about-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.about-list li:hover {
  background-color: #f9f9f9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-list li i {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* What Sets Us Apart Section */
.about-unique {
  padding: 5rem 0;
}

.about-unique-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-unique-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--gray-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--gray-color);
}

/* Our Promise Section - Updated */
.about-promise {
padding: 0 0 1rem 0;
}

.about-promise .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.about-promise-image img {
width: 100%;
margin-top: 6.5rem;
height: auto;
border-radius: 10px;
box-shadow: var(--box-shadow);
transition: var(--transition);
}

.about-promise-image img:hover {
transform: translateY(-5px);
}

.about-promise-content {
padding: 2rem;
}

.about-promise-content h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
color: var(--dark-color);
position: relative;
padding-bottom: 1rem;
}

.about-promise-content h2::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 4px;
background: var(--primary-color);
background: linear-gradient(90deg, #ff5252, #6c63ff);
border-radius: 2px;
}

.about-promise-content p {
margin-bottom: 1.5rem;
font-size: 1.05rem;
color: var(--gray-color);
}
.final-promise-wrapper {
display: flex;
justify-content: center;
align-items: center;
width:100%;
margin-bottom: 0rem;
}

.final-promise-text {
text-align: center;
max-width: 700px;
font-size: 1.2rem;
line-height: 1.6;
color: var(--gray-color);
}

/* Enhanced Team Section */
.team {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 27px 1px #808080c7;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(79, 70, 229, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-image-container:hover .team-overlay {
  opacity: 1;
}

.team-image-container:hover .team-image {
  transform: scale(1.1);
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--dark-color);
  color: white;
  transform: translateY(-5px);
}

.team-member h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.3rem;
  padding: 0 1.5rem;
}

.team-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  padding: 0 1.5rem;
}

.team-bio {
  color: var(--gray-color);
  font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  background: linear-gradient(90deg, #ff5252, #6c63ff);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--light-gray);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-about {
  max-width: 350px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  background: linear-gradient(90deg, #ff5252, #6c63ff);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact p i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 11rem;
}

.footer-bottom p {
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.2rem;
  }

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

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 6rem 0 4rem;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .about-why .container,
  .about-promise .container {
    grid-template-columns: 1fr;
  }
  
  .about-why-image,
  .about-promise-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-why-content h2,
  .about-promise-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .about-why,
  .about-promise {
    padding: 3rem 0;
  }
  
  .about-why-content h2,
  .about-promise-content h2 {
    font-size: 1.8rem;
  }
  .footer-bottom{

    margin: 0;
  }
}
  
