/* About Page CSS - Comprehensive and Trustworthy Design */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-content {
  text-align: center;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6c63ff;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader h2 {
  font-size: 2.4rem;
  color: #6c63ff;
  font-weight: 700;
}

/* Header */
.about-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.about-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6c63ff;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  padding: 5px 0;
  position: relative;
}

.main-nav a:hover {
  color: #6c63ff;
}

.main-nav a.active {
  color: #6c63ff;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #6c63ff;
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #333;
  margin-left: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  background-color: #6c63ff;
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff6b6b;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 3.6rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
}

.section-header p {
  font-size: 1.8rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.about-hero {
  height: 600px;
  background-image: url("../images/about-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #6c63ff;
}

.hero-content p {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  color: #6c63ff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Trust Badges Section */
.trust-badges-section {
  padding: 0 0 80px;
}

.trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.trust-badge img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.trust-badge span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2c3e50;
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background-color: #fff;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

.story-text h3 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.founder-quote {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #6c63ff;
  margin-top: 30px;
}

.founder-quote p {
  font-size: 1.7rem;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 10px;
}

.founder-quote span {
  font-size: 1.4rem;
  color: #6c63ff;
  font-weight: 600;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #fff;
  font-size: 3rem;
}

.mission-card h3 {
  font-size: 2.4rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.mission-statement {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: #6c63ff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.mission-card p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background-color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2.8rem;
}

.value-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.value-card p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Journey Section */
.journey-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  z-index: 2;
  box-shadow: 0 0 0 5px #fff;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #fff;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
}

.timeline-date {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.timeline-content p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline-image {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}

.timeline-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Recognition Section */
.recognition-section {
  padding: 80px 0;
  background-color: #fff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.award-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-image {
  margin-bottom: 20px;
}

.award-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.award-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.award-content p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 15px;
}

.award-year {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.team-member {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-social {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
}

.member-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c63ff;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: #6c63ff;
  color: #fff;
}

.member-info {
  padding: 30px;
}

.member-info h3 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.member-role {
  font-size: 1.4rem;
  color: #6c63ff;
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.member-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #2c3e50;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #6c63ff;
}

.team-cta {
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.team-cta p {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.testimonials-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
  transition: transform 0.5s ease;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.8rem;
}

.testimonial-content {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f8f9fa;
}

.testimonial-content p {
  font-size: 1.7rem;
  color: #2c3e50;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-content p::before {
  content: '"';
  font-size: 5rem;
  color: rgba(108, 99, 255, 0.2);
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: serif;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.author-info p {
  font-size: 1.4rem;
  color: #666;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #6c63ff;
  color: #6c63ff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background-color: #6c63ff;
  color: #fff;
}

.review-platforms {
  text-align: center;
  margin-top: 40px;
}

.review-platforms p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 20px;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.platform-link:hover {
  transform: translateY(-5px);
}

.platform-link img {
  width: 30px;
  height: 30px;
}

.platform-link span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.partners-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.partner-tab {
  padding: 10px 25px;
  background-color: #fff;
  border: 2px solid #e9ecef;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-tab.active,
.partner-tab:hover {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-color: #6c63ff;
  color: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partners-cta {
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.partners-cta p {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background-color: #fff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.certification-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.certification-card:hover {
  transform: translateY(-10px);
}

.certification-image {
  margin-bottom: 20px;
}

.certification-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.certification-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.certification-content p {
  font-size: 1.4rem;
  color: #666;
}

/* CSR Section */
.csr-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.csr-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.csr-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.csr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.csr-image:hover img {
  transform: scale(1.05);
}

.csr-text h3 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.csr-text p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.csr-initiatives {
  margin-bottom: 30px;
}

.csr-initiative {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.initiative-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  flex-shrink: 0;
}

.initiative-content h4 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.initiative-content p {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #6c63ff;
}

.btn-primary:hover {
  background-color: #f0eeff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #6c63ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #6c63ff;
  transform: translateY(-5px);
}

.footer-column h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #6c63ff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #6c63ff;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
  margin-right: 10px;
  color: #6c63ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: #6c63ff;
}

.payment-methods {
  display: flex;
  gap: 10px;
}

.payment-methods img {
  height: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .story-content,
  .mission-vision-grid,
  .csr-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image,
  .csr-image {
    order: -1;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-dot {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .timeline-item:nth-child(even) .timeline-content::before,
  .timeline-item:nth-child(odd) .timeline-content::before {
    left: -15px;
    border-right: 15px solid #fff;
    border-left: none;
  }

  .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }

  .trust-badge {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .about-header .container {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }

  .main-nav ul {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3.6rem;
  }

  .hero-content p {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .trust-badge {
    flex: 0 0 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }

  .platform-links {
    flex-direction: column;
    gap: 15px;
  }

  .partners-tabs {
    gap: 10px;
  }

  .partner-tab {
    padding: 8px 20px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid,
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-controls {
    margin-top: 20px;
  }

  .prev-testimonial,
  .next-testimonial {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}

/* Animation Classes */
.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}
