@font-face {
    font-family: 'goodtimesregular';
    src: url('../fonts/GoodTimesRg-Regular.woff2') format('woff2'), url('../fonts/GoodTimesRg-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'goodtimesbold';
    src: url('../fonts/GoodTimesRg-Bold.woff2') format('woff2'), url('../fonts/GoodTimesRg-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
  @font-face {
    font-family: 'rubikblack';
    src: url('../fonts/Rubik-Black.woff2') format('woff2'), url('../fonts/Rubik-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    display: swap;
  }
/* ==============================
   VARIABLES
============================== */
 :root {
            --primary: #12B347;       /* Vibrant Green from image */
            --primary-light: #B8E0A5; /* Light green for bg squares */
            --secondary: #0C133F;     /* Dark Navy Blue */
            --secondary-light: #1A608B; /* Lighter blue for bg squares */
            --bg-grid: #E8E8E8;       /* Grid line color */
            --text-dark: #1A1A1A;
            --text-gray: #666666;
            --white: #FFFFFF;
        }

/* ==============================
   RESET
============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #000;
}
img{
  width:100%;
  display: block;
  height: auto;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #FDFDFD;
  color: var(--secondary);
  overflow-x: hidden;
}

/* ==============================
   LAYOUT HELPERS
============================== */
.container {
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}

/* ================= HEADER ================= */
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}
.header .container {
  width:90%;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
 
}
.logo{
  width:250px;
}
/* DESKTOP NAV */
.nav-links {
  display: flex;  
  align-items: center;
  padding-right: 20px;
  
}
.menu_right{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-link {
  color: #20AC4C;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 15px;
  margin: 0 3px;
}

.nav-link.active , .nav-link:hover {
  background: #20AC4C;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 28px;
  left: 0;
  background: #fff;
  border-radius: 8px;
  display: none;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

/* BUTTON */
.btn-consult {
  background: #20AC4C;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
      transition: 0.3s;
      border: 1px solid #20AC4C;
}
.btn-consult:hover {
  background: #fff;
  color: #20AC4C;
  
}
/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}
.header_inner .menu-toggle {
        
        color: #fff;
    }
/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 20px;
  width:100%;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #20AC4C;
    font-weight: 500;
    font-size: 20px;
}

/* MOBILE DROPDOWN */
.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #20AC4C;
    font-weight: 500;
    font-size: 20px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding: 15px 15px;
    border-bottom: 1px solid #eee;   
    color: #333;
}
.mobile-dropdown-content a{
    color: #333;
    font-size: 16px;
    padding: 10px 0;
}
.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 80px 25px 30px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9999; /* HIGH */
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000; /* ABOVE EVERYTHING */
}

/* RESPONSIVE */
@media (max-width: 1350px) {
.nav-link {
  color: #20AC4C;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 9px;
}

.nav-link.active , .nav-link:hover {
  background: #20AC4C;
  color: #fff;
  padding: 6px 9px;
  border-radius: 50px;
}
.logo {
    width: 220px;
}
.btn-consult {
   
    padding: 10px 15px;
}
}
@media (max-width: 1280px) {

  .nav-links,
  .btn-consult {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/* ================= HERO SWIPER ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.heroSwiper,
.swiper-slide {
    width: 100%;
    height: 100%;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-bg.mobile {
    display: none;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    width:90%;
    
}

.hero-text {
    width:40%;
    color: #0C133F;
}

/* TEXT STYLES */
.hero-label {
    font-family: 'goodtimesregular';
    font-size: clamp(25px, 6vw, 42px);
    color: #0C133F;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-title {
    font-family: 'goodtimesbold';
    font-size: clamp(30px, 8vw, 114px);
    color: #20AC4C;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 0 0;
}

.hero-sub {
    font-family: 'goodtimesregular';
    font-size: clamp(25px, 6vw, 42px);
    color: #0C133F;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 5px 0 0;
    margin: 0;
    position: relative;
    text-align: left;
}

.hero-text p {
    font-size: 1.3rem;
    margin: 8px 0 0;
    font-weight: 300;
}
.hero-text p strong{
  font-weight: 600;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #06AD63;
    border-radius: 30px;
    text-decoration: none;
    color: #06AD63;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
    text-transform: capitalize;
}
.btn:hover {
    background: #06AD63;
    color: #fff;
}

/* UNDERLINE */
.underline {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.underline .green {
    width: 40px;
    height: 6px;
    background: #03DF48;
    border-radius: 50px;
}

.underline .gray {
    flex: 1;
    height: 2px;
    background: #000;
}

/* PAGINATION STYLE */
.hero-section .swiper-pagination-bullet {
    background: #031829;
    opacity: 1;
}

.hero-section .swiper-pagination-bullet-active {
    background: #20AC4C;
    width: 60px;
    border-radius: 5px;
}
.hero-section .swiper-horizontal>.swiper-pagination-bullets, .hero-section .swiper-pagination-bullets.swiper-pagination-horizontal{
  text-align: left;
  left:5%;
  bottom:10%;
  width:90%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-bg.desktop {
        display: none;
    }

    .hero-bg.mobile {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
        display: inline-block;
        padding: 0 2px;
    }

    .hero-sub , .hero-label{
        font-size: 1.3rem;
        text-align: center;
        display: inline-block;
        padding: 0;
    }
    .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 20%;
}
    .hero-text {
        width: 100% !important;
        text-align: center;
    }
    .hero-text p {   
    margin: 0px 0 0;   
}
.hero-section .swiper-horizontal>.swiper-pagination-bullets, .hero-section .swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: center;
    left: auto;
    bottom: 10%;
    width: 90%;
    margin: 0 auto;
}
}
.courses-section {
  padding: 100px 0;
  background: #fff;
    position: relative;
    z-index: 0;
   
}

.courses-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.courses-text {
  flex: 0 0 35%;
}



/* RIGHT */
.courses-slider {
  flex: 1;
}

/* SWIPER GRID */
.coursesSwiper {
  width: 100%;
}

/* CARD */

.courses-subtitle {
    display: block;
    font-size: clamp(19px, 7vw, 22px);
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 300px;
}

.courses-title {
    font-size: clamp(35px, 7vw, 56px);
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1;
    text-transform: capitalize;
}
.courses-title span {
    color: #06AD63;
}

/* ACTIVE CARD (GREEN LIKE IMAGE) */
.course-card.active,
.course-card:hover {
  background: #12B347;
  color: #fff;
}

.course-card h3 {
  
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-group a {
  border: 1px solid #12B347;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  color: #12B347;
}

/* WHITE BUTTON ON HOVER */
.course-card:hover .btn-group a, .course-card.active .btn-group a {
  border-color: #fff;
  color: #fff;
}
.course-card:hover p, .course-card.active p {
  border-color: #fff;
  color: #fff;
}

/* GRID SIZE CONTROL */
.courses-section .swiper-slide {
  height: auto;
}

/* DOTS */
.courses-section .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.courses-section .swiper-pagination-bullet {
  background: #031829;
  opacity: 1;
}

.courses-section .swiper-pagination-bullet-active {
  background: #20AC4C;
  width: 60px;
  border-radius: 5px;
}
.course-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
}
/* SLIDE FIX */
.courses-section .swiper-slide {
  display: flex;
  height: auto;
}
p{
    font-weight: 400;
    font-size: clamp(16px, 5vw, 17px);
    color: #000;
    line-height: 24px;
    padding-top: 10px;
}
/* CARD */
.course-card {
  
  background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 100%;
    margin: 5px 0;
}
.course-top {
    background: #F9FAFB;
    padding: 23px 20px 18px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}
.course-bottom {
    padding: 12px 20px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

/* ACTIVE CARD */
.course-card.active {
  background: #1ba84a;
  color: #fff; 
    background: linear-gradient(180deg, #12B347 0%, #147875 100%);
   
}

/* HOVER EFFECT */
.course-card:hover {
   background: #1ba84a;
  color: #fff; 
    background: linear-gradient(180deg, #12B347 0%, #147875 100%);
  transform: translateY(-5px);
}
.course-card.active .course-top, .course-card:hover .course-top {
    background: none;
    /* border: none; */
}
/* BUTTONS */
.btn-group {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.btn-group a {
  border: 2px solid #12B347;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  color: #12B347;
}

.course-card:hover .btn-group a {
  color: #12B347;
  border-color: #fff;
  background: #fff;

}
.courses-slider {
  width: 100%;
  overflow: hidden;
}

.coursesSwiper {
  width: 100%;
}

.coursesSwiper .swiper-wrapper {
  display: flex;
}

.coursesSwiper .swiper-slide {
  width: auto; /* important */
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .courses-layout {
    flex-direction: column;
  }
}

/* ==============================
   BENEFITS SECTION
============================== */
.benefits-section {
  padding: 60px 0;
  background-color: #F0FCF5;
}

/* MAIN LAYOUT */
.benefits-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
}

/* LEFT CONTENT */
.benefits-content {
 
  width:60% /* 🔥 prevents text from stretching too wide */
}

/* TOP LABEL */
.benefits-kicker {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* TITLE */
.benefits-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.2;
}

/* DESCRIPTION */
.benefits-description {
 
  margin-bottom: 30px;
}

/* SUB HEADING */
.benefits-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px; /* 🔥 balanced spacing */
}

/* ITEM */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

/* ICON */
.benefit-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* RIGHT IMAGE */
.benefits-image-wrapper {
 
  display: flex;
  justify-content: center;
  align-items: center;
  width:40%;
}

.benefits-image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto; /* 🔥 FIX (removed fit-content issue) */
  object-fit: cover;
  border-radius: 20px;
}
/* ==============================
   TABLET
============================== */
@media (max-width: 1024px) {

  .benefits-layout {
    flex-direction: column;
    text-align: center;
  }

  .benefits-content {
    max-width: 100%;
    width:100%;
  }
.benefits-image-wrapper {
   
    width: 80%;
}
  .benefits-title {
    font-size: 2.4rem;
  }

  .benefits-grid {
    justify-content: center;
  }

  .benefit-item {
    justify-content: center;
  }

  .benefits-image-wrapper {
    margin-top: 40px;
  }
}


/* ==============================
   MOBILE
============================== */
@media (max-width: 600px) {

  .benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 2rem;
  }

  .benefits-description {
    font-size: 0.9rem;
  }

      .benefits-grid {
        /* grid-template-columns: 1fr; */
        gap: 12px;
        text-align: left;
    }

  .benefit-item {
    font-size: 0.9rem;
  }

  .benefit-icon-img {
    width: 28px;
    height: 28px;
  }
}
/* ==============================
   COUNTERS SECTION
============================== */
.counters-section {
  padding: 60px 0;
  background: var(--secondary) url(../images/counter_bg.png) no-repeat;
  background-position: center top;
  background-size: cover;
  margin: 0px 0 0;
}

/* GRID */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

/* ITEM */
.counter-item {
  text-align: center;
}

/* NUMBER */
.counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);  
  position: relative;
  font-family: 'rubikblack';
}
.counter-number::after{
    content:"+";
}
.counter-item:last-child .counter-number::after{
    display: none;
}
/* LABEL */
.counter-label {
font-size: clamp(18px, 5vw, 19px);
  color: var(--white);
  font-weight: 900;
  
}
/* Tablet */
@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-number {
    font-size: 1.8rem;
}
}

