/* Global Styles */
:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #a855f7;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background-color: #ffffff;
  --light-background: #f9fafb;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  /* color: var(--light-text); */
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
header {
  background-color: var(--background-color);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  display: flex;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.slide-content {
  flex: 1;
  max-width: 600px;
  color: white;
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slide-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.slide-content .highlight {
  color: #ffd700;
  position: relative;
  display: inline-block;
}

.slide-content .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(255, 215, 0, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 90%;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.slide-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.slide-buttons .btn i {
  transition: transform 0.3s ease;
}

.slide-buttons .btn:hover i {
  transform: translateX(5px);
}

.slide-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.2rem;
  color: white;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 1rem;
  margin: 0;
  color: white;
}

.feature-text p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

.slide-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.image-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(40px);
  animation: morphShape 10s linear infinite;
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-carousel {
    height: auto;
    min-height: 100vh;
  }

  .carousel-slide {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .carousel-controls {
    bottom: 1rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 20px;
  }

  .slide-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .slide-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .feature {
    text-align: left;
  }

  .image-shape {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 300px;
  }

  .banner-content {
    padding: 1rem;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .slide-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Quick Links Section */
.quick-links {
  padding: 3rem 0;
  background: var(--light-background);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  border-radius: 2rem 2rem 0 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.quick-link-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quick-link-card i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.quick-link-card:hover i {
  transform: scale(1.1);
}

.quick-link-card span {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 2rem;
  }

  .hero-carousel {
    height: auto;
  }

  .carousel-slide {
    position: relative;
    flex-direction: column;
    padding: 1rem;
    opacity: 1;
  }

  .hero-content {
    text-align: center;
    padding: 1rem;
  }

  .hero-image {
    padding: 1rem;
  }

  .hero-image img {
    max-width: 80%;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .service-card img {
    width: 120px;
    height: 120px;
  }

  .carousel-prev,
  .carousel-next {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 300px;
  }

  .banner-content {
    padding: 1rem;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background-color: var(--light-background);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

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

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--light-text);
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 200px;
}

/* Stats Section */
.stats {
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  z-index: 0;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.stat-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Section Styles */
.about-section {
  padding: 8rem 2rem;
  background: var(--light-background);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  border-radius: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 3rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.about-feature-card:hover .icon-box {
  background: var(--primary-color);
}

.icon-box i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.about-feature-card:hover .icon-box i {
  color: white;
}

.about-feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-feature-card p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: var(--light-text);
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white"/></svg>')
    repeat;
  opacity: 0.05;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.icon-circle i {
  font-size: 2rem;
  color: white;
}

.card-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.mission-points,
.vision-points {
  list-style: none;
  padding: 0;
}

.mission-points li,
.vision-points li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mission-points i,
.vision-points i {
  color: #4ade80;
}

.card-shape {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: translateY(-50%);
  z-index: -1;
  animation: morphShape 10s linear infinite;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value-card i {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

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

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-section {
    padding: 4rem 1rem;
  }

  .mission-vision {
    padding: 4rem 1rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  .card-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background-color: var(--light-background);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e5e7eb"/></svg>')
    repeat;
  opacity: 0.1;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--background-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.info-item:hover i {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.info-item p {
  margin: 0;
  color: var(--text-color);
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background-color: var(--background-color);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--light-background);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-color) 0%, #111827 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

/*footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white"/></svg>')
    repeat;
  opacity: 0.05;
}*/

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-logo p {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.link-group h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.link-group h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.link-group a {
  display: block;
  color: var(--light-text);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.link-group a:hover {
  color: white;
  transform: translateX(5px);
}

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

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

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

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    /*grid-template-columns: 1fr;*/
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .link-group h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.action-card {
  background-color: var(--background-color);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.action-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 0.75rem;
  transition: var(--transition);
}

.action-card:hover i {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.action-card span {
  font-weight: 500;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .quick-actions {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto;
  }

  .action-card {
    padding: 1rem;
  }

  .action-card i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
  }

  nav {
    padding: 0.5rem 1rem;
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease-in-out;
    z-index: 998;
  }

  .nav-links.active {
    left: 0;
  }

  .auth-buttons {
    position: fixed;
    bottom: 10%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .auth-buttons.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
    position: relative;
  }

  .mobile-menu-btn i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
  }

  .mobile-menu-btn.active i {
    color: var(--primary-color);
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.1);
  }

  .auth-buttons .btn {
    width: 80%;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Overlay styles */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 997;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Adjust logo size for mobile */
  .logo img {
    height: 30px;
  }

  /* Hero section adjustment for mobile */
  .hero {
    padding-top: 60px;
  }
}

/* Additional mobile-specific adjustments */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
  }

  .auth-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 2rem;
  background: var(--light-background);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  padding: 4px;
  background: white;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-author h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
}

.testimonial-author p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin: 0;
}

/* Star Rating */
.rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Testimonial Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 1rem;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-image {
    width: 80px;
    height: 80px;
  }

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

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }
}

/* FAQ Section */
.faq {
  padding: 8rem 2rem;
  background: var(--light-background);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-color);
  padding-right: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer p {
  animation: slideDown 0.3s ease-out forwards;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 1rem;
  }

  .faq h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    margin: 0 0.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}
