/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e64a2e;
  --yellow: #f7b731;
  --teal: #44c0b6;
  --navy: #2e5c89;
  --light: #f9f9f9;
  --dark: #333333;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Font sizes */
  --fs-xs: 0.75rem;   /* 12px */
  --fs-sm: 0.875rem;  /* 14px */
  --fs-base: 1rem;    /* 16px */
  --fs-lg: 1.125rem;  /* 18px */
  --fs-xl: 1.25rem;   /* 20px */
  --fs-2xl: 1.5rem;   /* 24px */
  --fs-3xl: 1.875rem; /* 30px */
  --fs-4xl: 2.25rem;  /* 36px */
  --fs-5xl: 3rem;     /* 48px */
  --fs-6xl: 3.75rem;  /* 60px */
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--fs-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

p {
  font-size: var(--fs-base);
  margin-bottom: 1em;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-link {
  margin: 0 15px;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  width: 100%;
}

.btn-enroll {
  background-color: var(--red);
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-enroll::after {
  display: none;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Unique Home Hero Section */
.home-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
}

.home-hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.home-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.home-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7) contrast(1.1);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  transform: scale(1.05);
  transition: all 12s ease-out;
}

.home-hero-slide.active .home-hero-image {
  transform: scale(1);
}

.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(230, 74, 46, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, rgba(68, 192, 182, 0.1) 0%, transparent 70%);
  background-blend-mode: overlay;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.home-hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: white;
  z-index: 10;
  width: 50%;
  max-width: 600px;
  padding: 0;
}

.home-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.home-hero-content h1::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
}

.home-hero-content h1 span {
  color: var(--yellow);
  display: block;
  margin-top: 10px;
  position: relative;
}

.home-hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 80%;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.home-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(5px);
}

.home-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.home-hero-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.4s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.home-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.home-hero-btn:hover::before {
  left: 100%;
}

.home-hero-btn-primary {
  background-color: var(--red);
  color: white;
  border: 2px solid var(--red);
  box-shadow: 0 5px 15px rgba(230, 74, 46, 0.3);
}

.home-hero-btn-primary:hover {
  background-color: transparent;
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 74, 46, 0.4);
}

.home-hero-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--teal);
  box-shadow: 0 5px 15px rgba(68, 192, 182, 0.2);
}

.home-hero-btn-secondary:hover {
  background-color: var(--teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(68, 192, 182, 0.3);
}

/* Geometric shapes */
.home-hero-geometrics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.home-hero-geometric {
  position: absolute;
  border: 2px solid;
  animation: homeHeroGeometricFloat 20s infinite ease-in-out;
  opacity: 1.55;
}

.home-hero-geometric-1 {
  top: 15%;
  right: 15%;
  width: 80px;
  height: 80px;
  border-color: var(--yellow);
  border-radius: 50%;
  animation-delay: 0s;
}

.home-hero-geometric-2 {
  top: 65%;
  right: 25%;
  width: 60px;
  height: 60px;
  border-color: var(--red);
  transform: rotate(45deg);
  animation-delay: 5s;
}

.home-hero-geometric-3 {
  top: 30%;
  right: 5%;
  width: 100px;
  height: 100px;
  border-color: var(--teal);
  border-radius: 50% 0 50% 50%;
  animation-delay: 10s;
}

.home-hero-geometric-4 {
  bottom: 20%;
  left: 10%;
  width: 70px;
  height: 70px;
  border-color: var(--yellow);
  transform: rotate(30deg);
  animation-delay: 7s;
}

.home-hero-geometric-5 {
  top: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  border-color: var(--red);
  border-radius: 20% 80% 20% 80%;
  animation-delay: 15s;
}

@keyframes homeHeroGeometricFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-40px) rotate(90deg) scale(1.2);
    opacity: 0.55;
  }
  50% {
    transform: translateY(0) rotate(180deg) scale(1);
    opacity: 0.35;
  }
  75% {
    transform: translateY(40px) rotate(270deg) scale(0.8);
    opacity: 0.4;
  }
}

/* Carousel Controls */
.home-hero-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 15;
}

.home-hero-control-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.home-hero-control-btn:hover {
  background-color: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.home-hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 15;
}

.home-hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-hero-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--red);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.home-hero-indicator.active::before {
  left: 0;
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--red);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(68, 192, 182, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--yellow));
}

.testimonial-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(68, 192, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
}

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin: 0;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal);
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.author-info p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 0.9rem;
}

.author-rating {
  display: flex;
  gap: 3px;
}

.author-rating i {
  color: var(--yellow);
  font-size: 0.8rem;
}

.testimonials-cta {
  text-align: center;
  padding-top: 30px;
  border-top: 1px dashed rgba(68, 192, 182, 0.3);
}

.testimonials-cta p {
  margin-bottom: 10px;
  color: #666;
}

.btn-text {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-text:hover {
  color: var(--navy);
  gap: 12px;
}

/* Enhanced CTA Section */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7c 100%);
  color: white;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 70%, var(--teal) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--red) 0%, transparent 50%);
  background-blend-mode: overlay;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.cta-feature i {
  color: var(--yellow);
}

.cta-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

/* Enhanced Footer Styles */
footer {
  background: linear-gradient(135deg, #1a3a5f 0%, #2E5C89 100%);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(68, 192, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 183, 49, 0.1) 0%, transparent 50%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand section improvements */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 50px; /* Fixed height for consistent sizing */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--teal);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Links grid improvements */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-size: 0.9rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--teal);
}

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

.footer-links a:hover::before {
  opacity: 1;
  left: -5px;
}

/* Newsletter improvements */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.newsletter-form button:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Social section improvements */
.footer-social {
  text-align: center;
  margin-bottom: 40px;
}

.footer-social h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--red), var(--yellow));
  opacity: 0;
  transition: all 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer bottom improvements */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-credits strong {
  color: var(--yellow);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .home-hero-content {
    width: 60%;
  }

  .home-hero-content h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .home-hero-content {
    width: 70%;
    left: 5%;
  }

  .home-hero-content h1 {
    font-size: 2.8rem;
  }

  .home-hero-geometric {
    display: none;
  }

  .home-hero-geometric-1,
  .home-hero-geometric-3 {
    display: block;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .cta-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: all 0.4s ease;
  }

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

  .nav-link {
    margin: 15px 0;
  }

  .home-hero {
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  }

  .home-hero-image,
  .home-hero-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .home-hero-content {
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 30px;
    background: rgba(15, 30, 50, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .home-hero-content h1::before,
  .home-hero-content h1 span::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .home-hero-content p {
    border-left: none;
    border-top: 4px solid var(--teal);
    border-radius: 8px;
  }

  .home-hero-buttons {
    justify-content: center;
  }

  .home-hero-controls {
    right: 20px;
    bottom: 20px;
  }

  .home-hero-indicators {
    left: 20px;
    bottom: 20px;
  }

  .testimonials, .cta {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .cta-text h2 {
    font-size: 2.2rem;
  }
  
  .cta-text p {
    font-size: 1.1rem;
  }
  
  .cta-action {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-social {
    margin-bottom: 30px;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}

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

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

  .home-hero-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .home-hero-control-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-feature {
    width: 100%;
    justify-content: center;
  }

  footer {
    padding: 50px 0 20px;
  }
  
  .footer-main {
    gap: 25px;
  }
  
  .footer-newsletter {
    padding: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}