/* Mobile */
@media (max-width: 600px) {
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .counter-number {
    font-size: 2.2rem;
  }
}
.success-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
 
}
.owl-carousel {  
    z-index: 0 !important;   
}
.testimonials-slider.owl-carousel{
    border-radius: 35px;   
}
.testimonials-slider.owl-carousel .owl-stage {
    border-radius: 35px;
    display: flex;
}
.testimonials-slider.owl-carousel .owl-stage-outer {
    border-radius: 35px;
}
.success-header {
  margin-bottom: 50px;
}

.success-title {
  font-size: 3rem;
}

/* TESTIMONIAL */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 35px;
  box-shadow: 0 15px 40px rgba(6, 173, 99, 0.39);
  text-align: left;
  height: 100%;
}
.testimonials-slider .owl-item {
    padding: 25px 25px 55px;
    border-radius: 35px;
}
.testi-head {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.testi-avatar {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
}
.testi-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.testi-name {
    color: #06AD63;
    font-size: clamp(19px, 7vw, 22px);
    font-weight: 400;
    margin-bottom: 5px;
}
.testi-role {
    font-size: clamp(14px, 7vw, 16px);
    font-weight: 400;
    color: #000;
    line-height: 1;
    margin-bottom: 6px;
}
.testi-body {
  
}
.testi-country {
     font-size: clamp(11px, 7vw, 13px);
    font-weight: 400;  
    color: #000;
    border: 1px solid #CCC;
    padding: 2px 10px 3px;
    border-radius: 50px;
}
.owl-dots {
    margin-top: 30px;
    position: relative;
    display: flex;
    gap: 5px;
    justify-content: center;
}
.owl-carousel button.owl-dot{
    background: #031829 !important;
    opacity: 1;
    width:5px;
    height: 5px;
    border-radius: 50%;

}
.owl-carousel button.owl-dot.active{
    background: #20AC4C !important;
    width: 60px;
    border-radius: 5px;
}

/* REELS */

.success-section .owl-carousel.reels-slider{
    margin-top: 50px;
}
.reel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

.reel-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
background: rgba(10, 10, 10, 0.26);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06AD63;
}

/* SPACING BETWEEN SLIDERS */
.testimonials-slider {
  margin-bottom: 60px;
}
/* ==============================
   PASS OUTS SECTION
   ============================== */

.passouts-section {
    padding: 70px 0;
    background-color: #F0FCF5;
    text-align: center;
}

.passouts-header {
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.passouts-description {   
    margin-top: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   OWL SLIDER FIX
   ============================== */

/* Remove grid behavior completely */
.students-grid {
    display: block;
}

/* Each slide alignment */
.passouts-slider .item {
    display: flex;
    justify-content: center;
}

/* Fix stage alignment */
.passouts-slider .owl-stage {
    display: flex;
    align-items: center;
}

/* Optional spacing consistency */
.passouts-slider .owl-item {
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

/* ==============================
   STUDENT CARD
   ============================== */

.student-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.student-name-unhovered {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6), 0 0 15px rgba(0,0,0,0.9);
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* ==============================
   HOVER OVERLAY
   ============================== */

.student-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(5,69,76,0.9) 0%,
        rgba(3,115,103,0.9) 40%,
        rgba(0,227,149,0.9) 100%
    );
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    color: var(--white);
}

.student-card:hover .student-overlay {
    opacity: 1;
}

.student-card:hover .student-name-unhovered {
    opacity: 0;
}

.student-card:hover .student-img {
    transform: scale(1.05);
}

/* ==============================
   OVERLAY CONTENT
   ============================== */

.overlay-name {
    font-size: clamp(19px, 7vw, 32px);
    font-weight: 600;
    margin-bottom: 8px;
}

.overlay-details {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: left;
}

.overlay-details li {
    font-size: clamp(15px, 7vw, 18px);
    font-weight: 500;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-details li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 50%;
}

/* ==============================
   BADGES
   ============================== */

.passout-badge {
    padding: 4px 12px 6px;
    border-radius: 50px;
    font-size: clamp(15px, 7vw, 18px);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
   
}

.badge-blue {
    background-color: #E5FEFF;
    color: #2563EB;
    border: 1px solid #0008A8;
}

.badge-green {
    background-color: #E5FEFF;
    color: #16A34A;
    border: 1px solid #16A34A;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 992px) {
    .student-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .student-card {
         width: 100%;
    }
}

@media (max-width: 480px) {
    .student-card {
         width: 100%;
    }

    .student-name-unhovered {
        font-size: 1.4rem;
    }

    .overlay-name {
        font-size: 1.2rem;
    }

    .overlay-details li {
        font-size: 0.8rem;
    }
}
/* ==============================
   CAMPUSES SECTION
   ============================== */
.campuses-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
    width:100%;
    position: relative;
}

