/* ===== Base Styles ===== */
:root {
  --primary-color: #192966;
  --secondary-color: #192966;
  --accent-color: #ff006e;
  --dark-color: #192966;
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --text-color: #333333;
  --text-light: #777777;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: rgba(58, 134, 255, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-description {
  color: var(--text-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--light-color);
}

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

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

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

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

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(58, 134, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--light-color);
  transition: var(--transition);
  /* padding: 5px 0; */
  padding: 0 0;
  box-shadow: var(--shadow);
}

.header.sticky {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.header.sticky .nav-link {
  color: var(--text-color);
}

.header.sticky .nav-link.active,
.header.sticky .nav-link:hover {
  color: var(--primary-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 0px;
  /* padding: 20px 0px; */
  margin-top: 20px;
}

/* .logo-container img {
  width: 300px;
  height: 70px;
  object-fit: cover;
} */

.logo {
  width: 350px;
  height: 75px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: -50px;
  /* padding: -200px 0px; */
}

.logo2 {
  width: 350px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: -60px;
  /* padding: -200px 0px; */
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.2;
}

.brand-tagline {
  color: var(--accent-color);
  font-size: 8px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
}

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

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

.nav-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link.active,
.nav-link:hover {
  color: var(--accent-color);
}

.header-right {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

.header.sticky .hamburger span {
  background-color: var(--text-color);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color)
  );
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  color: var(--light-color);
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 0 0 45%;
  animation: float 3s ease-in-out infinite;
}

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

.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 20%;
  left: 5%;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: moveUpDown 5s linear infinite;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transform: rotate(45deg);
  animation: rotate 10s linear infinite;
}

.shape-3 {
  top: 50%;
  right: 20%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  animation: moveLeftRight 7s linear infinite;
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveLeftRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
}

