* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f6fb;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ======================
   TOP BAR (COLOR ONLY)
====================== */
.top-bar {
  background: #f5f9ff; /* was dark */
  color: #1a2b4f;
  font-size: 14px;
  border-bottom: 1px solid #e6efff;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.top-left span {
  margin-right: 20px;
}

.top-left i {
  margin-right: 6px;
  color: #0d47ff; /* was cyan */
}

.top-right a {
  color: #1a2b4f;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #0d47ff;
}

/* ======================
   NAVBAR (COLOR ONLY)
====================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff; /* was gradient */
  box-shadow: 0 8px 25px rgba(13, 71, 255, 0.08);
}

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

/* LOGO */
.logo img {
  height: 55px;
}

/* ======================
   NAV LINKS (COLOR ONLY)
====================== */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  position: relative;
  margin-left: 35px;
  text-decoration: none;
  color: #1a2b4f; /* was white */
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0d47ff; /* was cyan */
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0d47ff;
}

/* ======================
   CTA BUTTON (COLOR ONLY)
====================== */
.btn-cta {
  margin-left: 40px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #0d47ff; /* was cyan */
  color: #ffffff !important;
  font-weight: 600;
}

.btn-cta:hover {
  background: #0838cc;
}

/* ======================
   HAMBURGER (COLOR ONLY)
====================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1a2b4f; /* was white */
  margin: 4px 0;
  transition: 0.4s;
}

/* ======================
   MOBILE MENU (COLOR ONLY)
====================== */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff; /* was dark */
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    box-shadow: 0 20px 30px rgba(13, 71, 255, 0.12);
  }

  .nav-links a {
    margin: 20px 0;
    font-size: 18px;
  }

  .btn-cta {
    margin-bottom: 20px;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .hamburger {
    display: flex;
  }
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0d47ff;
}

/* =========================
   HERO SLIDER – FULL WIDTH IMAGE
========================= */

.hero-slider {
  position: relative;
  background: linear-gradient(135deg, #eef4ff, #f9fbff);
  padding: 0;
  overflow: hidden;
}

/* Swiper */
.heroSwiper {
  position: relative;
}

/* Fix fade overlap */
.heroSwiper .swiper-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}

.heroSwiper .swiper-slide-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================
   HERO INNER
========================= */
.hero-inner {
  position: relative;
  width: 100vw;
  margin: auto;
  padding: 120px 20px;
  height: 80vh !important;
  display: flex;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.hero-text {
  padding-left: 50px;
  max-width: 650px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: #e6edff;
  color: #1a4cff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.15;
  color: #0a2540;
  margin: 22px 0;
  font-weight: 700;
}

.hero-text h1 span {
  color: #1a4cff;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #1a4cff;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #0d3bff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 76, 255, 0.35);
}

/* =========================
   RIGHT IMAGE – FULL SCREEN PANEL
========================= */
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

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

/* Soft overlay */
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.06),
    transparent
  );
}

/* =========================
   PAGINATION
========================= */
.swiper-pagination {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  background: #cfd8ff;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #1a4cff;
  width: 22px;
  border-radius: 10px;
}

/* =========================
   RESPONSIVE FIX
========================= */
/* =========================
   TABLET + MOBILE (≤1024px)
   TEXT ONLY HERO
========================= */
@media (max-width: 1024px) {

  .hero-inner {
    height: auto !important;
    min-height: 70vh;
    padding: 90px 24px 70px;
    justify-content: center;
  }

  /* Hide right image */
  .hero-image {
    display: none !important;
  }

  /* Center content */
  .hero-text {
    padding-left: 0;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
  }

  .hero-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-pagination {
    bottom: 25px !important;
  }
}

/* =========================
   SMALL MOBILE REFINEMENT
========================= */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text p {
    font-size: 16px;
  }
}


/* =========================
   MOBILE ONLY FIX (≤ 576px)
   Hide image, keep text clean
========================= */
@media (max-width: 576px) {

  /* Reduce hero height */
  .hero-inner {
    height: auto !important;
    min-height: 70vh;
    padding: 80px 20px 60px;
    justify-content: center;
  }

  /* Hide right image completely */
  .hero-image {
    display: none !important;
  }

  /* Center text */
  .hero-text {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }

  /* Typography scaling */
  .hero-text h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
  }

  /* Center CTA */
  .hero-btn {
    margin-left: auto;
    margin-right: auto;
  }

  /* Pagination adjustment */
  .swiper-pagination {
    bottom: 20px !important;
  }
}


