.grid-list > li {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-radius: var(--radius-5);
  padding: 0;
  transition: box-shadow 0.2s;
}

.grid-list > li:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.card-badgWG {
  background: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-5);
  font-weight: 600;
  border-radius: var(--radius-5);
  padding: 8px 22px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  margin: 10px auto 0 auto;
  text-align: center;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.card-badgWG:hover, .card-badgWG:focus {
  background: var(--white);
  color: var(--kappel);
  border: 1px solid var(--kappel);
}
/* === Navbar Dropdown Styles === */
.navbar-dropdown {
  position: relative;
}
.navbar-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-width: 220px;
  z-index: 100;
  padding: 10px 0;
}
.navbar-dropdown:hover .dropdown-menu {
  display: block;
}
.navbar-dropdown.active .dropdown-menu {
  display: block;
  pointer-events: auto;
}
.dropdown-link {
  display: block;
  padding: 10px 24px;
  color: #222;
  font-size: 1.6rem;
@media (max-width: 991px) {
  .navbar-dropdown .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
    padding: 0;
    display: none;
    pointer-events: auto;
  }
  .navbar-dropdown.active .dropdown-menu {
    display: block !important;
    pointer-events: auto;
  }
  .dropdown-link {
    padding: 14px 20px;
    font-size: 1.7rem;
    border-bottom: 1px solid #eee;
  }
}
  color: var(--kappel);
}
.navbar-dropdown:hover .dropdown-menu {
  display: block;
}
@media (min-width: 992px) {
  .navbar-dropdown.active .dropdown-menu {
    display: block;
    pointer-events: auto;
  }
}

:root {

  /**
   * colors
   */

  --selective-yellow: #f5de16d7; 
  --eerie-black: #24f791; /* have to change */
  -webkit-line-clamp: 2;
  line-clamp: 2;
  --eerie-black-2: hsl(150, 3%, 15%); /*footer colour*/
  --quick-silver: #24f791; 
  --radical-red: #1abc9c(178, 77%, 48%, 0.849); 
  --gray-x-11: hsl(0, 0%, 100%);
  --kappel_15: hsla(153, 84%, 49%, 0.151);
  --platinum: #1abc9c56; /** line*/
  --gray-web: hsl(0, 3%, 15%);
  --black_80: #1abc8932;
  --white_50: #1abc9c;
  --black_50: hsla(0, 0%, 0%, 0.966);
  --black_30: hsla(0, 3%, 15%, 0.3);
  --kappel: #1abc9c;
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg,hsl(167, 100%, 50%) 0%,hsl(170, 83%, 50%) 100%);

  /**
   * typography
   */

  --ff-league_spartan: 'League Spartan', sans-serif;
  --ff-poppins: 'Poppins', sans-serif; 

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a,
img,
span,
data,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 0;
  font-family: var(--ff-poppins);
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  line-height: 1;
}

.h1,
.h2 { font-weight: var(--fw-600); }

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
}

.btn {
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 8px 18px;
  border-radius: var(--radius-5);
  overflow: hidden;
  min-width: unset;
  box-sizing: border-box;
}


/* Basic styling (adjust to your theme) */




.h1 {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 700;
}

/* Typing effect */
.typing-effect {
  display: inline-block;
  border-right: 2px solid #16d4ae; /* cursor */
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
}

.typing-text {
  color: #16d4ae;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before { transform: translateX(0); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card { background-color: hsla(var(--color), 0.1); }

:is(.course, .blog) .section-title { margin-block-end: 40px; }


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 12px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active { position: fixed; }

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) { color: var(--kappel); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}



.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list { padding: 15px 20px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--platinum); }

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--kappel); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





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

/* Hero slider (inside section) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.8s ease-in-out;
}

.hero-slider .slide.active {
  left: 0;
}

.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-slider .content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.hero-slider h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-slider p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-slider .btn {
  padding: 12px 25px;
  background: #16d4ae;
  color: #fff;
  font-weight:lighter;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-slider .btn:hover {
  background: #13b697;
}

/* Navigation arrows */
.hero-slider .navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 3;
}

.hero-slider .navigation span {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  padding: 8px;
  user-select: none;
}

.hero-slider .navigation span:hover {
  color: #16d4ae;
}

/* Add color overlay above the image */
.hero-slider .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93, 109, 109, 0.534); /* teal shade overlay */
  z-index: 1;
}