.campuses-header {
    margin-bottom: 50px;
}

.campuses-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.campuses-subtitle {
   padding: 0;
}

/* GRID */
.campuses-grid {
    display: block;   
    max-width: 100%;
    margin: 0 auto;
}
.campuses-grid .owl-item{
    padding: 0 6px;
}
/* CARD */
.campus-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    cursor: pointer;     
}

/* IMAGE */
.campus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.campus-card:hover .campus-img {
    transform: scale(1.05);
}

/* OVERLAY */
.campus-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;   
   border-radius: 30px;
background: linear-gradient(176deg, rgba(12, 19, 63, 0.00) 3.24%, rgba(12, 19, 63, 0.71) 96.51%);
    color: var(--white);
     width: 100%;
    height: 100%;
    padding: 20px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.campus-card:hover .campus-info {
   border-radius: 30px;
    background: linear-gradient(176deg, rgba(12, 19, 63, 0.56) 3.24%, #0C133F 96.51%);
    bottom: auto;
    top: 0;  
    padding: 20px;   
    justify-content: center;
}
.campus-name {
    font-size: clamp(19px, 7vw, 28px);
    font-weight: 700;
    margin-bottom: 0px;
}

.campus-desc {
    
    color: #fff;
     overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;

}
.campus-card:hover .campus-info .campus-desc {
    color: #fff;
    overflow: visible;
    text-overflow: initial;
    white-space: initial;
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: inherit;
}
.campus-info .btn{
    border-color: #fff;
    color: #fff;
    padding: 5px 15px;
}
.campus-info .btn:hover{
    color:#fff
}
/* ==============================
   RESPONSIVE
   ============================== */

/* Tablet */
@media (max-width: 992px) {
    .campuses-title {
        font-size: 2.5rem;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .campuses-section {
        padding: 70px 0;
    }

    .campuses-title {
        font-size: 2rem;
    }

   
    .campus-info {
        padding: 30px 15px 20px;
    }

    .campus-name {
        font-size: 1.2rem;
    }

    .campus-desc {
        font-size: 0.8rem;
    }
}
/* ==============================
   LOGOS SECTION
   ============================== */
.logos-section {
    padding: 70px 0;
    background-color: #F0FCF5; /* keep your original color */
    text-align: center;
}

/* Swiper container */
.logosSwiper {
    width: 100%;
    overflow: hidden;
    margin: 60px 0 0;
}

/* Wrapper alignment fix */
.logosSwiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important; /* smooth continuous motion */
}

/* Each slide */
.logosSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo item */
.logo-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo image */
.logo-item img {
    width: 100%;
    max-width: 200px;
    height: 75px; /* keep your fixed height */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover effect */
.logo-item img:hover {
    transform: scale(1.05);
}

/* ==============================
   RESPONSIVE
   ============================== */

/* Tablet */
@media (max-width: 992px) {
    .logo-item img {
        max-width: 160px;
       
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logos-section {
        padding: 50px 0;
    }

    .logo-item img {
        max-width: 130px;
       
    }
}
/* ==============================
   BLOGS & NEWS SECTION
   ============================== */
.blogs-section {
    padding: 100px 0 40px;
    background-color: var(--white);
}

/* Header */
.blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

/* Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

/* Card */
.blog-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;    
    cursor: pointer;
}

/* Image */
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Date */
.blog-date {
   position: absolute;
    top: 0;
    right: 0;
    background-color: #0C133F;
    color: var(--white);
    padding: 18px 26px 22px;
    border-radius: 0 0 0 65px;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: "Merriweather", serif;
    transition: background-color 0.3s ease;
}
.blog-card:hover .blog-date {
    background-color: transparent;
}
.blog-date .day {
    font-size: clamp(19px, 7vw, 25px);
    font-weight: 300;
    
}

.blog-date .month {
     font-size: clamp(15px, 7vw, 17px);
    font-weight: 300;
    text-transform: capitalize;
}

/* Overlay */
.blog-overlay {
   position: absolute;
    top: 0;
    left: 0;
    right: 0;   
    color: var(--white);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;    
    background: rgba(12, 19, 63, 0.74);
    height: 100%;
    width: 100%;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}
.blog_content{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
     z-index: 6;
     padding: 30px;
     left:50%;
     top:50%;
     opacity: 1;
        transform: translate(-50%,-50%);
        width: 90%;
}
/* Text */
.blog-title {
     font-size: clamp(19px, 7vw, 26px);
    font-weight: 700;
    margin-bottom: 0px;
}

.blog-desc {
   color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badge */
.blog-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #12B347;
    color: var(--white);
    padding: 6px 18px 8px;
    border-radius: 50px;
    font-size: clamp(15px, 7vw, 16px);
    font-weight: 700;
    z-index: 6;
}

/* Button */
.blogs-btn-wrap {
    text-align: center;
    margin-top: 50px;
}
.btn-blue{
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #031829;
    border-radius: 30px;
    text-decoration: none;
    color: #031829;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
    text-transform: capitalize;
}
.btn-blue:hover {
    background: #031829;
    color: #fff;
}

/* ==============================
   RESPONSIVE
   ============================== */

/* Tablet */
@media (max-width: 992px) {
    .blogs-title {
        font-size: 2.4rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .blog-card:nth-child(3){
        display: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blogs-section {
        padding: 70px 0 30px;
    }

    .blogs-title {
        font-size: 2rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card:nth-child(2){
        display: none;
    }
     .blog_wrapper .blog-card:nth-child(2){
        display: block;
    }


   

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-desc {
        font-size: 0.8rem;
    }

    .blog-badge {
        bottom: 15px;
        left: 15px;
        font-size: 0.75rem;
    }
}
/* ==============================
   FAQS SECTION
============================== */
.faqs-section {
    padding: 40px 0 120px;
    background-color: var(--white);
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 40px;
}

.faqs-container {
    max-width: 95%;
    margin: 0 auto;
    text-align: left;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #000;
}

/* QUESTION */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    background: none;
    border: none;
    font-size: clamp(16px, 7vw, 19px);
    font-weight: 400;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

/* ICON */
.faq-icon {
    font-size: 1.1rem;
    color: #000;
    transition: transform 0.3s ease;
    border: 2px solid #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /*color: var(--primary);
    border-color: var(--primary);*/
}

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

    .faq-question {
        font-size: 0.95rem;
        padding: 18px 0;
    }

    .faq-answer-content {
        font-size: 0.9rem;
    }
}

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

    .faqs-section {
        padding: 30px 0 80px;
    }
}
/* ==============================
   GET STARTED SECTION
============================== */
.get-started-section {
    padding-bottom: 100px;
    background-color: var(--white);
}

.get-started-card {
    background:url(../images/ready_bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    border-radius: 25px;
    padding: 70px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;    
    max-width: 100%;
    margin: 0 auto;
    color: var(--white);    
}

/* TEXT */
.gs-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.gs-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0px;
    border: none;
}

.gs-text p {
    font-size: 0.95rem;
    line-height: 1.8;    
    color: #fff;
}

/* FORM */
.gs-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* INPUT */
.gs-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 6px 0;
    font-size: 1rem;
    font-family: inherit;
}

.gs-input::placeholder {
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    text-transform: capitalize;
}

.gs-input:focus {
    outline: none;
    border-bottom-color: var(--white);
}

/* SELECT */
.gs-select-wrapper {
    position: relative;
}

.gs-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
}

.gs-select option {
    color: var(--text-dark);
}

/* ICON */
.gs-select-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    pointer-events: none;
    font-size: 0.8rem;
}