/* academy-intro */
.academy-intro {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.academy-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE */
.academy-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Diamond container */
.image-shape {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 28px;
  border: 8px solid #0d47ff;
  overflow: hidden;
  transform: rotate(-45deg);
}

/* ✅ FIXED IMAGE */
.image-shape img {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 140%;
  height: 140%;

  object-fit: cover;

  transform: translate(-50%, -50%) rotate(45deg);
}

/* CONTENT */
.academy-content {
  flex: 1.2;
}

.section-badge {
  display: inline-block;
  background: #e8efff;
  color: #0d47ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.academy-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1f44;
  line-height: 1.25;
  margin-bottom: 25px;
}

.academy-content h2 span {
  color: #0d47ff;
}

.academy-content p {
  font-size: 1rem;
  color: #5b6b86;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 620px;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #0d47ff, #0a36c9);
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 71, 255, 0.25);
}

/* DECORATIVE SHAPES */
.shape.circle {
  position: absolute;
  top: 80px;
  right: 120px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(13, 71, 255, 0.05);
}

.shape.dots {
  position: absolute;
  bottom: 60px;
  left: 80px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#0d47ff 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .academy-container {
    flex-direction: column;
    text-align: center;
  }

  .academy-content h2 {
    font-size: 2.1rem;
  }

  .academy-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .image-shape {
    width: 280px;
    height: 280px;
  }
}

/* why choose us */
.why-us {
  padding: 100px 0;
  background: #f8fbff;
}

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

/* HEADING */
.why-heading {
  text-align: center;
  margin-bottom: 70px;
}

.why-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b1f44;
  margin-bottom: 12px;
}

.why-title span {
  color: #0d47ff;
}

.why-subtitle {
  font-size: 1.05rem;
  color: #5b6b86;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}

/* COLUMNS */
.why-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.why-card {
  background: linear-gradient(135deg, #0d47ff, #0a36c9);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(13, 71, 255, 0.25);
}

.why-card.alt {
  background: linear-gradient(135deg, #0b2b5c, #0d47ff);
}

/* IMAGE */
.why-image {
  display: flex;
  justify-content: center;
}

.image-diamond {
  width: 320px;
  height: 320px;
  transform: rotate(-45deg);
  border-radius: 30px;
  overflow: hidden;
  background: #e8efff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-diamond img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-column {
    align-items: center;
  }

  .image-diamond {
    margin: 30px 0;
    width: 260px;
    height: 260px;
  }

  .why-title {
    font-size: 2.2rem;
  }
}

/* =========================
   MENTOR SECTION
========================= */
.mentor-section {
  position: relative;
  padding: 100px 0;
  background: #f8fbff;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Section background glow */
.mentor-section::before,
.mentor-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(13, 71, 255, 0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mentor-section::before {
  top: -200px;
  left: -200px;
}

.mentor-section::after {
  bottom: -200px;
  right: -200px;
}

.mentor-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   BADGE
========================= */
.mentor-badge {
  display: inline-block;
  background: rgba(13, 71, 255, 0.1);
  color: #0d47ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   TITLE
========================= */
.mentor-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 20px 0;
  color: #0a1f44;
  line-height: 1.25;
}

.mentor-title span {
  display: inline-block;
  font-size: 1.2rem;
  color: #5f6f85;
  font-weight: 500;
  margin-top: 6px;
}

/* =========================
   TEXT
========================= */
.mentor-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #5f6f85;
  margin-bottom: 22px;
}

/* =========================
   POINTS
========================= */
.mentor-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.mentor-points li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #1a2b4f;
}

/* =========================
   BUTTON
========================= */
.mentor-btn {
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(13, 71, 255, 0.25);
}

/* =========================
   IMAGE WRAPPER + SHAPES
========================= */
.mentor-image-wrapper {
  position: relative;
  display: inline-block;
  padding: 40px;
}

/* Shape base */
.mentor-shape {
  position: absolute;
  z-index: 0;
}

/* Yellow circle */
.mentor-shape.circle {
  width: 320px;
  height: 320px;
  background: #ffd166;
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

/* Soft blue curve */
.mentor-shape.curve {
  width: 380px;
  height: 380px;
  background: #e8f1ff;
  border-radius: 50%;
  bottom: -60px;
  right: 40px;
  z-index: -1;
}

/* Dotted pattern */
.mentor-shape.dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#6b7280 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  top: 40px;
  left: 40px;
  opacity: 0.6;
}

/* =========================
   IMAGE
========================= */
.mentor-image {
  position: relative;
  z-index: 2;
  max-width: 380px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(13, 71, 255, 0.25);
}

/* =========================
   FLOATING LABEL
========================= */
.mentor-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d47ff;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 20px 45px rgba(13, 71, 255, 0.35);
  z-index: 3;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .mentor-section {
    padding: 80px 0;
    text-align: center;
  }

  .mentor-title {
    font-size: 2.1rem;
  }

  .mentor-image-wrapper {
    padding: 20px;
  }

  .mentor-image {
    max-width: 300px;
    margin-top: 40px;
  }

  .mentor-shape.circle {
    width: 260px;
    height: 260px;
    top: -20px;
    right: -20px;
  }

  .mentor-shape.curve {
    width: 300px;
    height: 300px;
    bottom: -40px;
    right: 20px;
  }

  .mentor-shape.dots {
    display: none;
  }
}

@media (max-width: 575px) {
  .mentor-section {
    padding: 60px 0;
  }

  .mentor-title {
    font-size: 1.9rem;
  }

  .mentor-text {
    font-size: 0.95rem;
  }

  .mentor-label {
    font-size: 0.85rem;
    padding: 12px 18px;
  }
}

/* ===== FEATURED COURSES ===== */
.featured-courses {
  background: #f8fbff;
  overflow: hidden;
}

/* Titles */
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f44;
}