/* Keep text/content above overlay */
.hero-slider .content {
  position: relative;
  z-index: 2;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-slider h1 {
    font-size: 1.8rem;
  }
  .hero-slider p {
    font-size: 1rem;
  }
  .hero-slider .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}



/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle { color: var(--radical-red); }

.category .section-title { --color: var(--kappel); }

.category .section-text { margin-block-end: 40px; }

.category-card {
  padding: 28px 16px;
  text-align: center;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}
.category-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.category-card .card-icon {
  background-color: transparent;
  width: 90px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-5);
  font-weight: 600;
  border-radius: var(--radius-5);
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  margin: 12px auto 0 auto;
  max-width: max-content;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.category-card .card-badge:hover, .category-card .card-badge:focus {
  background: var(--white);
  color: var(--kappel);
  border: 1px solid var(--kappel);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
}

.about-banner .img-holder { border-radius: var(--radius-10); }

.about-shape-2 {
  display: block;
  bottom: -100px;
  left: -60px;
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% { transform: translateY(0); }

  40% { transform: translateY(-30px); }

  60% { transform: translateY(-15px); }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}



/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course { background-color: var(--isabelline); }

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover { transition: var(--transition-2); }

.course-card:is(:hover, :focus-within) .img-cover { transform: scale(1.1); }

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #1abc9c91; /* changed from yellow */
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px 3px;
  border-radius: 4px;
  font-size: 1.5rem;
}

.course-card .abs-badge ion-icon {
  font-size: 1em;
  --ionicon-stroke-width: 50px;
  align-self: center;
}


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

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper { gap: 10px; }

.course-card .rating-wrapper { gap: 3px; }

.course-card .rating-wrapper ion-icon { color: var(--selective-yellow); }

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list { flex-wrap: wrap; }

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}






@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--white_50); }
  100% { box-shadow: 0 0 0 20px transparent; }
}

.video-banner::after {
  inset: 0;
  background-color: var(--black_30);
}





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}
.stats-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.stats-card :is(.card-title, .card-text) { font-family: var(--ff-league_spartan); }

.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
}

/* ✅ Bigger & Colored Icon */
.stats-card .card-icon {
  font-size: 3.5rem;   /* Increase size */
  color: hsl(var(--color)); /* Match box accent color */
  margin-bottom: 15px;
}



/* 📱 Mobile (max 480px) */
@media (max-width: 480px) {
  .stats .grid-list {
    display: grid;
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 12px;
  }

  .stats-card {
    min-height: auto;
    padding: 15px; /* smaller padding */
  }

  .stats-card .card-icon {
    font-size: 2.6rem;
    color: var(--kappel);
    margin-bottom: 10px;
  }

  .stats-card .card-title {
    font-size: 1.8rem;
  }

  .stats-card .card-text {
    font-size: 1.5rem;
  }
}

/* 📱 Tablet (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .stats .grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stats-card {
    min-height: 200px; /* smaller */
    padding: 18px;
  }

  .stats-card .card-icon {
    font-size: 2.2rem; /* reduced */
    color: var(--kappel);
    margin-bottom: 12px;
  }

  .stats-card .card-title {
    font-size: 1.2rem;
  }

  .stats-card .card-text {
    font-size: 0.9rem;
  }
}

/* 💻 Small Laptop (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .stats .grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .stats-card {
    min-height: 220px;
    padding: 20px;
  }

  .stats-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
}

/* 💻 Large Laptop/Desktop (min 1024px) */
@media (min-width: 1024px) {
  .stats .grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .stats-card {
    min-height: 240px; /* reduced height */
    padding: 20px;
  }

  .stats-card .card-icon {
    font-size: 2.6rem; /* smaller than before */
    color: var(--kappel);
    margin-bottom: 15px;
  }

  .stats-card .card-title {
    font-size: 1.3rem;
  }

  .stats-card .card-text {
    font-size: 0.95rem;
  }
}



/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner { border-radius: var(--radius-10); }

.blog-card .card-banner .img-cover { transition: var(--transition-2); }

.blog-card .card-banner::after {
  inset: 0;
  background-color: var(--black_50);
  opacity: 0;
  transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover { transform: scale(1.1); }

.blog-card:is(:hover, :focus-within) .card-banner::after { opacity: 1; }

.blog-card .card-content {
  position: relative;
  margin-inline: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-3);
  margin-block-start: -100px;
  z-index: 1;
}

