/* ===============================
Hero Section
=============================== */

.hero {
  text-align: center;
  padding: 150px 20px 120px;
  position: relative;
}

/* Glow Effect */

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(160px);
  border-radius: 50%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Switcher */

.switcher {
  display: inline-flex;
  background: rgba(0, 30, 43, 0.8);
  border: 1px solid #1d3846;
  padding: 5px;
  border-radius: 10px;
  gap: 5px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.switch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-family: "Space Grotesk";
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.switch-btn span img {
  width: 16px;
  height: 16px;
}

.switch-btn.inactive {
  color: #8aa3b0;
  background: transparent;
}

.switch-btn.active {
  background: linear-gradient(90deg, #00ed64, #00c853);
  color: #001620;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

.switch-btn.inactive:hover {
  color: white;
}

/* Hero Heading */

.hero h1 {
  font-size: 80px;
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: #00ed64;
}

/* Hero Text */

.hero p {
  color: #9ca3af;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Buttons */

.hero-btns {
  margin-top: 40px;
}

.btn-main {
  background: #00ed64;
  color: #003912;
  padding: 14px 40px;
  border: none;
  font-weight: bold;
  margin-right: 15px;
  box-shadow: 0 0 30px rgba(0, 237, 100, 0.3);
  font-family: var(--font-headline);
  display: inline-block;
}

.btn-outline {
  border: 1px solid #3b4b3b;
  color: white;
  padding: 14px 40px;
  background: transparent;
  font-family: var(--font-headline);
}

/* ===============================
Responsive
=============================== */

/* Large Laptop */
@media (max-width: 1400px) {
  .hero h1 {
    font-size: 70px;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero {
    padding: 140px 20px 100px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero {
    padding: 130px 20px 90px;
  }

  .switcher {
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 120px 15px 80px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-main,
  .btn-outline {
    padding: 12px 30px;
    font-size: 14px;
  }

  .hero-btns {
    margin-top: 30px;
  }

  .switcher {
    gap: 3px;
  }

  .switch-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* Small Mobile */
/* ===============================
Mobile Fix
=============================== */

@media (max-width: 576px) {
  .hero {
    padding: 110px 15px 70px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

  /* Keep switcher side by side */

  .switcher {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 4px;
  }

  .switch-btn {
    font-size: 10px;
    padding: 8px 12px;
  }

  /* Keep button small */

  .btn-main {
    width: auto;
    padding: 12px 22px;
    font-size: 13px;
  }

  /* Keep alignment center */

  .hero-btns {
    display: flex;
    justify-content: center;
  }
}

/* ===============================
Floating Partners
=============================== */

.partners-floating {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}

.partners-box {
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.partners-slider {
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: partners-scroll 25s linear infinite;
}

.partners-track img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.partners-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-box:hover .partners-track {
  animation-play-state: paused;
}

@media (max-width: 1200px) {
  .partners-track {
    gap: 50px;
  }

  .partners-track img {
    height: 60px;
  }
}

@media (max-width: 992px) {
  .partners-floating {
    margin-top: -60px;
  }

  .partners-box {
    padding: 25px;
  }

  .partners-track {
    gap: 40px;
  }

  .partners-track img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .partners-floating {
    margin-top: -50px;
  }

  .partners-track {
    gap: 30px;
  }

  .partners-track img {
    height: 30px;
  }
}

@media (max-width: 576px) {
  .partners-floating {
    margin-top: -40px;
  }

  .partners-box {
    padding: 20px;
  }

  .partners-track {
    gap: 25px;
  }

  .partners-track img {
    height: 50px;
  }
}

/* ===============================
Stats Section
=============================== */

.stats {
  margin-top: 100px;
}

.stat-card {
  background: rgba(17, 45, 58, 0.6);
  backdrop-filter: blur(16px);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid rgba(0, 237, 100, 0.1);
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #00ed64;
  box-shadow: 0 20px 40px rgba(0, 237, 100, 0.1);
  background: rgba(17, 45, 58, 0.9);
}

.stat-card h3 {
  color: #00ed64;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-card p {
  color: #8aa3b0;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 1200px) {
  .stat-card h3 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .stats {
    margin-top: 80px;
  }

  .stat-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .stats {
    margin-top: 70px;
  }

  .stat-card {
    margin-bottom: 20px;
  }

  .stat-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .stat-card {
    padding: 25px 15px;
  }

  .stat-card h3 {
    font-size: 28px;
  }

  .stat-card p {
    font-size: 12px;
  }
}

/* About Company Section*/
.who-section {
  margin-top: 20px;
  padding: 50px 0;
  background: #001620;
  position: relative;
}
.who-header {
  margin-bottom: 40px;
}
.who-badge {
  background: rgba(0, 237, 100, 0.1);
  color: #00ed64;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}
.who-main-title {
  font-size: 48px;
  color: white;
  font-weight: 800;
}
.who-main-title span {
  color: #00ed64;
}
.who-label {
  color: #00ed64;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.who-title {
  font-size: 34px;
  color: white;
  margin-bottom: 20px;
}
.who-text {
  color: #8aa3b0;
  line-height: 1.7;
  margin-bottom: 15px;
}
.who-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1d3846;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 16px;
}
.who-image:hover img {
  transform: scale(1.05);
}

/* Large Laptop */
@media (max-width: 1200px) {
  .who-section {
    padding: 120px 0;
  }

  .who-main-title {
    font-size: 42px;
  }

  .who-title {
    font-size: 30px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .who-section {
    padding: 100px 0;
  }

  .who-main-title {
    font-size: 36px;
  }

  .who-title {
    font-size: 26px;
  }

  .who-text {
    font-size: 15px;
  }

  .who-image {
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .who-section {
    padding: 80px 0;
  }

  .who-header {
    margin-bottom: 30px;
  }

  .who-main-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .who-title {
    font-size: 22px;
  }

  .who-text {
    font-size: 14px;
  }

  .who-label {
    font-size: 11px;
  }

  .who-image {
    margin-top: 25px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .who-section {
    padding: 70px 0;
  }

  .who-main-title {
    font-size: 26px;
  }

  .who-title {
    font-size: 20px;
  }

  .who-text {
    font-size: 13.5px;
  }

  .who-badge {
    font-size: 10px;
    padding: 5px 14px;
  }

  .who-image {
    border-radius: 12px;
  }
}

/* SERVICES Section*/
.services-section {
  padding: 10px 0;

  background: #001620;
}
.service-card {
  background: #0c2a36;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 255, 150, 0.05);
}

.service-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.service-content {
  padding: 28px;
  background: linear-gradient(180deg, #0c2a36, #001620);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.service-card a {
  color: #00ed64;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: 0.3s;
}
.service-card a:hover {
  transform: translateX(5px);
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.service-card:hover img {
  transform: scale(1.08);
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ed64, transparent);
  transition: 0.4s;
}
.service-card:hover::after {
  height: 5px;
}

/* Large Laptop */
@media (max-width: 1200px) {
  .services-section {
    padding: 10px 0;
  }

  .service-card h4 {
    font-size: 18px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .services-section {
    padding: 10px 0;
  }

  .service-content {
    padding: 22px;
  }

  .service-card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .service-card h4 {
    font-size: 17px;
  }

  .service-img {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 10px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .service-content {
    padding: 20px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card a {
    font-size: 14px;
  }

  .service-img {
    height: 220px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .services-section {
    padding: 10px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .service-img {
    height: 200px;
  }

  .service-img img {
    padding: 12px;
  }

  .service-card {
    border-radius: 16px;
  }

  .service-content {
    padding: 18px;
  }
}

/* PROGRAMS  Section*/
.featured-section {
  padding: 100px 0;
  background: #001e2b;
}
.section-label {
  color: #00ed64;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: bold;
  font-family: "Space Grotesk";
}
.section-title {
  font-size: 48px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  color: white;
}

.see-all {
  color: #00ed64;
  cursor: pointer;
  text-decoration: none;
}

/* Card */

.program-card {
  position: relative;
  overflow: hidden;
  background: #112d3a;
  height: 100%;
  border-radius: 18px;
}

/* Image */

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* Overlay */

.program-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #001620, rgba(0, 0, 0, 0.2));
}

/* Content */

.program-card .content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
}

/* Increase Height */

.horizontal-card {
  height: 340px;
}

/* Typography */

.program-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 8px 0;
}

.program-card p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Tag */

.tag {
  background: #00ed64;
  color: #003912;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 4px;
}

.btn-enroll {
  background: white;
  color: #001620;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
  text-decoration: none;
}
.program-card:hover img {
  transform: scale(1.1);
}
/* ===============================
Responsive
=============================== */

/* Large Laptop */

@media (max-width:1200px){

.horizontal-card{
height:320px;
}

}

/* Tablet */

@media (max-width:992px){

.horizontal-card{
height:300px;
}

.section-title{
font-size:40px;
}

}

/* Mobile */

@media (max-width:768px){

.horizontal-card{
height:280px;
}

.section-title{
font-size:32px;
}

.program-card .content{
left:20px;
right:20px;
bottom:20px;
}

}

/* Small Mobile */

@media (max-width:576px){

.horizontal-card{
height:260px;
}

.section-title{
font-size:26px;
}

.tag{
font-size:10px;
}

.program-card h4{
font-size:18px;
}

}

/* Workshop Section */

.workshop-section {
  padding: 100px 0;
  background: #001620;
}

.workshop-card {
  background: #112d3a;
  height: 100%;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

/* Image Wrapper */

.workshop-img-wrapper {
  width: 100%;
  background: #0c2a36;
  padding: 20px;
}

.workshop-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Content */

.workshop-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.workshop-card h4 {
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  margin-bottom: 14px;
}

.workshop-card p {
  color: #8aa3b0;
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Button */

.btn-outline-card {
  width: 100%;
  padding: 14px;
  border: 1px solid #3b4b3b;
  background: transparent;
  color: white;
  font-weight: bold;
  margin-top: auto;
}

/* Borders */

.border-green {
  border-bottom: 4px solid #00ed64;
}

.border-blue {
  border-bottom: 4px solid #8ab4ff;
}

/* Hover */

.workshop-card:hover {
  transform: translateY(-8px);
}

/* Laptop */

@media (max-width: 1200px) {
  .workshop-card h4 {
    font-size: 22px;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .workshop-section {
    padding: 80px 0;
  }

  .workshop-content {
    padding: 20px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .workshop-section {
    padding: 70px 0;
  }

  .workshop-card h4 {
    font-size: 20px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .workshop-section {
    padding: 60px 0;
  }

  .workshop-img-wrapper {
    padding: 15px;
  }

  .workshop-card h4 {
    font-size: 18px;
  }
}

/* TEAM Section */

.team-section {
  padding: 100px 0;
  background: #001620;
}

/* Card */

.team-card {
  background: #112d3a;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image Wrapper */

.team-img-wrapper {
  width: 100%;
  padding: 20px 20px 0 20px;
}

/* Image */

.team-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
}

/* Content */

.team-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}

.team-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: white;
}

.team-content span {
  color: #00ed64;
  font-size: 14px;
  font-weight: 600;
}

.team-content p {
  color: #8aa3b0;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Social */
.team-social {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.team-social i {
  width: 36px;
  height: 36px;
  background: #1d3846;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.team-social i:hover {
  background: #00ed64;
  color: #001620;
}

/* Hover */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}


/* Laptop */
@media (max-width: 1200px) {
  .team-content h4 {
    font-size: 18px;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .team-section {
    padding: 80px 0;
  }

  .team-img-wrapper {
    padding: 18px 18px 0 18px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .team-section {
    padding: 70px 0;
  }

  .team-content {
    padding: 18px;
  }

  .team-content h4 {
    font-size: 17px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }

  .team-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .team-img {
    aspect-ratio: 4/5;
  }
}

/* TESTIMONIAL  Section */
.testimonial-section {
  padding: 100px 0;
  background: #001620;
}
.testimonialSwiper {
  padding-bottom: 50px;
}
.testimonial-card {
  background: #112d3a;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: 0.4s;
  border: 1px solid rgba(0, 255, 150, 0.05);
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.testimonial-user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card h5 {
  color: white;
  margin: 0;
}
.testimonial-card span {
  color: #00ed64;
  font-size: 14px;
}
.testimonial-card p {
  color: #8aa3b0;
  margin: 15px 0;
}
.testimonial-rating {
  color: #00ed64;
}
.swiper-pagination-bullet {
  background: #00ed64;
}