.section-subtitle {
  color: #5f6f8f;
  font-size: 15px;
}

/* Slide Card */
.course-slide {
  background: linear-gradient(135deg, #0b3c74, #114a9b);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(14, 45, 110, 0.18);
}

/* Image */
.course-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* Content */
.course-content {
  color: #ffffff;
  padding: 30px 40px;
}

.course-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.course-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* Button */
.course-content .btn {
  background: #ffffff;
  color: #0b3c74;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 30px;
}

.course-content .btn:hover {
  background: #e9f0ff;
}

/* Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0b3c74;
  border-radius: 50%;
  padding: 18px;
}

/* ===== Background Shapes ===== */
.fc-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-1 {
  width: 320px;
  height: 320px;
  background: #e6eeff;
  top: -120px;
  right: -120px;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: #edf3ff;
  bottom: -100px;
  left: -100px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .course-content {
    padding: 25px 20px;
  }
}

/* =========================
   COURSES SECTION
========================= */
.courses-section {
  position: relative;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.course-bg-shape {
  position: absolute;
  z-index: 0;
}

/* Angled soft blob (top-right) */
.course-shape-one {
  width: 520px;
  height: 420px;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 255, 0.12),
    rgba(13, 71, 255, 0.04)
  );
  border-radius: 40% 60% 70% 30%;
  top: -180px;
  right: -220px;
  transform: rotate(18deg);
}

/* Floating dot grid (bottom-left) */
.course-shape-two {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#6b7280 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  bottom: 80px;
  left: 80px;
  opacity: 0.35;
}

/* Keep content above shapes */
.courses-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   HEADING
========================= */
.courses-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1f44;
}

.courses-title span {
  color: #0d47ff;
}

.courses-subtitle {
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1rem;
  color: #5f6f85;
}

/* =========================
   COURSE CARD
========================= */
.course-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 45px rgba(13, 71, 255, 0.08);
  transition: all 0.4s ease;
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(13, 71, 255, 0.18);
}

/* Highlight Card */
.course-card.highlight {
  border: 2px solid rgba(13, 71, 255, 0.2);
}

/* =========================
   ICON
========================= */
.course-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0d47ff, #00bcd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-icon i {
  color: #ffffff;
  font-size: 28px;
}

/* =========================
   TEXT
========================= */
.course-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a1f44;
}

.course-card p {
  font-size: 0.95rem;
  color: #5f6f85;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .courses-title {
    font-size: 2.1rem;
  }

  .course-shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .courses-title {
    font-size: 1.9rem;
  }

  .courses-subtitle {
    font-size: 0.95rem;
  }
}