.blog-card .card-btn {
  position: absolute;
  top: -40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) { background-color: var(--radical-red); }

.blog-card:is(:hover, :focus-within) .card-btn {
  opacity: 1;
  transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
  font-size: var(--fs-5);
}

.blog-card .card-subtitle { text-transform: uppercase; }

.blog-card .card-title {
  margin-block: 10px 15px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.blog-card :is(.card-meta-list, .card-meta-item) { display: flex; }

.blog-card .card-meta-list {
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block-end: 20px;
}

.blog-card .card-meta-item {
  gap: 10px;
  align-items: center;
  color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
  color: var(--kappel);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}



/* ===== Testimonials Section Styling ===== */
/* ===== Testimonials Section Styling ===== */
section.testimonials {
  width: 100%;
  padding: 100px 8%;
  background-color: rgb(245, 245, 245);
  box-sizing: border-box;
}

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

.testimonials .section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #16d4ae; /* fallback color */
}

.testimonials-slider .testimonials-item {
  position: relative;
  padding: 20px 25px;
  background-color: #e0f7f5;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  margin: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.testimonials-item .profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonials-item .profile .profile-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonials-item .profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-item .profile .profile-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile .profile-desc span:nth-child(1) {
  font-size: 1.25rem;
  font-weight: 700;
  color: #16d4ae;
}

.profile .profile-desc span:nth-child(2) {
  font-size: 0.9rem;
  color: #333;
  font-style: italic;
}

.testimonials-item > p {
  margin: 15px 0 20px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
}

.testimonials-item .quote {
  text-align: center;
  margin-top: auto;
}

.testimonials-item .quote i {
  font-size: 25px;
  color: #555;
  opacity: 0.3;
  margin-right: 0;
}

/* Owl Carousel nav buttons style */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #16d4ae;
  cursor: pointer;
  transition: color 0.3s ease;
  outline: none;
  z-index: 10;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  color: #128f7e;
}

.owl-nav button.owl-prev {
  left: -40px;
}

.owl-nav button.owl-next {
  right: -40px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  section.testimonials {
    padding: 60px 4%;
  }

  .testimonials .section-header {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
  }

  .owl-nav button.owl-prev {
    left: 10px;
  }

  .owl-nav button.owl-next {
    right: 10px;
  }
}


/* Section */
.destinations {
  text-align: center;
  padding: 20px 10px;
  background-color: rgba(201, 194, 157, 0.173);
}

.destinations h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.destinations h2 span {
  font-weight: bold;
  color: #1fe9c1;
}

/* Slider Container */
.slider-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Slider */
.slider {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.card {
  min-width: 200px;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 12px;
}

.card-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 12px;
}

/* Destination image */
.card img.destination-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

/* Flag + Title alignment */
.flag-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

/* Flag styling */
.flag {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px; 
  border: 1px solid #ddd;
}

/* Country name */
.card h3 {
  margin: 0;
  font-size: 16px;
}

/* Responsive styles */
@media (max-width: 480px) {
  .card {
    min-width: 120px;
    max-width: 140px;
    padding: 6px;
  }
  .flag {
    width: 18px;
    height: 12px;
  }
  .card img.destination-img {
    height: 60px;
  }
}

/* Continuous scroll animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--gray-x-11);
  font-size: var(--fs-5);
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-brand-text { margin-block: 20px; }

.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}

.footer-brand .wrapper .span { font-weight: var(--fw-500); }

.footer-link { transition: var(--transition-1); }

.footer-link:is(:hover, :focus) { color: var(--kappel); }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list .footer-link { padding-block: 5px; }

.newsletter-form { margin-block: 20px 35px; }

.newsletter-form .input-field {
  background-color: var(--white);
  padding: 12px;
  border-radius: var(--radius-5);
  margin-block-end: 20px;
}

.newsletter-form .btn {
  min-width: 100%;
  justify-content: center;
}

.social-list {

  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 30%;
  border: 2px solid var(--white);
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.footer-social-row .social-list {
  margin-top: 0;
}
.footer-social-row .chat-btn {
  padding: 10px 24px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .footer-social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-social-row .social-list {
    margin-bottom: 16px;
  }
  .footer-social-row .chat-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    max-width: 220px;
  }
}
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:active,
.social-link:focus,
.social-link:hover {
  box-shadow: 0 4px 16px rgba(50,199,199,0.25);
  background: var(--kappel);
  color: var(--white);
}

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

.copyright { text-align: center; }

.copyright-link {
  color: var(--kappel);
  display: inline-block;
}

/* Responsive Google Map in Footer */
.footer-list .footer-map {
  width: 100%;
  max-width: 400px;
  height: 200px;
  border: 0;
  border-radius: 8px;
  display: block;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .footer-list .footer-map {
    max-width: 600px;
    height: 300px;
  }
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 50px;
  left: 15px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 25px;
  padding: 5px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}


