/* Tablet Responsive Styles */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .hero {
    padding: 80px 0 40px;
    min-height: 70vh;
    flex-direction: column;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-image img {
    max-width: 350px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2rem;
  }
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .about-section {
    padding: 40px 0;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

/* Desktop Mode on Mobile (force desktop layout for wide screens) */
@media (max-width: 900px) and (orientation: landscape) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

:root {
  /* Light Theme Colors */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

[data-theme="dark"] {
  /* Dark Theme Colors */
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --bg-tertiary: #374151;
  --border-color: #374151;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all 0.3s ease;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

[data-theme="dark"] .header.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Added styles for logo text container with main and subtitle text */
.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text-main {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.logo-text-sub {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

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

.nav-icon {
  font-size: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  color: var(--primary-color);
  background-color: var(--bg-secondary);
  transform: scale(1.1);
}

.nav-toggle,
.nav-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover,
.nav-close:hover {
  background-color: var(--bg-secondary);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cert-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  animation: slideInLeft 1s ease-out;
}

.cert-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.cert-badge:nth-child(3) {
  animation-delay: 0.4s;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  animation: pulse 2s infinite;
  margin-left: 10px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: transform 0.3s ease;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  animation: float 3s ease-in-out infinite;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.floating-card:nth-child(1) {
  top: 10%;
  right: -3%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 10%;
  left: -5%;
  animation-delay: 1.5s;
}

/* Attractive Admissions Open Button */
.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669, #047857);
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glowing effect */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

/* Hover effects */
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #059669, #047857, #065f46);
}

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

/* Pulse animation */
.btn-primary {
  animation: admissionPulse 2s infinite;
}

@keyframes admissionPulse {
  0% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.8),
      0 0 0 10px rgba(16, 185, 129, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }
}

/* Icon styling */
.btn-primary i {
  margin-right: 8px;
  font-size: 18px;
}

/* Attractive View Courses Button */
.btn-outline {
  background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
  border: 2px solid #1e40af;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glowing effect for blue button */
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

/* Hover effects for blue button */
.btn-outline:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e3a8a);
  border-color: #1e3a8a;
}

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

/* Pulse animation for blue button */
.btn-outline {
  animation: coursesPulse 2.5s infinite;
}

@keyframes coursesPulse {
  0% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.8),
      0 0 0 8px rgba(59, 130, 246, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
}

/* Icon styling for blue button */
.btn-outline i {
  margin-right: 8px;
  font-size: 18px;
}

/* Button spacing */
.hero-buttons .btn {
  margin: 0 10px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
}

.stat-item:nth-child(2) .stat-icon {
  background: #059669;
}

.stat-item:nth-child(3) .stat-icon {
  background: #7c3aed;
}

.stat-item:nth-child(4) .stat-icon {
  background: #ea580c;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

/* Bilingual Content */
.bilingual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.content-block {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.content-block:hover::before {
  transform: scaleX(1);
}

.content-block:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.content-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: var(--bg-primary);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-secondary);
}

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

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Gallery Horizontal Scrolling */
.about-gallery {
  overflow: hidden;
  width: 100%;
  margin-left: 0px;
  margin-top: -50px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}

.marquee-group {
  display: flex;
}

.marquee-group img {
  height: 300px;
  width: clamp(180px, 20vw, 280px);
  margin: 0;
  border-radius: 10px;
  display: block;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
  object-fit: cover;
  margin-right: 16px;
}

.marquee-group img:hover {
  transform: scale(1.05);
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Courses Section */

.courses {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.courses::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.course-category {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.category-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-color),
    transparent
  );
  z-index: -1;
}

.category-title span {
  background: var(--bg-secondary);
  padding: 0 20px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.course-card {
  display: flex;
  flex-direction: column;
}

.enroll-btn {
  margin-top: auto;
  margin-bottom: 20px;
}

.course-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  align-items: center; /* centers content horizontally */
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-large);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  animation: pulse 2s infinite;
}

.course-icon {
  background: var(--gradient-primary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.course-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.course-card:hover .course-icon::before {
  left: 100%;
}

.course-icon i {
  font-size: 2rem;
  color: white;
  z-index: 2;
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-secondary);
}

.course-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 30px 20px;
  text-align: center;
  line-height: 1.4;
}

.course-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.course-duration i {
  color: var(--primary-color);
}

.course-content {
  padding: 0 30px 30px;
}

.course-content p {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.course-content ul {
  list-style: none;
  padding: 0;
}

.course-content li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.course-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.enroll-btn {
  display: block;
  margin: 15px auto 0 auto;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #28a745, #218838);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.enroll-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: 0.5s;
}

.enroll-btn:hover::before {
  left: 200%;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  box-shadow: 0 6px 20px rgba(0, 128, 0, 0.5);
}

/* Hide pricing sections */
.course-fees {
  display: none !important;
}

/* Software Skills Section */
.software-skills {
  padding: 60px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
}

.software-skills h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-item {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

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

.skill-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.skill-item span {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* Admission Section */
.admission {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.admission-banner {
  background: linear-gradient(135deg, #1e40af, #3730a3);
  padding: 1.5rem 0;
  margin-top: -2px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-text h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.admission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.admission-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.admission-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admission-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.admission-feature:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.admission-feature i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.admission-feature span {
  color: var(--text-primary);
  font-weight: 500;
}

.admission-form {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Responsive Admission Form */
@media (max-width: 900px) {
  .admission-form {
    padding: 1rem;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .admission-form {
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .btn-full {
    width: 100%;
    margin: 1rem 0 0 0;
    font-size: 1rem;
  }
}

.btn-full {
  display: block;
  margin: 0 auto; /* centers it horizontally */
}


.floating-admission-btn {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-admission-btn.show {
  opacity: 1;
  visibility: visible;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  animation: pulse-float 3s ease-in-out infinite alternate;
}

.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.floating-admission-btn:hover .btn-shine {
  left: 100%;
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}



/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-details h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--bg-tertiary);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

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

.footer-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.footer-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* 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);
}

/* Loading animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  }
  100% {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5),
      0 0 20px rgba(59, 130, 246, 0.2);
  }
}

.get-admission-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.get-admission-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.get-admission-btn:hover .btn-shine {
  left: 100%;
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* <!--------------- Sticky Contact Icons Wrapper ---------------> */

/* //////// bottom phone & whatsapp ///////// */

/* Sticky Contact Icons */
.sticky-contact-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.sticky-contact-icons a {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}

/* WhatsApp brand color */
.whatsapp-icon {
  background-color: #25d366; /* WhatsApp green */
}

/* Phone (using blue) */
.phone-icon {
  background-color: #007aff; /* iPhone blue or phone blue */
}

.sticky-contact-icons a:hover {
  transform: scale(1.1);
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  font-size: 13px;
  white-space: nowrap;
  transition: opacity 0.3s;
  z-index: 999;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Floating + Bouncing + Pulse Animation */
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Apply to both icons */
.sticky-contact-icons a {
  animation: floatBounce 2.5s ease-in-out infinite, pulseGlow 2.5s infinite;
}