/* =========================
   PROFESSIONAL SECTION
========================= */
.professional-section {
  position: relative;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.pro-bg-shape {
  position: absolute;
  z-index: 0;
}

/* Soft blue curved shape */
.pro-bg-shape.shape-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(13, 71, 255, 0.12), transparent 70%);
  border-radius: 50%;
  top: -180px;
  left: -180px;
}

/* Dotted modern pattern */
.pro-bg-shape.shape-two {
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#6b7280 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  bottom: 80px;
  right: 100px;
  opacity: 0.4;
}

/* Keep content above shapes */
.professional-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1f44;
}

.section-subtitle {
  max-width: 600px;
  margin: 15px auto 0;
  color: #5f6f85;
}

/* =========================
   IMAGE GRID
========================= */
.image-grid {
  position: relative;
}

.img-large {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(13, 71, 255, 0.25);
}

.img-small {
  position: absolute;
  width: 160px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(13, 71, 255, 0.25);
}

.img-small.top {
  top: -30px;
  right: -20px;
}

.img-small.bottom {
  bottom: -30px;
  right: -20px;
}

/* =========================
   CONTENT
========================= */
.course-info {
  padding-left: 20px;
}

.course-item {
  margin-bottom: 35px;
}

.course-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d47ff;
  margin-bottom: 10px;
}

.course-item p {
  font-size: 0.95rem;
  color: #5f6f85;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .image-grid {
    margin-bottom: 40px;
  }

  .img-small {
    display: none;
  }

  .course-info {
    padding-left: 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .pro-bg-shape.shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ===== RESULT METHODOLOGY ===== */
.result-methodology {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

/* Background Shapes */
.rm-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.rm-shape-1 {
  width: 420px;
  height: 420px;
  background: #e6eeff;
  top: -180px;
  right: -180px;
}

.rm-shape-2 {
  width: 260px;
  height: 260px;
  background: #edf3ff;
  bottom: -120px;
  left: -120px;
}

.rm-dots {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#c7d6ff 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  top: 60px;
  left: 80px;
  opacity: 0.6;
}

/* RESULT Letters */
.result-letters-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-letters-vertical span {
  width: 72px;
  height: 72px;
  background: #ffffff;
  color: #0b1f44;
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(14, 45, 110, 0.12);
  transition: all 0.35s ease;
}

.result-letters-vertical span:hover {
  transform: translateY(-6px);
}

.result-letters-vertical span.active {
  background: linear-gradient(135deg, #1e56ff, #3c7cff);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(30, 86, 255, 0.45);
}

/* Content Box */
.result-content-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 55px;
  box-shadow: 0 35px 90px rgba(14, 45, 110, 0.15);
}

.result-content-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: #1e56ff;
  margin-bottom: 18px;
}

.result-content-box p {
  font-size: 16px;
  color: #5f6f8f;
  line-height: 1.9;
  max-width: 780px;
}

/* Stats */
.result-stat {
  background: #f5f8ff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.result-stat:hover {
  transform: translateY(-4px);
}

.result-stat h4 {
  font-size: 34px;
  font-weight: 800;
  color: #1e56ff;
}

.result-stat span {
  font-size: 14px;
  color: #6b7a99;
}

/* CTA */
.result-content-box .btn-primary {
  background: linear-gradient(135deg, #1e56ff, #3c7cff);
  border: none;
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(30, 86, 255, 0.35);
}
/* Section Header */
.rm-section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0b1f44;
  margin-bottom: 12px;
}

.rm-section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: #5f6f8f;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .rm-section-title {
    font-size: 30px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .result-letters-vertical {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
  }

  .result-content-box {
    padding: 35px 25px;
  }
}

/* =========================
   SPECIAL FEATURES SECTION
========================= */
.special-features {
  position: relative;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.sf-bg-shape {
  position: absolute;
  z-index: 0;
}

/* Large soft blob */
.sf-shape-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 71, 255, 0.1), transparent 70%);
  border-radius: 50%;
  top: -260px;
  right: -260px;
}

/* Bottom wave-like shape */
.sf-shape-two {
  width: 100%;
  height: 220px;
  background: linear-gradient(
    to right,
    rgba(13, 71, 255, 0.06),
    rgba(13, 71, 255, 0.02)
  );
  border-radius: 100% 100% 0 0;
  bottom: -140px;
  left: -20%;
}

/* Keep content above shapes */
.special-features .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1f44;
}

.section-subtitle {
  max-width: 600px;
  margin: 15px auto 0;
  color: #5f6f85;
}

