/* About Page Styles */

/* Hero Section */
.about-hero {
  padding: 100px 0 80px;
  background: linear-gradient(to bottom, var(--color-fabric-cream), var(--color-background));
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-hero-text h1 span {
  color: var(--color-primary);
}

.about-hero-text .subtitle {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.about-hero-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.about-decoration-1 {
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background-color: rgba(108, 99, 255, 0.1);
}

.about-decoration-2 {
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-color: rgba(108, 99, 255, 0.05);
}

/* Who We Are Section */
.who-we-are {
  padding: 100px 0;
  background-color: var(--color-white);
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}

.who-we-are-image {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-we-are-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.image-decoration {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 2px dashed var(--color-primary);
  border-radius: 12px;
  top: 30px;
  left: -20px;
  z-index: 1;
}

.who-we-are-text {
  padding-left: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-we-are-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.who-we-are-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
}

.who-we-are-text h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
}

.who-we-are-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
}

.mission-box {
  background-color: rgba(108, 99, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.mission-box h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.mission-statement {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-primary);
  padding-left: 15px;
}

.mission-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.mission-box li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.mission-box li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-right: 15px;
}

.mission-box li span {
  flex: 1;
}

/* What We Offer Section */
.what-we-offer {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.offers-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.offer-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(30px);
}

.offer-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.institutes-card.animate {
  transition-delay: 0.1s;
}

.students-card.animate {
  transition-delay: 0.3s;
}

.offer-header {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(108, 99, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon svg {
  color: var(--color-primary);
}

.offer-header h3 {
  font-size: 1.5rem;
  margin: 0;
  flex: 1;
}

.offer-content {
  padding: 30px;
}

.offer-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.offer-content li {
  display: flex;
  margin-bottom: 20px;
}

.offer-content li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-right: 15px;
}

.offer-content li span {
  flex: 1;
  line-height: 1.5;
}

.offer-content .btn {
  width: 100%;
  text-align: center;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-card:nth-child(1).animate {
  transition-delay: 0.1s;
}

.value-card:nth-child(2).animate {
  transition-delay: 0.3s;
}

.value-card:nth-child(3).animate {
  transition-delay: 0.5s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  color: var(--color-primary);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Certificate Verification Section */
.verification-section {
  padding: 100px 0;
  background: linear-gradient(to right, rgba(108, 99, 255, 0.05), rgba(108, 99, 255, 0.02));
}

.verification-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.verification-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.verification-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.verification-text .tagline {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 30px 0;
  border-left: 3px solid var(--color-primary);
  padding-left: 15px;
}

.verification-text .btn {
  margin-top: 15px;
}

.verification-image {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.verification-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.verification-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-hero-content,
  .who-we-are-content,
  .offers-container,
  .values-grid,
  .verification-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-hero-text h1 {
    font-size: 2.8rem;
  }
  
  .who-we-are-text {
    padding-left: 0;
  }
  
  .image-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero,
  .who-we-are,
  .what-we-offer,
  .values-section,
  .verification-section {
    padding: 60px 0;
  }
  
  .about-hero-text h1 {
    font-size: 2.3rem;
  }
  
  .about-hero-text .subtitle {
    font-size: 1.2rem;
  }
  
  .mission-box,
  .offer-header,
  .offer-content {
    padding: 20px;
  }
  
  .offer-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .about-hero-text h1 {
    font-size: 2rem;
  }
  
  .who-we-are-text h2,
  .verification-text h2 {
    font-size: 2rem;
  }
  
  .mission-statement,
  .verification-text .tagline {
    font-size: 1.1rem;
  }
} 