/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Fixed scroll offset for proper navigation */
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1a202c;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(59, 130, 246, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  max-width: 45px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link.active {
  color: #3b82f6;
}

/* Enhanced Dropdown Styles - Reduced Size */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 450px; /* Reduced from 600px */
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  padding: 0.8rem 1.5rem; /* Reduced padding */
  text-align: center;
}

.all-services-link,
.all-training-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem; /* Reduced font size */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.all-services-link:hover,
.all-training-link:hover {
  color: #dbeafe;
  transform: translateY(-1px);
}

.dropdown-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; /* Reduced gap */
  padding: 1.5rem; /* Reduced padding */
}

.dropdown-section h4 {
  font-size: 0.7rem; /* Reduced font size */
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem; /* Reduced margin */
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e5e7eb;
}

.dropdown-section ul {
  list-style: none;
}

.dropdown-section ul li {
  margin-bottom: 0.4rem; /* Reduced margin */
}

.dropdown-section ul li a {
  display: block;
  padding: 0.6rem 0.8rem; /* Reduced padding */
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
  font-size: 0.85rem; /* Reduced font size */
}

.dropdown-section ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transition: height 0.3s ease;
  border-radius: 2px;
}

.dropdown-section ul li a:hover::before {
  height: 60%;
}

.dropdown-section ul li a:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #3b82f6;
  transform: translateX(8px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #374151;
  transition: 0.3s;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  overflow: hidden;
  padding-top: 100px;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.02) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
  word-wrap: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #6b7280;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
  width: 100%;
  max-width: 100%;
}

.hero-image {
  position: relative;
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  max-width: 100%;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  white-space: nowrap;
  max-width: 200px;
}

.floating-card i {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #2563eb;
  flex-shrink: 0;
}

.card-1 {
  top: 20%;
  left: -15%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}

.hero-main-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 60vw);
  height: min(300px, 60vw);
}

.graphic-circle {
  width: 100%;
  height: 100%;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.hero-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(200px, 40vw);
  height: min(200px, 40vw);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  z-index: 3;
}

.hero-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-center-image:hover img {
  transform: scale(1.1);
}

.graphic-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(250px, 50vw);
  height: min(250px, 50vw);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  opacity: 0.05;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/* Section Styles */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #3b82f6;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-wrap: break-word;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.about-text {
  width: 100%;
}

.about-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-item i {
  color: #2563eb;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 600;
  color: #374151;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* FIXED: Services and Training Overview sections to account for fixed navbar */
.services-overview,
.courses-overview {
  padding: 6rem 0 3rem; /* Added top padding to account for fixed navbar */
  width: 100%;
}

/* Service/Course Detail Sections */
.service-detail,
.course-detail {
  padding: 2rem 0;
  width: 100%;
}

.service-detail:nth-child(even),
.course-detail:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-detail-content,
.course-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Fixed reverse layout - content and image stack properly */
.service-detail-content.reverse,
.course-detail-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-content.reverse .service-detail-text,
.course-detail-content.reverse .course-detail-text {
  order: 2;
}

.service-detail-content.reverse .service-detail-image,
.course-detail-content.reverse .course-detail-image {
  order: 1;
}

.service-detail-text,
.course-detail-text {
  width: 100%;
}

.service-detail-text h2,
.course-detail-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #1e40af;
  font-weight: 700;
  word-wrap: break-word;
}

.service-detail-text p,
.course-detail-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features,
.course-curriculum ul {
  list-style: none;
  margin-bottom: 2rem;
  width: 100%;
}

.service-features .feature-item,
.course-curriculum ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  width: 100%;
}

.service-features .feature-item i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-features .feature-item span {
  color: #374151;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-curriculum h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1rem;
  color: #1e40af;
  font-weight: 600;
}

.course-curriculum ul li {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: #374151;
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-curriculum ul li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

.course-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.highlight-item i {
  color: #2563eb;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-item span {
  color: #374151;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.service-pricing,
.course-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.price {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
}

.service-detail-image,
.course-detail-image {
  width: 100%;
}

.service-detail-image img,
.course-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Course Badge */
.course-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Services Preview */
.services-preview {
  padding: 4rem 0;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
  color: #2563eb;
  font-weight: 700;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.service-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.service-link:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  width: 100%;
}

/* Training Preview */
.training-preview {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  width: 100%;
}

.training-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
  width: 100%;
}

.training-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
}

.training-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.training-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.training-card:hover .training-image img {
  transform: scale(1.1);
}

.training-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.training-content {
  padding: 2.5rem;
  width: 100%;
}

.training-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  color: #1e40af;
  font-weight: 700;
}

.training-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.training-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  width: 100%;
}

