@import url(/assets/theme/theme.css);

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* Blob Background Elements */
.blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(120px);
  z-index: 1;
}

.blob-1 {
  top: -300px;
  right: -300px;
}

.blob-2 {
  bottom: -400px;
  left: -200px;
}

.blob-3 {
  top: 20%;
  right: -300px;
}

.blob-4 {
  bottom: 10%;
  left: -300px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dot-blue, .dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.dot-blue {
  background-color: var(--primary-blue);
}

.dot-orange {
  background-color: var(--orange);
}

/* Section Titles and Text */
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

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

/* About Hero Section */
.about-hero-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgb(193,193,193);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Our Story Section */
.our-story-section {
  padding: 40px 0;
  position: relative;
}

.our-story-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.our-story-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.our-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-years {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.years-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.years-text {
  font-size: 0.85rem;
  text-align: center;
  max-width: 80px;
  margin-top: 5px;
}

.our-story-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.our-story-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgb(193,193,193);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
  overflow: hidden;
}

.mission-vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-box, .vision-box {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  padding: 1.5rem;
}

.mission-icon, .vision-icon {
  width: 100%;
  height: auto;
}

.mission-box h2, .vision-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.mission-box p, .vision-box p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(193,193,193);
}

/* Values Section */
.values-section {
  padding: 40px 0;
  position: relative;
}

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

.value-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  max-width: 100%;
  height: auto;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

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

.team-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

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

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.team-position {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-bio {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-link {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-blue);
}

/* Milestones Section */
.milestones-section {
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.timeline::before {
  content:'';
  position: absolute;
  width: 4px;
  background-color: var(--primary-blue);
  top: 0;
  bottom: 0;
  left: 33px;
  margin-left: 35px;
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  left: 25px;
  top: 5px;
  z-index: 2;
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 5px;
  width: 70px;
  text-align: right;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.timeline-content {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.timeline-content p {
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Numbers Section */
.numbers-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

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

.number-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.number-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.number-label {
  color: var(--gray-400);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
  padding: 40px 0;
  position: relative;
}

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

.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background-color: var(--bg-dark);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.testimonial-quote-mark {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  color: var(--primary-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-content-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-content {
  margin-bottom: 30px;
}

.about-testimonial-content p {
  color: rgb(193,193,193);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  margin-right: 15px;
}

.testimonial-author-info h4 {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author-info p {
  margin: 4px 0 8px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
}

.star {
  color: var(--orange);
  margin-right: 2px;
}

.testimonial-company-logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.testimonial-company-logo img {
  max-height: 100%;
  max-width: 120px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.testimonial-company-logo img:hover {
  opacity: 1;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.testimonial-nav-button {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-button:hover {
  background-color: var(--primary-blue);
  color: white;
}

.testimonial-nav-button svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(193,193,193);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gray-400);
}

/* Icon styles and animation */
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon:before,
.faq-icon:after {
  content: '';
  position: absolute;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.faq-icon:before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-icon:after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

/* When question is active */
.faq-question.active {
  color: var(--white);
}

.faq-question.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question.active .faq-icon:after {
  background-color: var(--gray-400);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* CTA Section */
.about-cta-section {
  padding: 40px 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.about-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-cta-description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Awards and Recognitions Section */
.awards-section {
  padding: 40px 0;
  position: relative;
}

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

.award-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.award-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
}

.award-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.award-presenter {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.award-year {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .about-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .our-story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-vision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-cta-title, 
  .section-title,
  .our-story-text h2,
  .mission-box h2, 
  .vision-box h2 {
    font-size: 2rem;
  }
  
  .values-grid,
  .numbers-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    padding: 30px;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .testimonial-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .testimonial-company-logo {
    align-self: flex-start;
  }
  
  .testimonial-quote-mark {
    font-size: 80px;
    top: -10px;
    left: 15px;
  }
  
  .story-years {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }
  
  .years-number {
    font-size: 2rem;
  }
  
  .timeline {
    padding: 0 1rem;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline::before {
    margin-left: 25px;
  }
  
  .timeline-dot {
    left: 15px;
  }
  
  .timeline-date {
    width: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-description {
    font-size: 1rem;
  }
  
  .section-title,
  .about-cta-title,
  .our-story-text h2,
  .mission-box h2, 
  .vision-box h2 {
    font-size: 1.75rem;
  }
  
  .testimonials-wrapper {
    min-height: 500px;
  }
  
  .testimonial-slide {
    padding: 25px 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-author-image {
    width: 50px;
    height: 50px;
  }
  
  .mission-box, .vision-box {
    padding: 2rem 1.5rem;
  }
  
  .timeline-content {
    padding: 1.25rem 1.5rem;
  }
  
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .number-value {
    font-size: 2.5rem;
  }
  
  .number-label {
    font-size: 1rem;
  }
}