@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Anton", sans-serif;*/
}
:root {
  --text: #000000;
  --btn: #0d213c;
  --text2: #0c2949;
  --hover: #00d4ff;
}
html {
  scroll-behavior: smooth;
}
html,body{
  overflow-x: hidden;
}
header {
  background-color: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  width: 10rem;
}
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
header > .cta-btn {
  display: block;
}
nav > .cta-btn {
  display: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: all 0.5s ease;
  display: inline-block;
}
.nav-links li a:hover {
  color: #00d4ff;
  transform: scale(1.1);
}
.dropdown {
  position: relative;
}
.dropdown > a {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  min-width: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 0.7rem 1.5rem;
  transition: background-color 0.3s;
}
.dropdown-menu li:hover {
  background-color: var(--btn);
}
.dropdown-menu a {
  color: #333;
  font-size: 0.95rem;
}
.cta-btn {
  background-color: var(--btn);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.cta-btn:hover {
  background-color: var(--hover);
  transform: scale(1.1);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #0a1628;
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/*Hero Section */
.hero {
  position: relative;
  /* relative path from assets/css to assets/images */
  background: url("../images/hero-bg.png") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px 180px;
  border-radius: 40px;
  overflow: hidden;
  max-width: 1200px;
  margin: 20px auto;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 4rem;
  max-width: 500px;
  margin: 0px auto;
  line-height: 70px;
  margin-bottom: 15px !important;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero a {
  display: inline-block;
  background-color: white;
  color: #003366;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero a:hover {
  transform: scale(1.1);
  background-color: #e6e6e6;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 50px;
  position: relative;
  top: -80px;
  z-index: 3;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}
.stat h2 {
  font-size: 2.5rem;
  color: #003366;
  transition: transform 0.3s ease;
}

.stat:hover h2 {
  transform: scale(1.1);
}
.stat p {
  color: #666;
  margin-top: 5px;
}

/*The About Us*/
.about-section {
  background: var(--btn);
  border-radius: 30px;
  padding: 60px 50px;
  max-width: 1200px;
  margin: 4rem auto;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.left-side {
  display: grid;
  grid-template-rows: auto auto;
  gap: 25px;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-image {
  height: 280px;
}

.bottom-image {
  height: 220px;
}

.right-side {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 10px;
}

.header {
  text-align: left;
}

.header h2 {
  font-family: "Anton", sans-serif;
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.triangles {
  display: flex;
  gap: 8px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 32px solid white;
  transform: rotate(90deg);
}

.intro-box {
  background: white;
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro-box p {
  color: #0a2540;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: transparent;
  padding: 0;
}

.card h3 {
  color: white;
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: bold;
}

.card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.7;
}

/*COURSES WE OFFER*/
.course-container {
  max-width: 1200px;
  margin: 7rem auto;
  background: var(--btn);
  padding: 50px;
  border-radius: 50px;
}

.course-container h1 {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 60px auto;
  border-radius: 50px;
  padding: 8px;
  max-width: 1000px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

.swipe-indicator {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  animation: swipeHint 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes swipeHint {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
    opacity: 1;
  }
}

.tab-button {
  padding: 10px 16px;
  margin: 0 10px;
  background: transparent;
  color: white;
  border: 1px solid #fff;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 50px;
}

.tab-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
  background-color: #1e3e68;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.course-content {
  display: none;
  opacity: 0;
}

.course-content.active {
  display: contents;
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.text-content {
  padding: 20px;
  animation: slideInLeft 0.6s ease-out;
}

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

.text-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.text-content p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: "Roboto", sans-serif;
}

.enroll-btn {
  padding: 16px 40px;
  background-color: #fff;
  color: var(--btn);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.enroll-btn:hover {
  color: #fff;
  background-color: #1a2b4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-content {
  position: relative;
  animation: slideInRight 0.6s ease-out;
}

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

.image-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/*WHY CHOOSE US?*/
.why-choose-us {
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding: 80px 40px;
  background: var(--btn);
  border-bottom-left-radius: 30%;
  border-top-right-radius: 30%;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.why-content h2 {
  font-size: 2.5rem;
  font-family: "Anton", sans-serif;
  color: #fff;
  margin-bottom: 5px;
}

.why-content p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.icon-box {
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.icon-box img {
  width: 2rem;
}

.icon-box h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.icon-box p {
  font-size: 0.95rem;
  color: #fff;
}

.icon-box:hover {
  transform: translateY(-8px);
}

.why-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-images img {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.why-images .img1 {
  transform: rotate(-3deg);
  border: 5px solid var(--primary);
  z-index: 1;
}
.why-images img:hover {
  transform: scale(1.05);
}

/* Floating Icons in Why Choose Us */
.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.1);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.floating-icon img {
  width: 3rem;
}
.icon1 {
  top: 20px;
  left: 10%;
  color: var(--primary);
}
.icon2 {
  top: 130px;
  right: 10%;
  color: var(--secondary);
}
.icon3 {
  bottom: 60px;
  left: 60%;
  color: var(--accent);
}
.icon4 {
  bottom: 30px;
  right: 10%;
  color: var(--primary-dark);
}
/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/*Partners */
.partners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
}
.partners-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.partners-section h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text2);
  font-family: "Anton", sans-serif;
}

.partners-logos {
  display: flex;
  gap: 2rem;
}

.partner {
  background-color: #fff;
  padding: 1.5rem 7rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
}

.partner img {
  max-width: 8rem;
  max-height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.partner img:hover {
  transform: scale(1.1);
}
/* Testimonials Section */
.testimonials-section {
  padding: 2rem 5%;
  background-color: #fff;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.testimonials-header h2 {
  font-size: 3rem;
  font-weight: 400;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-family: "Anton", sans-serif;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.testimonials-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.8s ease-in-out;
  cursor: grab;
  user-select: none;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: calc((100% - 4rem) / 3);
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00d4ff;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1.4rem;
  color: #0a1628;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.job-title {
  font-size: 1rem;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.star-rating {
  margin-bottom: 1.5rem;
}

.star {
  font-size: 1.5rem;
  color: #ddd;
  margin: 0 0.1rem;
}

.star.filled {
  color: #ffc107;
}

.testimonial-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background-color: #0a1628;
  transform: scale(1.3);
}
.faq-container {
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 40px;
  padding: 40px;
  border-radius: 20px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text2);
  font-family: "Anton", sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 28px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #1a2b4a 0%, #0a2540 100%);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #6a3f8f 100%);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 28px 30px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  background: #f8f9fa;
}

/* Footer */
.footer {
  background-color: #0a1628;
  color: white;
  padding: 4rem 5% 2rem;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}
.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
}
.footer-section p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.8rem;
  color: #b0b0b0;
}
.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #00d4ff;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social-icon:hover {
  background-color: #00d4ff;
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: #b0b0b0;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00d4ff;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Different animation variants */
.scroll-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.scroll-fade.active {
  opacity: 1;
}

.scroll-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-header {
    position: relative;
    top: 0;
  }

  .faq-title {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  body{
    overflow-x: hidden;
  }
  .hero h1 {
    font-size: 3rem;
  }

  .stats {
    gap: 30px;
    padding: 25px 30px;
  }
  .about-section {
    padding: 40px 30px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header h2 {
    font-size: 42px;
  }

  .left-side {
    order: 2;
  }

  .right-side {
    order: 1;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .course-container h1 {
    font-size: 2rem;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .image-content img {
    height: 350px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section h3 {
    font-size: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.95rem;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  header {
    flex-wrap: wrap;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
  }
  nav.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
    gap: 0;
  }
  .nav-links li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
    background-color: #f8f8f8;
    margin-top: 0.5rem;
    border-radius: 8px;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu li {
    padding: 0.5rem 1rem;
  }

  header > .cta-btn {
    display: none;
  }

  nav > .cta-btn {
    display: block;
    margin: 2rem 2rem 0 2rem;
    text-align: center;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 80px 15px 160px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats {
    align-items: center;
    top: -70px;
  }

  .stat h2 {
    font-size: 1.7rem;
  }
  .about-section {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .header h2 {
    font-size: 38px;
  }

  .triangle {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid white;
  }

  .intro-box {
    padding: 24px 28px;
  }

  .intro-box p {
    font-size: 15px;
  }

  .card h3 {
    font-size: 24px;
  }
  .left-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
  }

  .top-image,
  .bottom-image {
    height: 220px;
  }
  .course-container{
    padding:50px 10px;
    border-radius: 0;
  }
  .course-container h1 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .tabs-container {
    padding: 6px;
    margin-bottom: 40px;
    justify-content: flex-start;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .swipe-indicator {
    display: block;
  }

  .tab-button {
    padding: 10px 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    min-width: calc(33.333% - 4px);
  }

  .text-content {
    padding: 10px;
  }

  .text-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .text-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .image-content img {
    height: 300px;
    border-radius: 16px;
  }
  .partners-section {
    flex-direction: column;
  }
  .partners-section h2 {
    font-size: 2rem;
  }
  .partners-logos {
    align-items: center;
  }
  .testimonials-section {
    padding: 3rem 5%;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonials-track {
    gap: 1.5rem;
    cursor: default;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 2rem;
  }

  .testimonial-card h3 {
    font-size: 1.3rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
  .faq-title {
    font-size: 2.5rem;
  }

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

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

  .contact-cta {
    margin: 2rem 1rem 0;
    padding: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

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

  .footer-social-icon {
    width: 35px;
    height: 35px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  body{
    overflow-x: hidden;
  }
  header {
    padding: 1rem 3%;
  }
  .logo img {
    height: 40px;
  }
  nav {
    width: 85%;
  }
  .hero {
    padding: 70px 10px 140px;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 50px;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .stats {
    padding: 20px;
    gap: 20px;
    top: -60px;
  }

  .stat h2 {
    font-size: 1.5rem;
  }
  .about-section {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .header h2 {
    font-size: 32px;
  }

  .intro-box {
    padding: 20px 24px;
  }

  .intro-box p {
    font-size: 14px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
  }

  .left-side {
    gap: 15px;
  }

  .top-image,
  .bottom-image {
    height: 180px;
    border-radius: 15px;
  }
  .course-container h1 {
    font-size: 1.2rem;
  }

  .tabs-container {
    border-radius: 12px;
    padding: 4px;
    justify-content: flex-start;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .swipe-indicator {
    display: block;
    font-size: 1rem;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    flex-shrink: 0;
    scroll-snap-align: start;
    min-width: calc(33.333% - 3px);
  }

  .text-content h2 {
    font-size: 1.5rem;
  }

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

  .enroll-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    width: 100%;
  }

  .image-content img {
    height: 250px;
  }

  .partners-logos {
    flex-direction: column;
    align-items: center;
  }
  .testimonials-section {
    padding: 2.5rem 3%;
  }

  .testimonials-header {
    margin-bottom: 2.5rem;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }

  .testimonials-header p {
    font-size: 0.95rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .testimonial-card h3 {
    font-size: 1.2rem;
  }

  .job-title {
    font-size: 0.9rem;
  }

  .star {
    font-size: 1.3rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-dots {
    margin-top: 2rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 600px) {
  .why-choose-us {
    border-radius: 0;
  }
  .why-icons {
    grid-template-columns: 1fr;
  }
  .why-images {
    display: none;
  }
  .faq-header {
    padding: 30px 25px;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 22px 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 22px 20px;
    font-size: 0.95rem;
  }
}
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-images {
    margin-top: 30px;
  }
  .why-images .img1 {
    width: 65%;
  }
}