/* ===== Services Section ===== */
.services {
  background-color: var(--gray-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(25, 41, 102, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color)
  );
  padding: 80px 0;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  color: var(--light-color);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-description {
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-shape {
  position: absolute;
  z-index: 0;
}

.cta-shape.shape-1 {
  top: -20px;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-shape.shape-2 {
  bottom: -30px;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transform: rotate(45deg);
}

/* ===== About Section ===== */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 0 0 45%;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge .number {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
}

.about-content {
  flex: 0 0 50%;
}

.about-description {
  margin-bottom: 30px;
}

.about-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.feature-icon i {
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== Training Section ===== */
.training {
  background-color: var(--gray-color);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.allservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px; /* Optional: to limit full width */
  margin: 0 auto; /* Center the grid */
  padding: 20px;
}

.training-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.training-card:hover {
  transform: translateY(-10px);
}

.training-image {
  position: relative;
  overflow: hidden;
}

.training-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.allservices-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.training-card:hover .training-image img {
  transform: scale(1.1);
}

.training-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.training-duration {
  color: var(--light-color);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.training-duration i {
  margin-right: 5px;
}

.training-content {
  padding: 25px;
}

.training-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.training-description {
  color: var(--text-light);
  margin-bottom: 20px;
}

.training-link {
  font-weight: 500;
  /* display: inline-flex; */
  display: block;
  align-items: center;
}

.training-link:hover {
  color: black;
}

.trainingcourse-link {
  font-weight: 500;
  display: block;
  align-items: center;
  color: #ff006e;
}

.training-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.training-link:hover i {
  transform: translateX(5px);
}

/* ===== Tech Stack Section ===== */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tech-item {
  width: 120px;
  height: 120px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

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

.tech-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tech-item span {
  font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials {
  background-color: var(--gray-color);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(58, 134, 255, 0.1);
  font-size: 30px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-light);
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-position {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* ===== Blog Section ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 10px;
  border-radius: var(--border-radius);
  text-align: center;
}

.blog-date .day {
  font-size: 20px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.blog-date .month {
  font-size: 14px;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-meta span {
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.blog-meta span i {
  margin-right: 5px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* ===== Contact Section ===== */
.contact-wrapper {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 0 0 45%;
}

.contact-description {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.contact-icon i {
  color: var(--primary-color);
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.contact-form {
  flex: 0 0 50%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color)
  );
  padding: 80px 0;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-content {
  flex: 0 0 50%;
  color: var(--light-color);
}

.newsletter-title {
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter-description {
  opacity: 0.9;
  margin-bottom: 0;
}

.newsletter-form {
  flex: 0 0 45%;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
}

/* ===== Footer ===== */
.footer {
  /* background-color: var(--dark-color); */
  background-color: #1a1a2e;
  color: var(--light-color);
  /* padding-top: 40px; */
  padding-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  /* margin-bottom: 50px; */
  margin-bottom: 10px;
}

.about-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer .social-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

.footer .social-link:hover {
  /* background-color: var(--primary-color); */
  background-color: #3a86ff;
}

.widget-title {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  /* background-color: var(--primary-color); */
  background-color: #3a86ff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  /* color: var(--primary-color); */
  color: #3a86ff;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
  margin-right: 10px;
  /* color: var(--primary-color); */
  color: #3a86ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  /* color: var(--primary-color); */
  color: #3a86ff;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

/* .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
} */

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

.stat-card {
  background-color: #192966;
  color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #00d9ff;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 15px 0;
  background: linear-gradient(90deg, #ffffff, #00d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 10px;
}

.stat-icon {
  font-size: 2rem;
  opacity: 0.2;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

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

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Adding special pulse animation to highlight the most impressive stat */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 217, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0);
  }
}

.featured {
  animation: pulse 2s infinite;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 50px;
    margin-top: 300px;
  }

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

  .about-wrapper {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: 50px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info {
    margin-bottom: 50px;
  }

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-content {
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 15px;
    justify-content: center;
  }

  .header-right .btn {
    display: none;
  }

  .about-header {
    text-align: center;
  }

  .about-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    margin-top: 50px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-item {
    flex: 0 0 calc(100% - 20px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 100;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 30px;
  }

  .nav-menu.active {
    /* right: 0; */
    left: 0;
    /* top: 80px; */
    top: 90px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .nav-link {
    color: var(--text-color);
    display: block;
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-right .btn {
    display: none;
  }

  .about-header {
    text-align: center;
  }

  .about-description {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-content {
    margin-top: 50px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .experience-badge {
    padding: 15px;
  }

  .experience-badge .number {
    font-size: 28px;
  }

  .experience-badge .text {
    font-size: 12px;
  }

  .header-right .btn {
    display: none;
  }

  .about-header {
    text-align: center;
  }

  .about-description {
    text-align: center;
  }
}

/* Course Popup Styles */
.course-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.course-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.course-popup {
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: translateY(-50px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.course-popup-overlay.active .course-popup {
  transform: translateY(0);
}

.course-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #192966;
  color: white;
}

.course-popup-header h2 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.close-popup {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  transition: all 0.2s;
}

.close-popup:hover {
  color: #ff006e;
}

.course-popup-content {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
}

.course-popup-content h3 {
  color: #192966;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}

.course-popup-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.course-popup-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.course-popup-content li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.course-popup-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #192966;
}

.course-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.course-info-item {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.course-info-item h4 {
  margin: 0 0 5px 0;
  color: #192966;
  font-size: 16px;
}

.course-info-item p {
  margin: 0;
  font-weight: 500;
}

.course-popup-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
  background-color: #f5f5f5;
}

.popup-btn {
  min-width: 180px;
  text-align: center;
}

.popup-btndownload {
  min-width: 180px;
  text-align: center;
  background-color: #ff006e;
}

@media (max-width: 768px) {
  .course-popup-footer {
    flex-direction: column;
    gap: 15px;
  }

  .popup-btn {
    width: 100%;
  }

  .course-info-grid {
    grid-template-columns: 1fr;
  }
}

.course-section {
  margin-bottom: 25px;
}

.course-section-title {
  font-weight: 600;
  color: #192966;
  border-bottom: 2px solid #192966;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.month-section {
  margin-bottom: 20px;
}

.month-title {
  font-weight: 600;
  color: #192966;
  margin-bottom: 10px;
}

.week-item {
  margin-bottom: 15px;
}

.week-title {
  font-weight: 600;
  margin-bottom: 5px;
}