/* =========================
   FEATURE BOX
========================= */
.feature-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 45px rgba(13, 71, 255, 0.08);
  transition: all 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(13, 71, 255, 0.18);
}

/* =========================
   ICON
========================= */
.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #0d47ff, #00bcd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 26px;
  color: #ffffff;
}

/* =========================
   TEXT
========================= */
.feature-box h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #0a1f44;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.1rem;
  }

  .sf-shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ===== TESTIMONIAL MARQUEE ===== */
.testimonial-marquee {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

/* Title */
.tm-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f44;
}

.tm-title span {
  color: #1e56ff;
}

.tm-subtitle {
  font-size: 15px;
  color: #5f6f8f;
}

/* Background Shapes */
.tm-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.tm-shape-1 {
  width: 360px;
  height: 360px;
  background: #e6eeff;
  top: -160px;
  right: -160px;
}

.tm-shape-2 {
  width: 240px;
  height: 240px;
  background: #edf3ff;
  bottom: -120px;
  left: -120px;
}

/* Marquee Rows */
.tm-row {
  overflow: hidden;
}

.tm-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.marquee-left .tm-track {
  animation: marqueeLeft 40s linear infinite;
}

.marquee-right .tm-track {
  animation: marqueeRight 40s linear infinite;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.tm-row:hover .tm-track {
  animation-play-state: paused;
}

/* Cards */
.tm-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  width: 320px;
  box-shadow: 0 18px 45px rgba(14, 45, 110, 0.12);
}

.tm-card p {
  font-size: 15px;
  color: #5f6f8f;
  line-height: 1.7;
  margin-bottom: 18px;
}

.tm-card strong {
  color: #1e56ff;
  display: block;
}

.tm-card span {
  font-size: 13px;
  color: #6b7a99;
}

/* ===== VIDEO CARDS ===== */
.video-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 45, 110, 0.15);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-content {
  padding: 16px 20px;
}

.video-content h6 {
  font-weight: 600;
  color: #0b1f44;
}

.video-content p {
  font-size: 14px;
  color: #6b7a99;
}

/* Responsive */
@media (max-width: 768px) {
  .tm-card {
    width: 260px;
  }

  .tm-title {
    font-size: 30px;
  }
}

/* =========================
   EXPERTISE SECTION
========================= */
.expertise-section {
  position: relative;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES
========================= */
.exp-bg-shape {
  position: absolute;
  z-index: 0;
}

/* Angled panel shape */
.exp-shape-one {
  width: 600px;
  height: 420px;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 255, 0.12),
    rgba(13, 71, 255, 0.04)
  );
  transform: skewY(-12deg);
  top: -180px;
  left: -260px;
  border-radius: 40px;
}

/* Floating soft dots */
.exp-shape-two {
  width: 220px;
  height: 220px;
  background-image: radial-gradient(#6b7280 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  bottom: 120px;
  right: 120px;
  opacity: 0.35;
}

/* Keep content above shapes */
.expertise-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   BADGE
========================= */
.expertise-badge {
  display: inline-block;
  background: rgba(13, 71, 255, 0.1);
  color: #0d47ff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   TITLE
========================= */
.expertise-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
}

.expertise-title span {
  color: #0d47ff;
}

/* =========================
   DESCRIPTION
========================= */
.expertise-desc {
  font-size: 1rem;
  color: #5f6f85;
  margin: 20px 0 30px;
  max-width: 520px;
}

/* =========================
   CTA
========================= */
.expertise-cta .btn {
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(13, 71, 255, 0.25);
}

/* =========================
   AUTHOR
========================= */
.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.expertise-author h6 {
  font-weight: 600;
  color: #0a1f44;
}

.expertise-author small {
  color: #5f6f85;
}

/* =========================
   STATS
========================= */
.stat-card {
  background: #ffffff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(13, 71, 255, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(13, 71, 255, 0.18);
}

.stat-card h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0d47ff;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 0.95rem;
  color: #5f6f85;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .expertise-title {
    font-size: 2.1rem;
  }

  .exp-shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .expertise-title {
    font-size: 1.9rem;
  }

  .expertise-desc {
    font-size: 0.95rem;
  }
}