/* BUTTON */
.btn-gs-submit {
    align-self: flex-start;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gs-submit:hover {
    transform: translateY(-3px);   
    background: var(--primary);
    color: #fff;
}
.get-started-card .wpcf7-form-control-wrap {
    padding: 12px 0;
}
/* ==============================
   RESPONSIVE
============================== */

/* Tablet */
@media (max-width: 992px) {
    .get-started-card {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 40px;
        text-align: center;
    }

    .btn-gs-submit {
        align-self: center;
    }
        .get-started-card {
        padding: 40px 70px;
        border-radius: 0;
    }
    .get-started-section .container {
    width: 100%;
}
}

/* Mobile */
@media (max-width: 576px) {
    .get-started-card {
        padding: 40px 32px;
       
    }

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

    .gs-text p {
        font-size: 0.9rem;
    }

    .gs-input {
        font-size: 0.95rem;
    }

    .btn-gs-submit {
        width: 100%;
        text-align: center;
    }
}
/* ==============================
   FOOTER SECTION
============================== */
.site-footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
    font-size: 0.95rem;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

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

.footer-about-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;   
    font-size: 0.9rem;
}
p.footer-working-hours {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* HEADINGS */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--primary);
}

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

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.footer-bottom a{
     color: rgba(255, 255, 255, 0.8);
}
.footer-links-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* COURSES GRID */
.footer-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.footer-contact-list li a{
     color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* BOTTOM */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 15px;
}

/* ==============================
   RESPONSIVE
============================== */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .footer-courses-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo-img {
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 20px;
}
}
/* ==============================
   VIDEO MODAL
============================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* ACTIVE */
.video-modal.active {
    opacity: 1;
    visibility: visible;
}

/* BOX */
.video-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;    
    transform: scale(0.9);
    transition: 0.3s ease;
}

/* SCALE ANIMATION */
.video-modal.active .video-box {
    transform: scale(1);
}

/* IFRAME */
.video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CLOSE BUTTON */
.close-video {
    position: absolute;
    top: -40px;
    right: -5%;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-video:hover {
    color: var(--primary);
}

/* MOBILE */
@media (max-width: 576px) {
    .video-box {
        width: 95%;
    }

    .close-video {
        top: -35px;
        font-size: 28px;
    }
}
video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.social {
    font-size: 0px;
    display: block;
    margin: 0px 0px 0px 0px;
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 2;
}

.social li {
    display: block;
    margin: 0px 0px 14px 0px;
    text-align: center;
}
.social li a {
    display: block;
    font-size: 16px;
    color: #12B347;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
    transition: all 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9);
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width:32px;
    height:32px;
    border: 2px solid #12B347;
    text-decoration: none;
}
.social li a:hover{
  background: #12B347;
  color: #fff;
}
.quote-popup {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;   
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.quote-popup-inner{
     left: 50%;
    top: 50%;
    width: 100%;
    max-width: 700px;
    border: 2px solid #06AD63;
    z-index: 2;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    padding: 70px 50px;
    position: absolute;
}
button.quote-popup-close {
    color: #fff;
    background: #06AD63;
    border: 2px solid #06AD63;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5%;
    right: 3%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpcf7-form-control-wrap {
    position: relative;
    padding: 5px 0;
    display: block;
}
.popup-box input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 14px;
    background: #0aa15f;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.popup-box textarea::placeholder {
    color: #999;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}
.get-started-section form p {
    padding: 0;
}
.get-started-section br {
    display: none;
}
.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px
}



.page-numbers.current {
  background: #0C133F;
  color: #fff
}

.page-numbers {
  margin: 0 4px;
  text-decoration: none;
  padding: 0;
  font-size: 16px;
  padding: 0;
  min-width: 1em;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #0C133F;
  background: 0 0;
  border: 2px solid #0C133F;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  justify-content: center;
  display: flex;
}

a.next.page-numbers {
  background: 0 0;
  color: #0C133F
}

/**********************************************about us page**************************************************/
.header_inner .logo img{
    filter: brightness(0) invert(1);
}
.header_inner .nav-link {
    color: #fff;   
}
.header_inner .nav-link.active , .header_inner .nav-link:hover {
  background: #fff;
  color: #20AC4C;
  padding: 6px 15px;
  border-radius: 50px;
}
.header_inner .btn-consult {
  background: #fff;
  color: #20AC4C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
      transition: 0.3s;
      border: 1px solid #fff;
}
.header_inner .btn-consult:hover {
  background: transparent;
  color: #fff;
  
}
.inner_banner{
    height: auto;
}
.inner_banner .hero-content {
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}
.innerbanner_tittle{
    font-size: clamp(28px, 7vw, 56px);
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0px 0 0;
    width:100%;
}
ul.breadcrumb {
  padding: 10px 0;
  list-style: none;
  display: block;  
  align-items: center;
  justify-content: center;
}
ul.breadcrumb li {
  display: inline;
  font-size: 15px;  
  color: #fff;
  text-transform: capitalize;
  font-weight: 300;
}
ul.breadcrumb li+li:before {
  padding: 6px;
  color: #fff;
  content: "-";
  
}
ul.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}
.about_section{
    width:100%;
    margin: 70px 0 0;
    display: block;
}
.about_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;   
    flex-wrap: wrap;
}
.about_wrapper .about_content{
    width: 48%;
    display: inline-block;
}
.about_wrapper .about_image{
    width: 48%;
    display: inline-block;
}
.about_wrapper .about_image img{
    border-radius: 30px;
}
.vision-mission-section {
    margin: 70px 0 0; 
}
.vision_wrapper{
    display: flex;
    margin: 0;
    width:85%;
}
.mission_wrapper{
    display: flex;
    margin: 30px 0 0;
    width:62%;
}
.vm-row {
  position: relative;
  margin-bottom: 100px;
}

/* LINE BASE */
.vm-line {
  position: relative;
  top: 40px;
  left: 0;
  height: 3px;
  background: #000;
  display: block;
  width:63%;
}
.mission_wrapper .vm-line{
    background: #06AD63;
    width:50%;
}
.vm-line::after{
   position: absolute;
  right: 0;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
    background: #000; 
    content: "";
}
.mission_wrapper .vm-line::after{
    background: #06AD63;
}
/* DIFFERENT LENGTHS */


/* CONTENT ALWAYS RIGHT SIDE */
.vm-content {
  margin-left: auto;
  width: 35%;
}
.mission_wrapper .vm-content {
  margin-left: auto;
  width:47%;
}
/* TITLES */
.vm-title {
font-size: clamp(30px, 7vw, 66px);
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-title.green {
  color: #06AD63;
}

.vm-title.dark {
  color: #0f1b3d;
}

.message_container{
    width:100%;
    display: block;
    margin: 70px 0 70px;
}
.message_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;   
    flex-wrap: wrap;
}
.message_wrapper .message_content{
    width: 48%;
    display: inline-block;
}
.message_wrapper .courses-title {
    font-size: clamp(35px, 7vw, 60px);
}
.message_wrapper p {
   
    line-height: 27px;
}
.message_wrapper .message_image{
    width: 48%;
    display: inline-block;
}
.message_wrapper .name{
    font-size: clamp(20px, 7vw, 30px);
    font-weight: 500;
    color: var(--secondary);
    margin-top:20px;
    margin-bottom: 10px;
    line-height: 1;
    text-transform: capitalize;
}
.message_wrapper .name span {
    color: #06AD63;
}
.message_wrapper .designation {
    display: block;
    font-size: clamp(16px, 7vw, 18px);
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 300;
}
.about_campus{
        background-color: #F0FCF5;
}
.social_inner{  
   
    bottom: auto;
    top: 58%;
    z-index: 2;
}
.service-section{
    width:100%;
    margin: 70px auto 0;
    display: block;
    text-align: center;
}
.service-slider .owl-stage {
    display: flex;
}
.service-slider .owl-item {
    padding: 0 5px;
    border-radius: 20px;
    display: flex;
    height: auto !important;
    padding-bottom: 40px;
}
.service-slider .item{
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #06AD63;
    box-shadow: 3px 13px 30.4px 0 rgba(40, 184, 113, 0.08);
        transition: all 0.4s ease;
        margin: 15px 0;
         display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}