.wht-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366 !important;
  color: var(--white);
  font-size: 30px;
  padding: 12px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.wht-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}

.call-btn {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: #2589ff !important;
  color: var(--white);
  font-size: 26px;
  padding: 14px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.call-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}


/*   === Partners Section Styling Starts ===   */
/* Partners Section Styling Removed: Use only class-based styles, no inline styles. */
/*   === Partners Section Styling Ends ===   */
section.faq {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.faq h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #16a085; /* Light green accent */
}

.accordion {
  background: #fff;
  color: #333;
  cursor: pointer;
  padding: 16px 20px;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 16px;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.accordion.active, 
.accordion:hover {
  background: #16a085;
  color: #fff;
}

.accordion:after {
  content: '\002B'; /* plus sign */
  font-weight: bold;
  float: right;
  transition: transform 0.3s;
}

.accordion.active:after {
  content: '\2212'; /* minus sign */
}

.panel {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .faq h2 {
    font-size: 22px;
  }
  .accordion {
    font-size: 15px;
    padding: 14px 16px;
  }
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr; }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header-actions { gap: 30px; }



  
  


  /**
   * VIDEO
   */

  .video .play-btn { padding: 25px; }



  /**
   * STATS
   */

  .stats-card { padding: 40px 30px; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: 1 / 3; }

  .newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form .input-field { margin-block-end: 0; }

  .newsletter-form .btn { min-width: max-content; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn { padding: 15px 30px; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HEADER
   */

  .header .container { padding-inline: 30px; }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }

  
  /**
   * ABOUT
   */

  .about { padding-block-start: 50px; }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: -40px;
    right: -70px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: auto; }

  .newsletter-form .btn { padding-block: 10px; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(4, 1fr); }

  :is(.course, .blog) .grid-list { grid-template-columns: repeat(3, 1fr); }



  

  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }



  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer .grid-list { grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1185px; }

  .shape { display: block; }

  .about-content,
  .video-card,
  .blog { position: relative; }



  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay { display: none; }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }


  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn { margin-inline-end: 0; }
  /* Desktop Navbar */
@media (min-width: 992px) {
  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn { margin-inline-end: 0; }
}

/* ================= MOBILE (max 480px) ================= */
@media (max-width: 480px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -320px;
    background-color: var(--white);
    width: 100%;
    max-width: 280px;
    height: 100%;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
  }

  .navbar.active {
    transform: translateX(280px);
    transition: 0.5s var(--cubic-out);
  }

  .navbar-list {
    padding: 15px 20px;
    display: block;
  }

  .navbar-item:not(:last-child) {
    border-bottom: 1px solid var(--platinum);
  }
}

/* ================= TABLET (481px – 767px) ================= */
@media (min-width: 481px) and (max-width: 767px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -320px;
    background-color: var(--white);
    width: 100%;
    max-width: 320px;
    height: 100%;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
  }

  .navbar.active {
    transform: translateX(320px);
    transition: 0.5s var(--cubic-out);
  }

  .navbar-list {
    padding: 20px;
    display: block;
  }

  .navbar-item:not(:last-child) {
    border-bottom: 1px solid var(--platinum);
  }
}

/* ================= LAPTOP / DESKTOP (min 1024px) ================= */
@media (min-width: 1024px) {
  .navbar {
    all: unset; /* Reset only for desktop */
  }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }
}




  /**
   * ABOUT
   */

  .about .container { gap: 110px; }

  .about-banner .img-holder { margin-inline: 0; }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content { z-index: 1; }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }



  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }



  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }

}