/* =========================
   SUPPORT SECTION
========================= */
.support-section {
  position: relative;
  padding: 100px 0;
  background: #f8fbff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* =========================
   BACKGROUND SHAPES (NEW STYLE)
========================= */
.support-shape {
  position: absolute;
  z-index: 0;
}

/* Large soft gradient blob */
.support-shape-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 71, 255, 0.12), transparent 70%);
  border-radius: 50%;
  top: -260px;
  left: -260px;
}

/* Diagonal panel */
.support-shape-two {
  width: 600px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 255, 0.08),
    rgba(13, 71, 255, 0.02)
  );
  transform: rotate(-12deg);
  bottom: -160px;
  right: -200px;
  border-radius: 60px;
}

/* Keep content above shapes */
.support-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE
========================= */
.support-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1f44;
}

.support-title span {
  color: #0d47ff;
}

.support-subtitle {
  max-width: 600px;
  margin: 15px auto 0;
  color: #5f6f85;
  font-size: 1rem;
}

/* =========================
   FORM
========================= */
.support-form {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(13, 71, 255, 0.12);
}

/* Inputs */
.support-form input,
.support-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e0e7ff;
  background: #f9fbff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #7b8aa3;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: #0d47ff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 71, 255, 0.1);
}

/* =========================
   BUTTON
========================= */
.support-btn {
  margin-top: 10px;
  padding: 14px 42px;
  border-radius: 30px;
  background: #0d47ff;
  color: #ffffff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background: #0838cc;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .support-title {
    font-size: 2.1rem;
  }

  .support-form {
    padding: 35px 28px;
  }

  .support-shape-two {
    display: none;
  }
}

@media (max-width: 575px) {
  .support-section {
    padding: 70px 0;
  }

  .support-title {
    font-size: 1.9rem;
  }

  .support-subtitle {
    font-size: 0.95rem;
  }

  .support-form {
    padding: 30px 22px;
  }
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: linear-gradient(135deg, #141a4f, #0f153f);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 80px 0 0;
}

/* =========================
   ABOUT
========================= */
.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5f0;
  margin-bottom: 25px;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #0d47ff;
  border-color: #0d47ff;
}

/* =========================
   TITLES
========================= */
.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
}

/* =========================
   LINKS
========================= */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 0.95rem;
  color: #cbd5f0;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.footer-links li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #00e5ff;
}

/* =========================
   CONTACT
========================= */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #cbd5f0;
}

.footer-contact i {
  margin-right: 12px;
  color: #00e5ff;
  font-size: 16px;
  margin-top: 4px;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .site-footer {
    padding-top: 60px;
    text-align: center;
  }

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

  .footer-contact li {
    justify-content: center;
  }

  .footer-links li {
    padding-left: 0;
  }

  .footer-links li::before {
    display: none;
  }
}
.footer-heart {
  color: #ff4d4d;
  margin: 0 4px;
}

.footer-bottom strong {
  color: #00e5ff;
  font-weight: 600;
}
/* =========================
   FLOATING ACTION BUTTONS
========================= */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Scroll Button */
.scroll-btn {
  background: #1a2b4f;
  display: none; /* shown on scroll */
}

/* Call Button */
.call-btn {
  background: #0d47ff;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
}

/* Mobile adjustment */
@media (max-width: 575px) {
  .floating-buttons {
    right: 15px;
    bottom: 20px;
  }
}
/* =========================
   STICKY DEMO BUTTON
========================= */
.demo-sticky-btn {
  position: fixed;
  top: 50%;
  left: -52px;
  transform: rotate(-90deg) translateY(-50%);
  background: linear-gradient(135deg, #0d47ff, #0a36c9);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(13, 71, 255, 0.35);
  transition: all 0.3s ease;
}

.demo-sticky-btn:hover {
  background: #0838cc;
}

/* =========================
   DEMO MODAL
========================= */
.demo-modal {
  border-radius: 20px;
  padding: 10px;
}

.demo-modal .modal-title {
  font-weight: 700;
  color: #0a1f44;
}

/* =========================
   DEMO FORM
========================= */
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e0e7ff;
  margin-bottom: 14px;
  background: #f9fbff;
  font-size: 0.95rem;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #0d47ff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 71, 255, 0.1);
}

/* Submit Button */
.demo-submit-btn {
  width: 100%;
  padding: 14px;
  background: #0d47ff;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-submit-btn:hover {
  background: #0838cc;
}

/* Hide on very small screens if needed */
@media (max-width: 575px) {
  .demo-sticky-btn {
    display: none;
  }
}