.service-slider .owl-item:hover .item{
    background: #06AD63;
    color: #fff;
    box-shadow: 3px 13px 30.4px 0 rgba(40, 184, 113, 0.50);
}
.service-slider .item .image{
    border-radius: 20px;
    position: relative;
}
.service-slider .item .image img{
    border-radius: 20px;
}
.service-slider .item .icon{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 3px 4px 16px 0 rgba(40, 184, 113, 0.52);
    padding: 10px;
    position: absolute;
    bottom:-15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width:75px;
    height:75px;
}
.service-slider .item .icon img{
    width:95%;
}
.service-slider .item .content{
    padding: 18% 30px 30px;
    text-align: center;    
}
.service-slider .item .service-title{
    font-size: clamp(20px, 7vw, 26px);
    font-weight: 700;
    color: #43C183;
}
.service-slider .owl-item:hover .item .service-title, .service-slider .owl-item:hover .item p{
    color: #fff;
}
.about_getstarted{
    margin-top: 70px;
}
.enquire-card {
    background: url(../images/ready_bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    border-radius: 25px;
    padding: 70px 100px;   
    max-width: 100%;
    margin: 0 auto;
    color: var(--white);
}
.enquire-text{
    width:80%;
    text-align: center;
    margin: 0 auto;
}
.enquire-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}
.enquire-text p{
    color: #fff;
}
.enquire-text .btn-gs-submit {
    margin-top: 30px;
    display: inline-flex;
    text-decoration: none;
    text-transform: capitalize;
    width:auto;
}
/**********************************************about us page**************************************************/
/**********************************************coursedetail page**************************************************/
.coursedetail_section{
    width:100%;
    margin: 70px 0 0;
    display: block;
}
.coursedetail_wrapper{
    display: flex;    
    justify-content: space-between;   
    flex-wrap: wrap;
}
.coursedetail_wrapper .image{
    width: 35%;
    display: inline-block;
}
.coursedetail_wrapper .content{
    width: 62%;
    display: inline-block;
}
.coursedetail_wrapper .courseduraton_wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 5px;
}
.coursedetail_wrapper .courseduraton_wrapper .block{
    border-radius: 20px;
    border: 2.26px solid #06AD63;
    background: #F0FCF5;
    padding:14px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:24%;
    text-align: center;
}
.coursedetail_wrapper .courseduraton_wrapper .block .icon{
    width: 30%;
    display: block;
    margin: 0 auto;
}
.duration_tittle {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 800;
    color: #0C133F;
    margin: 0;
    padding: 6px 0 0;
}
.coursedetail_wrapper .courseduraton_wrapper .block p{
    padding: 4px 0 0;
    font-size: clamp(13px, 5vw, 14px);
}
.whychoose_section{
    margin: 70px 0 0;
    display: flex;
    width:92%;
    align-items: center;
}
.whychoose_section .left{
    width:50%;
    display: inline-block;
    background: #F0FCF5;
    padding:6% 10%;
}
.whychoose_section .right{
    width:50%;
    display: inline-block;
    margin: 0 0 0 -1.6%;
}
.whychoose_section .right ul{
    padding: 0px 0 0;
}
.whychoose_section .right ul li {
    font-size: clamp(17px, 5vw, 19px);
    color: #0C133F;
    padding: 8px 0 8px 50px;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.5;
    margin: 7px 0;
}
.whychoose_section .right ul li:nth-child(even){
    background: #F0FCF5;
}
.whychoose_section .right ul li span.circle {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #06AD63;
    color: #06AD63;
    font-size: clamp(17px, 5vw, 19px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.whychoose_section .right ul li span.description{
    display: inline-block;
    padding-left: 15px;
}
.whychoose_section .right ul li strong{
    font-weight: 500;
    color: #06AD63;
}
.detailcampus_section{
    padding: 0;
    margin: 70px 0 0;
}
.detailsuccess_section{
    padding: 0;
    margin: 70px 0 0;
}
/* Layout */
.course-section {
  display: flex; 
  justify-content: center;
  margin: 70px 0 0;
  flex-wrap: wrap;
  text-align: left;
}
.course-section .block{
    width:33.333%;
    display: inline-block;
    padding: 10px 20px;
}
/* Card */
.course_card {
  width: 100%;
  padding: 50px;
  border-radius: 28px;
background: #F0FCF5;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.01);
  position: relative;
  transition: 0.3s ease;
  color: #000;
}

/* Light cards */
.course_card.light {
  
}

/* Active card */
.course_card.active, .course_card:hover{
  background: #16A34A;
  color: #fff;
  
}

/* Badge */
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.course-badge.green { background: #16A34A; }
.course-badge.orange { background: #793409; }
.course-badge.gray { background: #727272; }

.course_card.active .course-badge, .course_card:hover .course-badge{
    border: 2px solid #fff;
}

/* Text */
h3.german_tittle {
  font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    color: #16A34A;
    margin: 0;
    padding: 0px 0 0;
}
.course_card.active h3.german_tittle, .course_card:hover h3.german_tittle, .course_card.active p, .course_card:hover p{
    color: #fff;
}

.course-sub {
 padding: 0;
  margin-bottom: 15px;
}

/* Info list */
.course-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.course-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
 font-weight: 400;
    font-size: clamp(16px, 5vw, 17px);   
    line-height: 24px;
 
}

/* Icons */
.icon svg {
  width: 20px;
  height: 20px;
  stroke: #16A34A;
  fill: none;
  stroke-width: 2;
}
.course_card.active .icon svg, .course_card:hover .icon svg{
    stroke: #fff;
}
/* Buttons */
.course-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 9.648px;
border: 2px solid #16A34A;
background: transparent;
}
.course_card.active .course-btn, .course_card:hover .course-btn{
    background: #fff;
    color: #16A34A;
}
/* Outline button */
.course-btn.outline {
  border: 2px solid #1f9d4c;
  background: transparent;
  color: #1f9d4c;
}

/* Filled button */
.course-btn.filled {
  background: #eaeaea;
  border: none;
  color: #1f9d4c;
}

/* Active card button tweak */
.course_card.active .course-btn.filled, .course_card:hover .course-btn.filled  {
  background: #f1f1f1;
}

/* Hover */
.course_card:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .course-section {
    flex-direction: column;
    align-items: center;
  }

  .course_card.active {
    transform: none;
  }
}
.enquire-card .gs-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 30px auto 0;
    text-align: center;
    justify-content: center;
}
.enquire-card .gs-form .btn-gs-submit {
    align-self: flex-start;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    margin: 0 auto;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;    
    margin-top: 10px;
    grid-column: 1 / 3;
    grid-auto-columns: 1/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detailfaq_section{
    margin: 70px 0;
    padding: 0;
}
.about_getstarted .enquire-text h2{
    font-size: clamp(28px, 7vw, 56px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    text-transform: capitalize;
}
.enquire-card form.wpcf7-form.init {
    display: flex;
    flex-direction: column;
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 100%;
    margin: 30px auto 0;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.enquire-card .wpcf7-form-control-wrap {
    position: relative;
    padding: 0px 0;
    display: block;
}
span.wpcf7-spinner {
    position: absolute;
    bottom:0;
    left:0;
}
.enquire-card p.wpcf7-form-control-wrap {
    grid-column: 1 / 3;
}

/**********************************************coursedetail page**************************************************/
/**********************************************courselist page**************************************************/
.courseslist-section {
  max-width: 100%;
  margin: 70px auto;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab {
  font-size: clamp(19px, 7vw, 20px);
  font-weight: 400;
  padding: 10px 26px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #000;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab:hover {
  background: #06AD63;
  color: #fff;
}

.tab.active {
  background: #06AD63;
  color: #fff;
}

/* ===== COURSE CARDS FLEX GRID ===== */
.courseslist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

/* ===== COURSE CARD ===== */
.courselist-card {
  background: #D9FFE9;
  border-radius: 0 0 0 67px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* FLEX WIDTH */
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.courselist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(34,197,94,0.18);
}

/* Card image */
.listcard-image {
  overflow: hidden;
  flex-shrink: 0;
}

.listcard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.courselist-card:hover .listcard-image img {
  transform: scale(1.05);
}

/* Card body */
.listcard-body {
  padding: 24px 35px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listcard-title {
  font-size: clamp(19px, 7vw, 22px);
  font-weight: 800;
  color: #127F72;
  text-align: center;
  margin-bottom: 14px;
}

.listcard-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #444;
  text-align: center;
  flex: 1;
  margin-bottom: 22px;
}

/* Buttons */
.listcard-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
}

.btn-outline {
  display: inline-block;
  padding: 9px 22px;
  border: 2px solid #12B347;
  border-radius: 30px;
  color: #12B347;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline:hover {
  background: #12B347;
  color: #fff;
}

/* Hidden state */
.courselist-card.hidden {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .courselist-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .courselist-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/**********************************************courselist page**************************************************/
/**********************************************career page**************************************************/
/* SECTION */
.jobs-section {
  max-width: 100%;
  margin: 70px auto;
 
}
.job_wrapper{
    display: flex;
  flex-direction: column;   
  gap: 25px;
  width:100%;
}
/* ===== CARD ===== */
.job-card {
  display: flex;
  align-items: stretch; /* IMPORTANT */
  justify-content: space-between;
  background: #F0FCF5;
  padding: 25px 30px;
  border-radius: 12px;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== LEFT CONTENT ===== */
.job-left {
  flex: 2;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  
}

.job-card h3 {
  color: #06AD63;
  margin: 0;
      font-size: clamp(18px, 4vw, 20px);
}

.job-type {
  font-size: 14px;
  white-space: nowrap;
  color: #000;
}

.job-left p {
  font-size: clamp(13px, 4vw, 15px);
  color: #656565;
}
.job-card p{
    color: #000;
     font-size: clamp(13px, 4vw, 15px);
     padding: 8px 0 0;
}
/* ===== COMMON COLUMN STYLE ===== */
.job-salary,
.job-location,
.job-action {
  display: flex;
  flex-direction: column;  
  border-left: 2px solid #06AD63;
  padding-left: 20px;
}

/* ===== SALARY ===== */
.job-salary {
  flex: 1;
  align-items: center;
}
.job-salary h4 {
  color: #0aa15f;
  margin-bottom: 5px;
}

/* ===== LOCATION ===== */
.job-location {
  flex: 1.5;
}
.job-location h4 {
  color: #0aa15f;
  margin-bottom: 5px;
}

/* ===== BUTTON ===== */
.job-action {
  flex: 0.8;
  align-items: center;
  justify-content: center;
}

.apply-btn {
  background: #06AD63;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
   font-size: clamp(11px, 4vw, 13px);
}
.apply-btn:hover {
  background: #078a4f;
}

/* ===== POPUP ===== */
/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* ===== POPUP BOX ===== */
.popup-box {
  background: #ffffff;
  width: 600px;
  max-width: 90%;
  padding: 30px 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== TITLE ===== */
.popup-box h2 {
  text-align: center;
  color: #0aa15f;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 700;
}

/* ===== CLOSE BUTTON ===== */
.close_btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* ===== INPUTS ===== */
.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 12px 12px;
  margin-bottom: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

/* focus effect */
.popup-box input:focus,
.popup-box select:focus,
.popup-box textarea:focus {
  border-color: #0aa15f;
  box-shadow: 0 0 0 2px rgba(10,161,95,0.15);
}

/* ===== SELECT FIX ===== */
.popup-box select {
  appearance: none;
  background: #fff;
  cursor: pointer;
}

/* ===== FILE UPLOAD ===== */
.file-upload {
  margin-bottom: 15px;
}

.file-upload label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

/* custom file box */
.file-upload input[type="file"] {
  border: 1px dashed #0aa15f;
  padding: 12px;
  border-radius: 10px;
  background: #f6fffa;
  cursor: pointer;
}

/* file name */
#fileName {
  font-size: 13px;
  color: #666;
  margin-top: 0px;
}

/* ===== TEXTAREA ===== */
.popup-box textarea {
  resize: none;
  height: 90px;
}

/* ===== BUTTON ===== */
.popup-box button {
  width: 100%;
  padding: 14px;
  background: #0aa15f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  background: #078a4f;
}

/* ===== ANIMATION ===== */
.popup-box {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-overlay.show .popup-box {
  
  opacity: 1;
}
.popup-box br{
    display: none;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-salary,
  .job-location,
  .job-action {
    border-left: none;
    padding-left: 0;
    align-items: flex-start;
  }

  .job-header {
    flex-direction: column;
    gap: 5px;
  }
}
.file-upload input[type="file"] {
   width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    padding: 14px;
    font-size: 0;
    cursor: pointer;
    position: relative;
    height: 48px;
    padding: 5px 0;
}

/* Custom Button */
.file-upload input[type="file"]::file-selector-button {
    background: #0aa15f;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 0;
    transition: 0.3s;
    position: absolute;
    right: 0;
}

/* Hover */
.file-upload input[type="file"]::file-selector-button:hover {
    background: #088c52;
}

/* Firefox support */
.file-upload input[type="file"]::-webkit-file-upload-button {
    background: #0aa15f;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 15px;
}
/**********************************************career page**************************************************/
/**********************************************contact page**************************************************/
.contactv2-section {
  padding: 70px 0px 0;

}

.contactv2-container {
 
  margin: auto;
  display: flex;
  gap: 70px;
  width:80%;
}

/* LEFT */
.contactv2-left {
  width: 50%;
}

.contactv2-left img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

/* RIGHT */
.contactv2-right {
  width: 50%;
}

/* TITLE */
.contactv2-title {
  font-size: 38px;
  font-weight: 700;
  color: #0c1633;
  margin-bottom: 20px;
}

.contactv2-title span {
  color: #0aa15f;
}

/* TABS */
.contactv2-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 3px solid #06AD63;
  margin:30px 0;  
}

.contactv2-tab {
  padding: 8px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
font-size: clamp(17px, 5vw, 19px);
}

.contactv2-tab.active {
  background: #06AD63;
  color: #fff;
  border-radius: 15px 15px 0 0;
}

/* CONTENT */
.contactv2-content {
  display: none;
}

.contactv2-content.active {
  display: block;
}

/* INFO */
.contactv2-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;  
  color: #000;
  font-size: clamp(16px, 5vw, 17px);
}

.contactv2-icon {
  width: 22px;
  height: 22px;
  fill: #06AD63;
}

/* MAP */
.contactv2-map {
  width: 100%; 
  border-radius: 10px;
  border: none;
  margin-top: 10px;
}

/* SOCIAL */
.contactv2-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.contactv2-social span {
  width: 35px;
  height: 35px;
  background: #0aa15f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.map_wrapper{
    margin: 30px 0 0;
    width:100%;
}
.contact-socials {
    display: flex;
    gap: 15px;
    margin: 40px 0 0;
}

.contact-socials .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #06AD63;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-socials .social-btn:hover {
    background: #0C133F;
    transform: translateY(-3px);
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .contactv2-container {
    flex-direction: column;
  }

  .contactv2-left,
  .contactv2-right {
    width: 100%;
  }

  .contactv2-title {
    font-size: 28px;
  }
}
/**********************************************contact page**************************************************/
/**********************************************blog page**************************************************/
.blog_container {
    display: block;
    width: 100%;
    margin:70px 0;
    position: relative;
}
.blog_wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0px auto 0;
    justify-content: space-between;
}
.blog_wrapper .left {
    width: 62%;
    display: inline-block;
}
.blog_wrapper .left .blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.blog_wrapper .right {
    width: 34%;
    display: inline-block;
    text-align: left;
}
.search {
  display: inline-block;
    position: relative;
    width: 100%;   
}

.search .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 15px;
    background: none;
    color: #06AD63;
}
.is-form-style .is-search-submit path {
    fill: #06AD63;
}
.is-form-style {   
    
}
.is-form-style input.is-search-input{
  width: 100%;
  height: 40px;
  background: #F0FCF5;
  border: none;
  border-radius: 50px;
  font-weight: 400;
  color: #000;
  font-size: 17px;
  text-indent: 20px;  
  text-transform: none;
    
}
.is-form-style input.is-search-input::placeholder{
  padding: 0 !important;
  margin: 0 !important;
}
.is-form-style input.is-search-submit, .is-search-icon {
    display: inline-block !important;
    color: #666;
    background: #1A3F6D;
    box-shadow: none !important;
    outline: 0;
    margin: 0;
    font-size: 14px !important;
    border: 1px solid #7D7D7D !important;
    border-radius: 0;
    line-height: 1;
    height: 40px;
    text-transform: capitalize;
    vertical-align: middle;
    -webkit-transition: background-color .1s ease-in-out;
    -moz-transition: background-color .1s ease-in-out;
    -o-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.is-search-icon {
    width: 40px;
    padding-top: 0px !important;
}
.is-form-style button.is-search-submit {
   
    width: 40px;
    height: 40px;
}
.is-form-style.is-form-style-3 label {
    width: calc(100% - 40px) !important;
}
.search input {
  width: 100%;
  height: 40px;
  background: #F0FCF5;
  border: none;
  border-radius: 50px;
  font-weight: 400;
  color: #000;
  font-size: 17px;
  text-indent: 20px;  
  text-transform: none;
}
.is-search-icon svg {
    width: 26px;
    display: inline;
}

.search input::placeholder{
  color: #252323;
  text-transform: capitalize;
}
.news_list_wrapper {
    width: 100%;
    display: block;
    padding: 0px 0px;
}
.popular_post {
    margin-top: 40px;
}
.news_list_wrapper .tittle {
    color: #000;
    font-weight: 800;
    font-size: clamp(20px, 7vw, 25px);
    line-height: 25px;
    text-transform: capitalize;
    padding: 0 0 8px 0px;
    display: block;
    position: relative;
    border-bottom: 2px solid #D9D9D9;
}
.news_list_wrapper .tittle::after {
    content: "";
    width: 18%;
    height: 2px;
    border-bottom: 3px solid #1A3F6D;
    display: block;
    top: 9.8px;
    position: relative;
}
.news_list {
  display: flex;
  align-items: center;
  margin: 30px 0 0;
  justify-content: space-between;
  flex-wrap: wrap;   
}
.news_list:hover{
  display: flex;
}
.news_list .image {
  width: 27%;
  display: inline-block;
}
.news_list .image img{
  border-radius: 5px;
}
.news_list .content {
  width: 69%;
  display: inline-block;
}
.news_list .content .tittle {
  color: #000;
  font-weight: 400;
  font-size: clamp(14px, 7vw, 16px);
  line-height: 20px;
  text-align: left;
  text-transform: none;
  padding:5px 0 0px;
  border: none;
  margin: 0;
}
.news_list .content .tittle::after{
  display: none;
}
.news_list .content .date {
  color: #000;
 font-weight: 500;
  font-size: clamp(15px, 7vw, 17px);
  line-height: 20px;
  text-align: left;
  text-transform: none;
  padding: 0px 0 0px;
  border: none;
  margin: 0;
  position: static; 
  display: block;
}
.categories {
  margin-top: 40px;
}
.categories ul {
  display: block;
  padding-top: 20px;
}
.categories ul li {
  color: #06AD63;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  padding: 10px 12px;
  margin: 0px 0 0;
  border: 2px solid #06AD63;
  width: 100%;
  background: transparent;
  margin: 10px 0;
  display: inline-flex;
  border-radius:30px;
  justify-content: space-between;
}
.categories ul li:hover, .categories ul li:hover a{
  background: #06AD63;
  color: #fff;
}
.categories ul li a {
  color: #06AD63;
  cursor: pointer;
}
.categories ul li span{
  font-size: 12px;
}
.tags {
  margin-top: 40px;
}
.tags ul {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin: 25px -5px 0;
}
.tags ul li {
  padding: 15px 5px;
  display: inline-block;
}
.tags ul li a {
  color: #D5D5D5;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
  background: transparent;
  padding: 8px 10px;
  width: fit-content;
  border-radius: 30px;
  border: 2px solid #D5D5D5;
}
.tags ul li a:hover {
 
 color: #06AD63;
 border:2px solid #06AD63;
}
a{
    text-decoration: none;
}
.news_content {
    width: 100%;
    display: block;
    text-align: left;
    padding: 0px 0 0px;
}
.news_content a{
  color: #000;
  display: inline;
}
.news_content .image img{
  border-radius: 10px;
}
.blogdetail .left .image {
    width: 100%;
    border-radius: 0px;
    margin: 0px 0 20px;
}
.blogdetail .left .image img{
  border-radius:0;
}
.blogdetail .left .content_area{
  margin: 30px 0 0;
}
.blogdetail .left .content_area h1 {
    font-size: clamp(20px, 7vw, 29px);
    color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0; 
    position: relative;
    text-transform: capitalize;
}
.blogdetail .left .content_area h2 {
    font-size: clamp(19px, 7vw, 26px);
    color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
   margin: 10px 0; 
    position: relative;
    text-transform: capitalize;
}
.blogdetail .left .content_area h3 {
    font-size: clamp(18px, 7vw, 24px);
    color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0; 
    position: relative;
    text-transform: capitalize;
}
.blogdetail .left .maintittle {
    font-size: clamp(20px, 7vw, 30px);
     color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0;    
    position: relative;
    text-transform: capitalize;  
}
.blogdetail .left ul{
    padding: 10px 0 10px 17px;
}
.blogdetail .left ul li{
    font-weight: 400;
    font-size: clamp(16px, 5vw, 17px);
    color: #000;
    line-height: 24px;
    padding: 6px 0;
    display: list-item;
    list-style-type: disc;
}
.blogdetail .left ol{
    padding: 10px 0 10px 17px;
}
.blogdetail .left ol li{
    font-weight: 400;
    font-size: clamp(16px, 5vw, 17px);
    color: #000;
    line-height: 24px;
    padding: 6px 0;
    display: list-item;
    list-style-type:decimal;
}
.blogdetail .left h2 {
    font-size: clamp(19px, 7vw, 26px);
     color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
   margin: 10px 0; 
    position: relative;
    text-transform: capitalize;  
}
.blogdetail .left h4 {
    font-size: clamp(18px, 7vw, 22px);
    color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0;   
    position: relative;
    text-transform: capitalize;  
}
.blogdetail .left h5 {
    font-size: clamp(17px, 7vw, 19px);
    color: #0C133F;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0;    
    position: relative;
    text-transform: capitalize;  
}
/**********************************************blog page**************************************************/
@media (min-width: 1700px) {
    .hero-text {
    width: 38%;    
}
.hero-title {   
    font-size: clamp(30px, 6vw, 90px);
}
}
@media (min-width: 1900px) {
 
.hero-title {   
    font-size: clamp(30px, 8vw, 150px)
}

.hero-text {
    width: 36%;    
}
.hero-label, .hero-sub{
    
    font-size: clamp(25px, 6vw, 52px);
}
}
@media (min-width: 2100px) {
 
.hero-title {   
    font-size: clamp(30px, 6vw, 120px);
}

.hero-text {
    width: 34%;    
}
.hero-label, .hero-sub{
    
    font-size: clamp(25px, 6vw, 50px);
}
}
@media (min-width: 2300px) {
 
.hero-title {   
    font-size: clamp(30px, 6vw, 120px);
}

.hero-text {
    width: 32%;    
}
.hero-label, .hero-sub{
    
    font-size: clamp(25px, 6vw, 50px);
}
}
@media (max-width: 1350px) {
    .course-bottom {
    padding: 12px 14px 24px;
    }
    .btn-group a {   
    padding: 6px 6px;
    }
    .testimonials-slider .owl-item {
    padding: 25px 12px 55px;
    border-radius: 35px;
}

}
@media (max-width: 1280px) {
    .hero-text {
    width:50%;
    color: #0C133F;
}
p {
    font-weight: 400;
    font-size: clamp(14px, 5vw, 15px);
    color: #000;
    line-height: 23px;
    padding-top: 10px;
}
.blog_content {   
    padding: 0;    
    width: 92%;
}
.blog-title {
    font-size: clamp(19px, 7vw, 22px);
}
.blog-badge {
   
    padding: 4px 10px 5px;
    border-radius: 50px;
    font-size: clamp(11px, 7vw, 13px);
  
}
.blog-date .day {
    font-size: clamp(19px, 7vw, 22px);
}
.blog-date .month {
    font-size: clamp(13px, 7vw, 15px);
}
.btn-consult.mobile-btn, .header_inner .btn-consult.mobile-btn {
        display: inline-flex;      
        background: #20AC4C;
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
        border: 1px solid #20AC4C;
        width: fit-content;
        font-weight: 500;
        font-size: 20px;
        margin: 20px 0 0;
    }
}
@media (max-width: 1160px) {
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.testimonial-card {  
    padding: 18px;
}
.campus-desc {
    padding-top: 3px;
}

.campus-card:hover .campus-info {
   
    padding: 12px;
}
.campus-name {
    font-size: clamp(19px, 7vw, 22px);
}
.duration_tittle {
    font-size: clamp(16px, 3vw, 18px); 
}
}
@media (max-width: 1024px) {

.blogs-grid {   
    gap: 5px;
}
.coursedetail_wrapper {   
    justify-content: center;
   }
.coursedetail_wrapper .image {
    width: 100%;
    display: block;
}
.coursedetail_wrapper .content {
    width: 100%;
    display: block;    
    margin: 20px 0 0;
}
.whychoose_section .right ul li {
    font-size: clamp(15px, 5vw, 17px);
    color: #0C133F;
    padding: 8px 0 8px 38px;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.5;
    margin: 5px 0;
}
.whychoose_section .right ul li span.circle {
    width: 35px;
    height: 35px;
}
.whychoose_section .right ul li span.circle {
    width: 35px;
    height: 35px;
}
.course_card {
    width: 100%;
    padding: 50px 20px;
}
.course-section .block {
    width: 33.333%;
    display: inline-block;
    padding: 10px 10px;
}
}
@media (max-width: 992px) {
    .blog_wrapper .blog-card:nth-child(3) {
        display: inline-block;
    }
    .blog_wrapper .left {
    width: 100%;
    display: block;
}
.blog_wrapper .right {
    width: 100%;
    display: block;
    margin: 30px 0 0;
}
    .hero-text {
        width: 60%;      
    }

}
@media (max-width: 850px) {
.about_wrapper .about_content {
    width: 100%;
    display:block;
}
.about_wrapper .about_image {
    width: 100%;
    display:block;
    margin-top: 20px;
}
.vision_wrapper, .mission_wrapper{   
    width: 88%;
}
.vm-line, .mission_wrapper .vm-line {
   
    width: 40%;
}
.vm-content , .mission_wrapper .vm-content {
    margin-left: auto;
    width: 56%;
}
.message_wrapper .message_image {
    width: 55%;
    display: block;
    margin: 0 auto 20px;
}
.message_wrapper .message_content{
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.whychoose_section {
    flex-wrap: wrap;
    width:100%
}
.whychoose_section .left {
    width: 100%;    
    padding: 5%;
    text-align: center;
}
.whychoose_section .right {
    width: 90%;       
    margin: 20px auto 0;
}
.whychoose_section .left h2 br{
    display: none;
    text-align: center;
}
.course-section .block {
        width: 50%;
        display: inline-block;
        padding: 10px 10px;
    }
}
@media (max-width: 700px) {
.counters-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .campus-card:hover .campus-info .campus-desc {
  
    font-size: clamp(12px, 2vw, 15px);
    line-height: 1.3;
}
.enquire-text {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.enquire-card {
 
    padding: 70px 40px;
}
.vm-line {
    position: relative;
    top: 22px;
}
.inner_banner {
    height: 166px;
}
.inner_banner img {
    height: 100%;
}
.inner_banner .hero-content {   
    margin-top: 4%;
}
.header {
    padding: 10px 0 0;
}
.innerbanner_tittle {
    font-size: clamp(28px, 5vw, 56px);
}
.vm-content, .mission_wrapper .vm-content {
        margin-left: 10px;
        width: 90%;
    }
.vm-line, .mission_wrapper .vm-line {
        width: 15%;
    }
    .coursedetail_wrapper .courseduraton_wrapper .block { 
    width: 48%;
    }
    .enquire-card .gs-form {
   
    grid-template-columns: repeat(1, 1fr);
}
 .enquire-card .gs-form .gs-input {   
    grid-column: 1 / 3;
}
.gs-select-wrapper {
   
    grid-column: 1 / 3;
}
.enquire-card .wpcf7-form-control-wrap {
   
    grid-column: 1 / 3;
}
}
@media (max-width: 680px) {
.blog_wrapper .left .blogs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
}
@media (max-width: 630px) {
.course-section .block {
        width: 100%;
        display: inline-block;
        padding: 10px 0px;
    }
    .contactv2-item:first-child {
    flex-wrap: wrap;
}
.contactv2-item:first-child a {
    width: 90%;
}
.contactv2-item span {
    width: 90%;
}
}
@media (max-width: 550px) {
 .benefits-image-wrapper {
        width: 100%;
    }
        .testimonials-slider .owl-item {
        padding: 10px 3px 20px;
        border-radius: 35px;
    }
        .logo {
        width: 153px;
    }
    .courses-section .courses-title br{
        display: none;
    }
}
@media (max-width: 511px) {
    .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 35px;
   box-shadow: none;
    text-align: left;
    border: 2px solid #06AD63;
}
}
@media (max-width: 470px) {
.tab {
    font-size: clamp(18px, 4vw, 19px);
    font-weight: 400;
    padding: 10px 9px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #000;
    transition: all 0.3s ease;
    white-space: nowrap;
}
}
@media (max-width: 450px) {
.counters-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
        .message_wrapper .message_image {
        width: 72%;
}
.listcard-body {
    padding: 24px 20px 28px;
   
}
.listcard-buttons {
   
    gap: 4px;
}
.contactv2-tabs {  
    gap: 8px;   
}
.contactv2-tab {
    padding: 8px 8px;
}
.contactv2-container {
   
    gap: 50px;
    width: 85%;
}
.news_list .content .tittle {  
    font-size: clamp(13px, 2vw, 16px);
}
.innerbanner_tittle {
        font-size: clamp(25px, 5vw, 56px);
        line-height: 1;
    }
    ul.breadcrumb {
    padding: 5px 0 0;
   
}
.underline {    
    margin: 5px 0;
}
    .hero-title {
        font-size: 35px;
    }
    .hero-label, .hero-sub  {   
    font-size: clamp(20px, 6vw, 42px);
    }
    .hero-text p {
        margin: 0px 0 0;
        padding: 0;
    }
    .hero-text .btn{
        margin: 5px 0 0;
    }
    .hero-content {
       
        margin-top: 24%;
    }
    .contactv2-item:first-child a {
        width: 83%;
    }
}
@media (max-width: 370px) {
.tab {
    font-size: clamp(15px, 4vw, 19px);
    font-weight: 400;
    padding: 7px 7px 8px;
}
}