.feature {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.training-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.training-cta {
  text-align: center;
  width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s ease;
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  color: #2563eb;
  font-weight: 700;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* Process Section */
.process {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.process::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  width: 100%;
}

.process-step {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  width: 100%;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

.step-content {
  padding-top: 1rem;
  width: 100%;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(37, 99, 235, 0.2);
}

.process-step:hover .step-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.step-content h3 {
  color: #2563eb;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-content p {
  color: #6b7280;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
}

/* Founder Section */
.founder {
  padding: 4rem 0;
  width: 100%;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.founder-image {
  position: relative;
  text-align: center;
  width: 100%;
}

.founder-image img {
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

.founder-social {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder-text {
  width: 100%;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.founder-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
}

.founder-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  width: 100%;
}

.achievement-item i {
  color: #2563eb;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.achievement-item span {
  font-weight: 500;
  color: #374151;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Partners Section */
.partners-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  width: 100%;
}

.partner-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  width: 100%;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.partner-card p {
  color: #6b7280;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
  width: 100%;
}

.cta-content {
  width: 100%;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: #2563eb;
}

.cta-buttons .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #2563eb;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  width: 100%;
}

.contact-info,
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details {
  width: 100%;
}

.contact-details h4 {
  color: #1e40af;
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-details p {
  color: #6b7280;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  font-weight: 500;
}



.contact-form form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.form-group {
  margin: 0;
  width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  background: #f9fafb;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 1rem 2rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-weight: 600;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 4rem 0 2rem;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section {
  width: 100%;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #3b82f6;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content,
  .about-content,
  .founder-content,
  .contact-content,
  .service-detail-content,
  .course-detail-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail-content.reverse .service-detail-text,
  .course-detail-content.reverse .course-detail-text,
  .service-detail-content.reverse .service-detail-image,
  .course-detail-content.reverse .course-detail-image {
    order: unset;
  }

  .dropdown-content {
    min-width: 350px; /* Reduced for smaller screens */
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .founder-image {
    order: -1;
  }
}

@media (max-width: 1024px) {
  .training-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .course-highlights {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .dropdown-content {
    min-width: 300px; /* Further reduced */
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(59, 130, 246, 0.1);
    padding: 2rem 0;
    gap: 1rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-container {
    padding: 1rem;
  }

  /* Fixed mobile dropdown visibility */
  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    margin-top: 1rem;
    min-width: auto;
    border-radius: 12px;
    width: 100%;
    display: none; /* Hidden by default */
  }

  .dropdown.active .dropdown-content {
    display: block; /* Show when active */
  }

  .dropdown-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .dropdown-header {
    padding: 1rem;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 4rem;
  }

  /* FIXED: Mobile padding for services and training overview */
  .services-overview,
  .courses-overview {
    padding: 5rem 0 2rem; /* Reduced top padding on mobile */
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: min(400px, 90vw);
    height: min(400px, 90vw);
  }

  .floating-card {
    padding: 8px 12px;
    font-size: 0.8rem;
    max-width: 150px;
  }

  .floating-card i {
    font-size: 1.2rem;
  }

  .card-1 {
    left: -20%;
  }

  .card-2 {
    right: -20%;
  }

  .services-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .service-pricing,
  .course-pricing {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .training-price {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .scroll-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero,
  .about,
  .services-preview,
  .training-preview,
  .process,
  .founder,
  .partners-section,
  .contact,
  .cta-section,
  .why-choose-us {
    padding: 4rem 0;
  }

  .service-detail,
  .course-detail {
    padding: 3rem 0;
  }

  /* FIXED: Even more reduced padding for very small screens */
  .services-overview,
  .courses-overview {
    padding: 4rem 0 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-card,
  .training-card,
  .feature-card,
  .partner-card {
    padding: 1.5rem;
  }

  .training-content {
    padding: 2rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .process-step {
    padding: 2rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    right: 1rem;
  }

  .training-features {
    gap: 0.25rem;
  }

  .feature {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .course-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    padding: 0.5rem;
  }

  .hero-image {
    width: min(350px, 85vw);
    height: min(350px, 85vw);
  }

  .floating-card {
    max-width: 120px;
    padding: 6px 10px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0.75rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .service-card,
  .training-card,
  .feature-card,
  .partner-card {
    padding: 1rem;
  }

  .training-content {
    padding: 1.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 1rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .hero-image {
    width: min(300px, 80vw);
    height: min(300px, 80vw);
  }

  .hero-main-graphic {
    width: min(250px, 50vw);
    height: min(250px, 50vw);
  }

  .hero-center-image {
    width: min(150px, 30vw);
    height: min(150px, 30vw);
  }

  .floating-card {
    padding: 4px 8px;
    font-size: 0.7rem;
    max-width: 100px;
  }

  .card-1,
  .card-2,
  .card-3 {
    display: none; /* Hide floating cards on very small screens */
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Improved Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    border: 2px solid #000;
  }

  .btn-outline {
    border: 2px solid #000;
    color: #000;
  }

  .service-card,
  .training-card,
  .feature-card {
    border: 2px solid #000;
  }
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-to-top,
  .hero-buttons,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section-title {
    font-size: 18pt;
  }
}

/* Loading Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Selection Color */
::selection {
  background: rgba(59, 130, 246, 0.2);
  color: #1e40af;
}

::-moz-selection {
  background: rgba(59, 130, 246, 0.2);
  color: #1e40af;
}