@import url("https://fonts.googleapis.com/css2?family=Hammersmith+One&family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

/* ==================================================================== 
                             CSS ROOT VARIABLES
==================================================================== */

:root {
  /* Colors */
  --accent-color: #ededed;
  --primary-color: #287203;
   --secondary-color: #287203;
  /* --secondary-color: #ffa732; */
  --text-dark-color: #1d1b1b;
  --text-light-color: #3f3f3f;
  --text-color: #000000db;
  --span-primary-color: #287203;
  --span-secondary-color: #ffb534;
  --rating: #ffd700;
  --body-color: white;
  --header-height: 5rem;

  /* Typography */
  --first-font: "Poppins", sans-serif;
  --second-font: "Hammersmith One", sans-serif;
  --h1-font-size: 4.2rem;
  --h2-font-size: 3rem;
  --h3-font-size: 2.2rem;
  --sub-heading-size: 1.6rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.9rem;

  /* Box-Shadow */
  --box-shadow-1: 0 2rem 4rem rgba(0, 0, 0, 0.3);
  --btn-shadow: ;

  /* Transition */
  --transition-2: all 0.2s ease-in-out;
  --transition-3: all 0.3s ease-in-out;
  --transition-4: all 0.4s ease-in-out;
  --transition-5: all 0.5s ease-in-out;

  /* Border-Radius */
  --border-radius-1: 0.8rem;
  --border-radius-circle: 50%;
  
}
/* ==================================================================== 
                             RESET CSS STYLING
==================================================================== */
* {
  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection {
  color: var(--body-color);
  background: var(--primary-color);
}
html,
body {

  scroll-behavior: smooth;
}
@media screen and (min-width: 200px) and (max-width: 700px) {
    html,
    body {
        overflow-x: hidden;
    }
}
body {
  overflow-x: hidden;
  color: var(--text-color);
  font-family: var(--first-font);
  background: var(--body-color);
}
body::-webkit-scrollbar {
  width: 0.5rem;
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 2px;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
button {
  border: none;
  outline: none;
  font-family: var(--first-font);
}
h1,
h2,
h3,
h4 {
  font-family: var(--second-font);
}
/* ==================================================================== 
                             CSS UTILITY CLASSES
==================================================================== */
.container {
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
  padding-inline: 0.75rem;
  margin-inline: auto;
}
.section {
  padding: 5rem 0;
}
.flexitem {
  display: flex;
  align-items: center;
}
.grid {
  display: grid;
  gap: 2rem;
}
.text-center {
  text-align: center;
}
.btn {
  background: var(--primary-color);
  color: var(--body-color);
  padding: 12px 30px;
  border-radius: var(--border-radius-1);
  cursor: pointer;
  box-shadow: 0rem 0.5rem 1rem #4169e14d;
}
#nav-toggle,
#nav-close {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}
.section-title {
  font-size: var(--h2-font-size);
  position: relative;
  z-index: 2;
}
.border-bottom::after {
  content: "";
  position: absolute;
  width: 33%;
  left: 33%;
  height: 6px;
  bottom: 3px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-1);
  z-index: -1;
  opacity: 0.7;
}
.span {
  color: var(--secondary-color);
}
.home-shape-1{
  position: absolute;
  top: 10%;
  left: 40%;
  width: 15rem;
  z-index: -1;
  opacity: .3;
}
.home-shape-2{
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 10rem;
  z-index: -1;
  opacity: .3;
  rotate: 10deg;
}
.scrollup-btn{
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 1000;
}
#scroll-up{
  display: grid;
  place-items: center;
}
.scroll-up{
  font-size: 1.5rem;
  width: 65px;
  height: 65px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-circle);
  color: var(--body-color);
  transform: translateY(100px);
  transition: var(--transition-4);
}
/* Show scroll-up */
.show-scroll{
  transform: translateY(0);
}

/*  */
.dvc-navbar-title {
  color: #000;
  font-weight: 700;
}

.dvc-navbar-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.dvc-navbar-title {
  
    color: #287203 !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    display: block;
}
@media screen and (min-width: 200px) and (max-width: 700px) {
    .nav-link {
        font-size: 12px !important;
        color: #287203;
    }
}
.nav-link {
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
    border-bottom-color: #287203;
}
/* Small fixed line below Admission & Contact Us */
/* .nav-link-special {
    border-bottom: 3px solid #287203;
}
 */


 .nav-link-special {
    position: relative;
    border-bottom: none !important;
}

.nav-link-special::after {
    content: "";
    position: absolute;
    width: 13px;              /* very tiny line */
    height: 2px;
    background: #287203;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Hover - same tiny line */
.nav-link-special:hover::after {
    width: 13px;
    background: #287203;
}


/* Tablet & Mobile */
@media screen and (max-width: 925px) {

    .dvc-navbar-logo .nav-logo-img {
        width: 75px;
    }

    .dvc-navbar-title {
        font-size: 14px;
    }

}
/* ==================================================================== 
                             HEADER & NAVBAR
==================================================================== */

/* ============================================================
   DIVINE VISION CLASSES - ANNOUNCEMENT BAR
============================================================ */


/* ============================================================
   DVC REGISTER BUTTON BAR
============================================================ */

.dvc-announcement-bar {
    width: 100%;
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    padding: 12px 15px;
}

.dvc-admission-open,
.dvc-admission-close {
    font-size: 18px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}


/* LEFT */

/* .dvc-admission-open {
    text-align: left;
}




.dvc-admission-close {
    text-align: right;
} */
@media screen and (min-width: 926px) {

    .dvc-admission-open {
        position: absolute;
        left: 9px;
    }

    .dvc-admission-close {
        position: absolute;
        right: 9px;
    }

}

/* ============================================================
   DEMO CLASS BUTTON
============================================================ */

/* ============================================================
   DEMO CLASS BUTTON
============================================================ */

.demo-classbtn i {
    margin-left: 10px;
    font-size: 16px;
 }
/* .demo-classbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffc107;
    color: black;

    font-size: 25px !important;
    font-weight: 700 !important;
    text-decoration: none;

    padding: 12px 32px;
    border-radius: 6px;

    white-space: nowrap;
    margin: 0 auto;

    transition: all 0.3s ease;
}  */
.demo-classbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffc107;
    color: black;

    font-size: 18px;
    font-weight: 800;
    text-decoration: none;

    padding: 12px 32px;
    border-radius: 6px;

    white-space: nowrap;
    margin: 0 auto;

    transition: all 0.3s ease;
}

/* HOVER */

.demo-classbtn:hover {
    background: #ffc107;
    color: black;
    transform: translateY(-2px);
}

/* TABLET */

@media screen and (max-width: 925px) {

    .demo-classbtn {
        font-size: 15px;
        padding: 11px 28px;
    }

}

/* MOBILE */

@media screen and (max-width: 535px) {

    .demo-classbtn {
        font-size: 15px;
        padding: 10px 25px;
    }

}

/* REGISTER BUTTON */
.dvc-register-btn i {
    margin-left: 10px;
    font-size: 16px;
}
.dvc-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffc107;
    color: black;

    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    padding: 12px 32px;

    border-radius: 6px;

    transition: all 0.3s ease;
}


/* HOVER */

.dvc-register-btn:hover {
    background: #ffc107;
    color: black;

    transform: translateY(-2px);
}


/* TABLET */

@media screen and (max-width: 925px) {

    .dvc-announcement-bar {
        min-height: 65px;
    }

    .dvc-register-btn {
      white-space: nowrap;
        font-size: 10px;
        padding: 11px 28px;
    }

     .dvc-admission-open,
    .dvc-admission-close {
        font-size: 10px;
    }

}


/* MOBILE */

@media screen and (max-width: 535px) {

    .dvc-announcement-bar {
        min-height: 60px;
        padding: 10px 15px;
    }

    .dvc-register-btn {
      white-space: nowrap;
        font-size: 10px;
        padding: 10px 25px;
    }
    
     .dvc-admission-open,
    .dvc-admission-close {
      margin-left: 3px !important;
      margin-right: 3px !important;
        font-size: 10px;
    }

}



.dvc-announcement-bar {
    width: 100%;
    height: 55px;
    background: #287203;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Marquee */
.dvc-announcement-bar marquee {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 55px;
    white-space: nowrap;
}

/* Announcement text */
.dvc-announcement-item {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 22px;
    white-space: nowrap;
}

/* Separator */
.dvc-announcement-separator {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 5px;
}


/* ============================================================
   TABLET
============================================================ */

@media screen and (max-width: 925px) {

    .dvc-announcement-bar {
        height: 50px;
    }

    .dvc-announcement-bar marquee {
        line-height: 50px;
    }

    .dvc-announcement-item {
        font-size: 16px;
        margin: 0 16px;
    }

    .dvc-announcement-separator {
        font-size: 19px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media screen and (max-width: 535px) {

    .dvc-announcement-bar {
        height: 45px;
    }

    .dvc-announcement-bar marquee {
        line-height: 45px;
    }

    .dvc-announcement-item {
        font-size: 14px;
        font-weight: 600;
        margin: 0 12px;
    }

    .dvc-announcement-separator {
        font-size: 16px;
        margin: 0 2px;
    }
}
/*  */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--body-color);
  z-index: 1000;
  transition: var(--transition-3);
}
/* Show Header */
.show-header {
  box-shadow: 0 1rem 2rem #4169e137;
}
.navbar {
 margin-top: -5px;
  height: var(--header-height);
  justify-content: space-between;
}
.nav-list {
   
    gap: 5rem;
}
.nav-action {
  color: var(--text-color);
  gap: 1.5rem;
}
#search-toggle,
#search-close {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-circle);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition-3);
}
#search-toggle:hover,
#search-close:hover {
  color: var(--body-color);
  background: var(--primary-color);
}
/* ==================================================================== 
                             HOME SECTION
==================================================================== */
.home {
  background-color: white !important;
  margin-top: 1.4rem;
  position: relative;
}
.home-container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.home::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-circle);
  filter: blur(300px);
  opacity: .4;
}
.home-title {
  font-size: 3.2rem;
  line-height: 1.2;
}
.home-description {
  padding-block: 2.4rem;
}
.home-action {
  gap: 2.5rem;
}
.home-action-btn {
  color: var(--text-color);
}
.home-details-title {
  font-size: var(--sub-heading-size);
  font-weight: 600;
}
.home-sub-details {
  border-right: 1px solid #0000009c;
  padding-right: 1rem;
}
.home-details {
  gap: 1rem;
  margin-top: 3.5rem;
}
.home-details-desc {
  font-size: var(--small-font-size);
}
.home-action-btn {
  gap: 0.6rem;
}
.home-img,
/* .learning-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-1);
} */

/* ============================================================
   LEARNING VIDEO
============================================================ */

.learning-video-wrapper {
    position: relative;

    width: 600px;
    height: 600px;

    overflow: hidden;

    border-radius: var(--border-radius-1);
}
/* TABLET + MOBILE */

@media screen and (max-width: 1024px) {

    .learning-video-wrapper {
        width: 100%;
        height: 100%;
        min-height: 200px;
    }

}


/* VIDEO */

.learning-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius: var(--border-radius-1);
}


/* ============================================================
   NEW LABEL
============================================================ */

.learning-video-new {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;

    padding: 5px 11px;

    background: #287203;

    color: #ffffff;

    font-family: "Sen", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    border-radius: 20px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* dvc hero */
.home-img {
    display: block;
}

@media screen and (min-width: 200px) and (max-width: 600px) {
    .home {
        margin-top: 0px !important;
    }
}
/* Tablet */
@media screen and (max-width: 925px) {
    .home-img {
        display: none;
    }
}

/* Mobile */
@media screen and (max-width: 535px) {
    .home-img {
        display: none;
    }
}

/* ================= TABLET ================= */
@media screen and (max-width: 925px) {
    .home-title {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* ================= MOBILE ================= */
@media screen and (max-width: 535px) {
    .home-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}
/*  */
/* ==================================================================== 
                             SEARCH PAGE
==================================================================== */
.search-page {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  background: linear-gradient(#0000008a, #000000ee);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-4);
}
/* Show-Search */
.show-search {
  top: 0;
  opacity: 1;
}
.search-box {
  margin-top: 10rem;
  justify-content: center;
  gap: 1rem;
}
#search-close {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--body-color);
}
.search-btn {
  padding: 15px 40px;
}
.search-input {
  width: 40%;
  padding: 15px 30px;
  border-radius: var(--border-radius-1);
  font-size: 1rem;
}
/* ==================================================================== 
                             LOGIN PAGE
==================================================================== */
.login-page {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  background: var(--body-color);
  z-index: 100;
  transition: var(--transition-5);
  opacity: 0;
}
/* Show Login */
.show-login {
  left: 0;
  opacity: 1;
}
.login-content {
  margin-top: 5rem;
}
.login-form {
  margin-top: 2rem;
}
.login-label {
  padding-block: 0.2rem;
}
.login-wrapper-grid {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
.login-description {
  font-size: 1.2rem;
}
.login-form-input {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem;
}
.login-input {
  width: 100%;
  outline: 1px solid #3f3f3f;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 1.1rem;
}
#star-icon {
  font-size: 10rem;
  position: absolute;
  color: #fff312;
  opacity: 0.3;
  rotate: 30deg;
  top: 7%;
  left: 38%;
}
#login-arrow {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: var(--border-radius-circle);
  color: var(--body-color);
  display: grid;
  place-items: center;
  font-size: var(--normal-font-size);
}
.login-close-message {
  margin: 2rem 0 0 4.5rem;
  font-size: 1.3rem;
  gap: 0.7rem;
  cursor: pointer;
}
.login-input:focus-visible {
  outline: 3px solid var(--secondary-color);
}
.login-action {
  margin-top: 2rem;
}
#google-icon {
  padding-left: 0.5rem;
}
.login-btn {
  width: 100%;
  font-size: var(--normal-font-size);
  margin-block: 0.5rem;
  border-radius: 4px;
}
.login-img {
  margin-top: 3rem;
  width: 100%;
}
/* ==================================================================== 
                             REGISTER PAGE
==================================================================== */
.register-page {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  background: var(--body-color);
  z-index: 100;
  transition: var(--transition-5);
  opacity: 0;
}
/* Show Register */
.show-register {
  left: 0;
  opacity: 1;
}
.no-margin {
  margin-top: 2rem;
}
.margin-1 {
  margin-top: 1rem;
}
.no-align {
  align-items: start;
}
/* ==================================================================== 
                             BRAND SECTION
==================================================================== */
.sub-heading {
  font-size: var(--sub-heading-size);
  opacity: 0.8;
}
.brand-logos {
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  align-items: center;
}
.brand-logo {
  width: 60%;
  height: 100px;
  object-fit: contain;
  opacity: 0.6;
  margin-left: 3rem;
}
#small-logo {
  width: 30%;
  margin-left: 6rem;
}
/* ==================================================================== 
                             POPULAR SECTION
==================================================================== */

/* list of subjetc in cards */
/* ============================================================
   COURSE SUBJECT LIST
============================================================ */

.course-subjects {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.course-subjects li {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffc10740;

    padding: 11px 16px;
    margin-bottom: 10px;

    border-radius: 25px;

    font-size: 16px;
    font-weight: 600;
}


/* GREEN TICK */

.course-subjects li i {
    width: 22px;
    height: 22px;
    min-width: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #287203;
    color: #fff;

    border-radius: 50%;

    font-size: 11px;
}


/* MOBILE */

@media screen and (max-width: 535px) {

    .course-subjects li {
        padding: 10px 13px;
        font-size: 14px;
        gap: 10px;
    }

    .course-subjects li i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 10px;
    }
}
/*  */
.popular {
  position: relative;
}
.popular-courses-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}
.popular-description {
  padding-block: 0.5rem;
}
.popular-box {
  border: 1px solid #0000000e;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-1);
  padding: 1.5rem 2rem;
}
.popular-head-primary {
  font-size: var(--small-font-size);
  padding: 0.3rem 0.5rem;
  background: var(--span-primary-color);
  color: var(--body-color);
  border-radius: 0.2rem;
}
.popular-head-secondary {
  font-size: var(--small-font-size);
  padding: 0.3rem 0.5rem;
  background: var(--span-secondary-color);
  color: var(--body-color);
  border-radius: 0.2rem;
}
.popular-box-heading {
  font-size: var(--h3-font-size);
  padding-block: 1rem;
  justify-content: space-between;
}
#heading-arrow {
  width: 60px;
  border-radius: var(--border-radius-circle);
  height: 60px;
  font-size: 1.2rem;
  background: var(--primary-color);
  display: grid;
  place-items: center;
  color: var(--body-color);
  cursor: pointer;
}
.user-details {
  padding-block: 0.5rem;
  gap: 0.6rem;
}
.user-img {
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}
.popular-btn {
  margin-top: 2rem;
  gap: 0.5rem;
  padding-inline: 1rem;
  margin-inline: auto;
}
/* ================= Swiper ================= */
.swiper-pagination {
  position: initial;
  margin-top: 4rem;
  justify-content: center;
  column-gap: 0.25rem;
}
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  background: var(--primary-color);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  display: none;
}
#arrow-left,
#arrow-right {
  width: 60px;
  border-radius: var(--border-radius-circle);
  height: 60px;
  font-size: 1.2rem;
  background: var(--primary-color);
  color: var(--body-color);
}
/* ==================================================================== 
                             ING SECTION
==================================================================== */
.learn {
  background: #faf8f9;
}
.learning-container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.learning-content .section-title {
  padding-block: 1.4rem;
}
.learning-description {
  padding-block: 0.5rem;
}
.learning-actions {
  margin-top: 2rem;
  gap: 2rem;
}
.learning-action-btn {
  gap: 0.5rem;
}


/* ====================================================================
   SLIDING BANNER
==/* ============================================================
   SLIDING BANNER
============================================================ */

.slidingbanner {
    width: 100%;
    padding: 2rem 0;
}

.slidingbanner-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ================= SWIPER ================= */

.slidingbanner-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 2.63 / 1;
    overflow: hidden;
    margin: 0 auto;
}

/* ================= SLIDE ================= */

.slidingbanner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= IMAGE ================= */

.slidingbanner-image {
    width: 100%;
    height: 100%;
    display: block;

    /* Keep complete banner visible */
    object-fit: contain;
    object-position: center;

    border-radius: var(--border-radius-1);
}


/* ============================================================
   DESKTOP
============================================================ */

@media screen and (min-width: 926px) {

    .slidingbanner {
        padding: 2rem 0;
    }

    .slidingbanner-container {
        max-width: 1400px;
        padding: 0 1.5rem;
    }

    .slidingbanner-swiper {
        width: 100%;
        max-width: 1400px;
        aspect-ratio: 2.63 / 1;
        margin: 0 auto;
    }

    .slidingbanner-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}


/* ============================================================
   TABLET
============================================================ */

@media screen and (max-width: 925px) {

    .slidingbanner {
        padding: 1.5rem 0;
    }

    .slidingbanner-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .slidingbanner-swiper {
        width: 100%;
        aspect-ratio: 2.63 / 1;
        margin: 0 auto;
    }

    .slidingbanner-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: var(--border-radius-1);
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media screen and (max-width: 535px) {

    .slidingbanner {
        padding: 1rem 0;
    }

    .slidingbanner-container {
        width: 100%;
        padding: 0 0.75rem;
    }

    .slidingbanner-swiper {
        width: 100%;
        aspect-ratio: 2.63 / 1;
        margin: 0 auto;
    }

    .slidingbanner-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: var(--border-radius-1);
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media screen and (max-width: 380px) {

    .slidingbanner {
        padding: 0.75rem 0;
    }

    .slidingbanner-container {
        padding: 0 0.5rem;
    }

    .slidingbanner-swiper {
        width: 100%;
        aspect-ratio: 2.63 / 1;
    }

    .slidingbanner-image {
        object-fit: contain;
        object-position: center;
    }
}
/* ==================================================================== 
                             MEMBERS SECTION
==================================================================== */
.members-container > .section-title {
  margin-bottom: 2rem;
}
.member-swiper {
  position: relative;
  width: 100%;
  height: 75vh;
}
.members-image {
  backdrop-filter: blur(20px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-1);
  vertical-align: middle;
}
.members-info {
  position: absolute;
  background: #0101015c;
  backdrop-filter: blur(20px);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  font-size: 1.2rem;
  padding: 1.5rem 1.25rem 0;
  color: #fff;
}
/* ==================================================================== 
                             TESTIMONIAL SECTION
==================================================================== */
.testimonial-swiper {
  width: 100%;
  min-height: 75vh;
}
.testimonial-box {
  justify-content: center;
}
.testimonial-info {
  padding-block: 2rem;
  font-size: 1.2rem;
  font-style: italic;
}
.testimonial-name {
  font-style: italic;
  font-weight: 600;
}
.testimonial-box-data {
  margin-top: 5rem;
  width: 70%;
  min-height: 25rem;
  background: var(--body-color);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow-1);
  padding: 2rem 3rem;
}
.testimonial-rating {
  justify-content: center;
  padding-top: 1rem;
  color: #ffC107;
}
.testimonial-user {
  border-radius: var(--border-radius-circle);
  object-fit: cover;
}
.testimonial-user-image {
  display: flex;
  justify-content: center;
  padding-bottom: 1.5rem;
}
/* ==================================================================== 
                             FAQ SECTION
==================================================================== */
.accordion {
  background: var(--primary-color);
  margin-bottom: 1.2rem;
  border-radius: 5px;
  color: var(--body-color);
  padding: 1.5rem 2.5rem;
}
.accordion-container {
  margin-top: 4rem;
}
.question {
  cursor: pointer;
  justify-content: space-between;
}
.faq-question {
  font-size: 1.5rem;
  font-weight: 500;
}
.answer {
  color: #eaeaea;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-2);
}
#faq-icon.active {
  rotate: 180deg;
  transition: var(--transition-2);
}
/* ==================================================================== 
                             NEWSLETTER SECTION
==================================================================== */
.newsletter-container {
  position: relative;
  width: 100%;
  height: 60vh;
   background: #287203;
  /* background: linear-gradient(45deg, #254fa3, #254fa3, #4225a3); */
  display: flex;
  justify-content: center;
  color: var(--body-color);
  padding: 5rem 2rem;
  border-radius: var(--border-radius-1);
  overflow: hidden;
  z-index: 10;
}
.newsletter-shape-1,
.newsletter-shape-2,
.newsletter-shape-3 {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}
.newsletter-shape-1 {
  rotate: -15deg;
  left: -10%;
  top: -30%;
}
.newsletter-shape-3 {
  right: -10%;
  bottom: -10%;
}
.newsletter-shape-2 {
  right: 30%;
  bottom: -10%;
}
.newsletter-description {
  padding-block: 0.5rem;
}

.newsletter-input {
  width: 100%;
  max-width: 500px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
/* .newsletter-input {
  width: 100%;
  gap: 1rem;
  margin-top: 3rem;
} */
.input-box:focus-visible {
  outline: 3px solid var(--secondary-color);
}
.input-box {
  flex: 1;
  background: #ffffff14;
  backdrop-filter: blur(20px);
  padding: 16px 25px;
  font-size: var(--normal-font-size);
  border-radius: var(--border-radius-1);
  color: var(--body-color);
}
.input-box::placeholder {
  color: #ffffffc0;
}
.newsletter-btn {
  padding: 16px 30px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-1);
  font-size: var(--normal-font-size);
}
/* ==================================================================== 
                             FOOTER SECTION
==================================================================== */
.footer {
  background: #287203;
  /* background: linear-gradient(45deg, #254fa3, #254fa3, #4225a3); */
  color: var(--body-color);
}
.footer-container {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.footer-action {
  padding-right: 4rem;
}
.footer-link-heading {
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.footer-link {
  gap: 0.5rem;
  font-size: 1rem;
  color: #ecececc9;
  padding-block: 0.4rem;
  transition: var(--transition-2);
}
#footer-arrow-icon {
  font-size: 0.7rem;
}
.footer-link:hover {
  transform: translateX(7px);
}
.footer-social-icons {
  margin-top: 2rem;
  gap: 1rem;
}
#social-icon {
  width: 50px;
  border-radius: var(--border-radius-circle);
  height: 50px;
  font-size: 1.3rem;
  border: 1px solid var(--body-color);
  color: var(--body-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition-3);
}
#social-icon:hover {
  background: var(--body-color);
  color: var(--text-color);
}
.footer-bottom {
  padding: 1rem 0;
  background: var(--secondary-color);
  color: var(--body-color);
  font-size: 1.2rem;
}
.footer-playstore-img {
    width: 160px;
    height: auto;
    display: block;
    margin-top: 8px;
}
/* ==================================================================== 
                             MEDIA QUERRIS
==================================================================== */
@media screen and (max-width: 1400px) {
  :root {
    --h1-font-size: 3.8rem;
  }
}
@media screen and (max-width: 1250px) {
  .home {
    margin-top: 3rem;
  }
  :root {
    --h1-font-size: 3.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .home-container,
  .learning-container {
    grid-template-columns: 1fr;
    align-items: center;
  }
}
/* @media screen and (max-width: 925px) {
  #nav-close,
  #nav-toggle {
    display: block;
       color: #287203;
  }
  #nav-close {
    position: absolute;
    top: 2%;
    right: 5%;
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-circle);
    display: grid;
    place-items: center;
    background:  #287203;;
       color: white;
   
  }
  .nav-menu {
    position: absolute;
    top: 0;
    right: -100%;
    display: block;
    
    background: var(--body-color);
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: var(--transition-4);
    opacity: 0;
  }
  
  .show-nav {
    right: 0;
    opacity: 1;
  }
  .nav-list {
    flex-direction: column;
    margin-top: 4rem;
    gap: 3rem;
  }
  .nav-link {
    font-size: 2rem;
    border-bottom: 3px solid #3f3f3f55;
    width: 100%;
  }
  .login-img {
    display: none;
  }
  .login-wrapper-grid {
    grid-template-columns: 1fr;
  }
} */
@media screen and (max-width: 925px) {

    #nav-close,
    /* #nav-toggle {
      color: white;
      
      background-color: #287203;;
        display: block;
    } */
#nav-toggle {
    color: white !important;
    background-color: #287203;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
    #nav-close {
        position: absolute;
        top: 2%;
        right: 5%;
        width: 45px;
        height: 45px;
        border-radius: var(--border-radius-circle);
        display: grid;
        place-items: center;
        background: #287203;
        color: white !important;
        z-index: 101;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;

        display: block;

        background: var(--body-color);

        width: 75%;
        max-width: 100%;
        height: 100vh;

        z-index: 100;

        transition: var(--transition-4);
        opacity: 0;

        overflow-x: hidden;
        overflow-y: auto;
    }

    .show-nav {
        right: 0;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 4rem;
        gap: 3rem;

        width: 100%;
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 1rem;

        box-sizing: border-box;
    }

    .nav-link {
        font-size: 2rem;

        width: auto;
        max-width: 100%;

        display: inline-block;

        border-bottom: 3px solid transparent;
        transition: border-color 0.3s ease;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .nav-link:hover {
        border-bottom-color: #287203;
    }

    /* Admission + Contact tiny line */
    .nav-link-special {
        position: relative;
        display: inline-block;
        width: auto;
        border-bottom: none !important;
    }

    .nav-link-special::after {
        content: "";
        position: absolute;

        width: 13px;
        height: 2px;

        background: #287203;

        bottom: -5px;
        left: 50%;

        transform: translateX(-50%);

        border-radius: 3px;
    }

    .nav-link-special:hover::after {
        width: 13px;
        background: #287203;
    }

    .login-img {
        display: none;
    }

    .login-wrapper-grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 535px) {
  :root {
    --h1-font-size: 2.8rem;
    --h2-font-size: 2.5rem;
  }
  #home-star-icon{
    display: none;
  }
  .nav-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    text-size-adjust: 10px;
  }
  /* .popular-courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  } */
    .popular-courses-grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
    }
  .brand-logos {
    gap: 2rem;
  }
  #small-logo {
    margin-left: 3.2rem;
  }
  .testimonial-box-data {
    padding: 2rem 2rem;
    width: 80%;
  }
  .testimonial-info {
    font-size: 1rem;
    padding-block: 1rem;
  }
  #arrow-left,
  #arrow-right {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1.3rem;
  }
  .accordion {
    padding: 1.3rem 1.8rem;
  }
  .answer {
    font-size: var(--small-font-size);
  }
  .newsletter-container {
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .nav-action {
    gap: 0.5rem;
  }
  .popular-box-heading {
    font-size: 1.8rem;
  }
  .newsletter-description {
    font-size: var(--small-font-size);
  }
  #search-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  #search-close {
    color: var(--body-color);
  }
  .search-input {
    width: 60%;
  }
  .scroll-up{
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 450px) {

    .navbar {
        height: calc(var(--header-height) - 0.5rem);
    }

    .nav-link {
        font-size: 1.4rem;
    }

    .nav-logo-img {
        width: 180px;
        max-width: 100%;
    }

    .nav-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    #nav-close {
        font-size: 1.1rem;
    }

    .nav-list {
        align-items: flex-start;
        margin: 5rem 0 0 2rem;
        padding-right: 1rem;
    }
}
/* @media screen and (max-width: 450px) {
  .navbar {
    height: calc(var(--header-height) - 0.5rem);
  }
  .nav-link {
    font-size: 1.4rem;
  }
  .nav-logo-img {
    width: 190px;
  }
 
  .nav-btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  #nav-close{
    font-size: 1.1rem;
  }
  .nav-list{
    align-items: start;
    margin: 5rem 0 0 4rem;
  }
} */
@media screen and (max-width: 435px) {

    .nav-logo-img {
        width: 150px;
        max-width: 100%;
    }

    .nav-action {
        gap: 0.2rem;
    }

    .navbar {
        height: calc(var(--header-height) - 1rem);
    }

    .nav-btn {
        white-space: nowrap;
    }

    #nav-toggle {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 390px) {
  #search-toggle {
    display: none;
  }
  .home-shape-1{
    left: 50%;
    width: 10rem;
  }
  .home-shape-2{
    display: none;
  }
  .popular-description{
    font-size: var(--small-font-size);
  }
}
@media screen and (max-width: 370px) {
  :root {
    --h1-font-size: 2.8rem;
    --h2-font-size: 1.8rem;
  }
  .section {
   
    padding: 3.5rem 0;
  }
  .home-description {
    padding-block: 1.8rem;
  }
  .nav-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .nav-logo-img {
    width: 140px;
  }
  
  .brand-logos {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 0;
  }
  .testimonial-box-data {
    margin-top: 3rem;
    width: 90%;
    padding: 2rem 1rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .accordion {
    padding: 1rem 1rem;
  }
  .answer {
    font-size: 0.8rem;
  }
  .popular-box {
    padding: 1.2rem 1rem;
  }
  .newsletter-btn {
    padding: 12px 25px;
    font-size: var(--small-font-size);
  }
  /* .input-box {
    width: 120%;
    padding: 12px 25px;
    font-size: var(--normal-font-size);
  } */

  .input-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    padding: 12px 25px;
    font-size: var(--normal-font-size);
}
  .newsletter-input {
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .newsletter-container {
    padding: 5rem 1rem;
  }
  .newsletter-input {
    margin-top: 2rem;
  }
  .newsletter-shape-1,
  .newsletter-shape-2,
  .newsletter-shape-3 {
    opacity: 0.1;
  }
  .login-description {
    font-size: var(--small-font-size);
  }
  .login-close-message {
    margin: 1rem 1rem;
    font-size: var(--normal-font-size);
  }
  .login-input {
    outline: 1px solid #3f3f3f87;
    padding: 10px 18px;
    font-size: 1rem;
  }
  .login-content {
    margin-top: 2rem;
  }
  .login-mt {
    margin-top: 2rem;
  }
  .login-form-input {
    padding-block: 0;
  }
  .popular-box{
    font-size: var(--small-font-size);
  }
  .login-btn{
    padding: 10px 30px;
    margin-block: .3rem;
  }
}



/* newletrer */


@media screen and (max-width: 535px) {

    .newsletter-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .newsletter-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;

        flex-wrap: wrap;
    }

    .input-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .newsletter-btn {
        max-width: 100%;
    }
}



/* ========


/* ================================
   STUDENT RESULT SLIDER
================================ */
/* =========================================================
   RESULT CARD
========================================================= */

.dvc-studentresult-card {
    position: relative;

    width: 90%;
    min-width: 0;
    min-height: 300px;

    background:transparent;

    border-radius: 35px;

    overflow: hidden;

    box-sizing: border-box;

    border: 1px solid #eeeeee;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    text-align: center;
}


/* =========================================================
   GREEN TRIANGLE
   ONLY BOTTOM-RIGHT
========================================================= */

.dvc-studentresult-card::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 290px;
    height: 180px;

    background: #287203;

    clip-path: polygon(
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   ROUND IMAGE
========================================================= */
.dvc-studentresult-card-image {
    position: relative;
    z-index: 2;

    width: 120px;
    height: 120px;

    margin: 30px auto 18px;

    padding: 5px;

    border-radius: 50%;

    border: 4px solid #ffc107;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}



.dvc-studentresult-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    border-radius: 50%;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.dvc-studentresult-card-content {
    position: relative;

    z-index: 3;

    padding: 0 18px 40px;

    text-align: center;

    background: transparent;
}


/* =========================================================
   STUDENT NAME
========================================================= */

.dvc-studentresult-card-content h3 {
    margin: 0 0 7px;

    color: #252525;

    font-family: "Sen", sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   EXAM
========================================================= */

.dvc-studentresult-exam {
    display: block;

    margin: 0 0 7px;

    padding: 0;

    color: #287203;

    background: transparent;

    border-radius: 0;

    font-family: "Sen", sans-serif;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   RESULT
========================================================= */

.dvc-studentresult-card-content h4 {
    margin: 4px 0 6px;

    color: #287203;

    font-family: "Sen", sans-serif;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   COLLEGE
========================================================= */

.dvc-studentresult-college {
    margin: 0;

    color: #252525;

    font-family: "Sen", sans-serif;

    font-size: 12px;

    font-weight: 500;
}


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

.dvc-studentresult-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}


.dvc-studentresult-card:hover
.dvc-studentresult-card-image img {
    transform: scale(1.04);
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .dvc-studentresult-card {
        min-height: 390px;
    }

    .dvc-studentresult-card-image {
        width: 140px;
        height: 140px;

        margin-top: 25px;
        margin-bottom: 16px;
    }

    .dvc-studentresult-card-content {
        padding: 0 12px 35px;
    }

    .dvc-studentresult-card-content h3 {
        font-size: 20px;
    }

    .dvc-studentresult-card-content h4 {
        font-size: 22px;
    }

    .dvc-studentresult-card::after {
        width: 120px;
        height: 95px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .dvc-studentresult-card-image {
        width: 130px;
        height: 130px;
    }

    .dvc-studentresult-card::after {
      width: 220px !important;
height: 180px !important;
    }
}
.border-bottomresult {
    font-family: "Sen", sans-serif;
    font-weight: 800;
    border-bottom: 3px solid #287203;
    margin-top: 30px !important;
    margin-bottom: 10px;
    padding-bottom: 8px;
    display: table;
    margin-left: auto !important;
    margin-right: auto !important;
}


.dvc-gallery-description {
    margin-top: 10px !important;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 30px auto;

    padding: 0 20px;

    box-sizing: border-box;

    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;

    color: #3f5065;

    text-align: center;
}


/* Large Desktop */
@media screen and (min-width: 1200px) {

    .dvc-gallery-description {
        max-width: 1400px;
        font-size: 25px;
        line-height: 1.55;
    }

}


/* Laptop / Tablet */
@media screen and (min-width: 768px) and (max-width: 1199px) {

    .dvc-gallery-description {
        max-width: 1000px;
        font-size: 22px;
        line-height: 1.5;
        padding: 0 25px;
    }

}


/* Mobile */
@media screen and (min-width: 200px) and (max-width: 767px) {

    .dvc-gallery-description {
        width: 100%;
        max-width: 100%;

        padding: 0 15px;
        margin-bottom: 25px;

        font-size: 17px;
        line-height: 1.6;

        text-align: center;
    }

}


/* Small Mobile */
@media screen and (min-width: 200px) and (max-width: 400px) {

    .dvc-gallery-description {
        font-size: 16px;
        line-height: 1.55;
        padding: 0 12px;
    }

}





/* =========================================================
   FACULTY SECTION
========================================================= */
/* Founder image circular border */

.faculty-section {
    position: relative;
    padding: 100px 0 110px;
    background: rgba(40, 114, 3, 0.035);
    overflow: hidden;
}

/* Very light green decorative background */
.faculty-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -220px;
    left: -180px;
    background: rgba(40, 114, 3, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.faculty-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -220px;
    right: -150px;
    background: rgba(40, 114, 3, 0.04);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.faculty-section .section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 160px;
}

.faculty-section .section-title h2 {
    color: #172033;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faculty-section .section-title p {
    color: #687386;
    font-size: 16px;
    margin: 0 auto;
    max-width: 650px;
}


/* Small green line */
.faculty-section .section-title .title-line {
    width: 65px;
    height: 4px;
    background: #287203;
    border-radius: 10px;
    margin: 15px auto 0;
}


/* =========================================================
   FACULTY GRID
========================================================= */

.faculty-section .faculty-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 38px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   FACULTY CARD
========================================================= */

.faculty-section .faculty-card {
    position: relative;

    background: #ffffff;

    border-radius: 25px;

    min-height: 300px;

    padding: 105px 30px 30px;

    text-align: center;

    box-sizing: border-box;

    border: 1px solid rgba(40, 114, 3, 0.08);

    box-shadow:
        0 12px 30px rgba(20, 40, 20, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faculty-section .faculty-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;

    border-radius: 50%;

    object-fit: cover;
    object-position: center top;
}
/* Hover */
.faculty-section .faculty-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 38px rgba(40, 114, 3, 0.16);
}


/* =========================================================
   FACULTY IMAGE WRAPPER
========================================================= */

.faculty-section .faculty-image-wrapper {
    position: absolute;

    top: -120px;
    left: 50%;

    transform: translateX(-50%);

    width: 220px;
    height: 220px;

    border-radius: 50%;

    padding: 7px;

    box-sizing: border-box;

    background: #ffffff;

    border: 6px solid #287203;

    box-shadow:
        0 8px 20px rgba(40, 114, 3, 0.18);

    z-index: 5;
}


/* Faculty image */
.faculty-section .faculty-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    background: #eaf3e7;
}


/* =========================================================
   FACULTY BADGE
========================================================= */

.faculty-section .faculty-badge {
    position: absolute;

    right: -8px;
    bottom: 5px;

    background: #287203;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    padding: 8px 14px;

    border-radius: 8px;

    white-space: nowrap;

    border: 2px solid #ffffff;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.15);

    z-index: 10;
}


/* Founder badge */
.faculty-section .faculty-badge.founder {
    background: #172033;
    color: #ffffff;
}


/* Orange/gold icon inside badge if required */
.faculty-section .faculty-badge i {
    color: #ffb000;
    margin-right: 5px;
}


/* =========================================================
   FACULTY NAME
========================================================= */

.faculty-section .faculty-card h3 {
    margin: 0 0 8px;

    color: #172033;

    font-size: 27px;
    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   FACULTY SUBJECT
========================================================= */

.faculty-section .faculty-subject {
    color: #287203;

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 30px;
}


/* Subject icon */
.faculty-section .faculty-subject i {
    color: #287203;

    margin-right: 7px;
}


/* =========================================================
   DIVIDER
========================================================= */

.faculty-section .faculty-divider {
    width: 90%;

    height: 1px;

    margin: 0 auto 28px;

    background: rgba(40, 114, 3, 0.15);

    border: 0;
}


/* =========================================================
   FOUNDER DESCRIPTION
========================================================= */

.faculty-section .faculty-description {
    color: #687386;

    font-size: 16px;

    line-height: 1.8;

    font-style: italic;

    max-width: 390px;

    margin: 0 auto;
}


/* =========================================================
   EXPERIENCE / INFORMATION BOX
========================================================= */

.faculty-section .faculty-info {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #f7faf6;

    border-radius: 9px;

    padding: 14px 12px;

    margin-top: 22px;

    color: #59635a;

    font-size: 14px;
}


/* Information icon */
.faculty-section .faculty-info i {
    color: #287203;

    font-size: 15px;
}


/* Highlighted information */
.faculty-section .faculty-info strong {
    color: #172033;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.faculty-section .experience-badge {
    position: absolute;

    right: -10px;
    top: -10px;

    background: #287203;

    color: #ffffff;

    padding: 8px 13px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    border: 2px solid #ffffff;

    box-shadow:
        0 5px 12px rgba(40, 114, 3, 0.20);

    z-index: 10;
}


/* =========================================================
   FACULTY CARD TYPES
========================================================= */

/* Founder / Co-Founder */
.faculty-section .faculty-card.lead-card {
    min-height: 360px;
}


/* Regular faculty */
.faculty-section .faculty-card.staff-card {
    min-height: 300px;
}


/* =========================================================
   GREEN ACCENT BORDER
========================================================= */

.faculty-section .faculty-card.green-card
{
    border-top: 3px solid #287203;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .faculty-section {
        padding: 80px 0 90px;
    }

    .faculty-section .faculty-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 100px 25px;

        padding: 0 20px;
    }

    .faculty-section .faculty-image-wrapper {
        width: 185px;
        height: 185px;

        top: -105px;
    }

    .faculty-section .faculty-card {
        padding: 95px 25px 28px;
    }

    .faculty-section .faculty-card h3 {
        font-size: 24px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .faculty-section {
        padding: 70px 0 80px;
    }

    .faculty-section .section-title {
        margin-bottom: 120px;
        padding: 0 20px;
    }

    .faculty-section .section-title h2 {
        font-size: 30px;
    }

    .faculty-section .section-title p {
        font-size: 14px;
    }

    .faculty-section .faculty-grid {
        grid-template-columns: 1fr;

        gap: 105px;

        padding: 0 20px;
    }

    .faculty-section .faculty-card {
        width: 100%;
        max-width: 500px;

        margin: 0 auto;

        min-height: 300px;

        padding: 95px 22px 28px;

        border-radius: 22px;
    }

    .faculty-section .faculty-image-wrapper {
        width: 175px;
        height: 175px;

        top: -98px;

        border-width: 5px;
    }

    .faculty-section .faculty-card h3 {
        font-size: 23px;
    }

    .faculty-section .faculty-subject {
        font-size: 15px;
    }

    .faculty-section .faculty-description {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faculty-section .faculty-grid {
        padding: 0 15px;
    }

    .faculty-section .faculty-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .faculty-section .faculty-image-wrapper {
        width: 155px;
        height: 155px;

        top: -88px;
    }

    .faculty-section .faculty-badge {
        font-size: 11px;
        padding: 7px 10px;
    }

    .faculty-section .experience-badge {
        font-size: 11px;
        padding: 7px 10px;
    }

}


/* =========================================================
   FLOATING WHATSAPP + PHONE BUTTONS
========================================================= */

.floating-contact-buttons {
    position: fixed;

    right: 18px;
    bottom: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 9px;

    z-index: 9999;
}


/* =========================================================
   COMMON FLOATING BUTTON
========================================================= */

.floating-contact {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #287203;

    color: #ffffff;

    text-decoration: none;

    box-sizing: border-box;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   ICONS
========================================================= */

.floating-contact i {
    color: #ffffff;

    font-size: 30px;

    line-height: 1;
}


/* WhatsApp icon */
.floating-contact.whatsapp-btn i {
    font-size: 32px;
}


/* Phone icon */
.floating-contact.phone-btn i {
    font-size: 28px;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.floating-contact:hover {
    transform: scale(1.08);

    color: #ffffff;

    background: #287203;

    box-shadow:
        0 9px 22px rgba(40, 114, 3, 0.30);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .floating-contact-buttons {
        right: 14px;
        bottom: 14px;

        gap: 8px;
    }

    .floating-contact {
        width: 54px;
        height: 54px;
    }

    .floating-contact.whatsapp-btn i {
        font-size: 29px;
    }

    .floating-contact.phone-btn i {
        font-size: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .floating-contact-buttons {
        right: 12px;
        bottom: 12px;

        gap: 7px;
    }

    .floating-contact {
        width: 52px;
        height: 52px;
    }

    .floating-contact.whatsapp-btn i {
        font-size: 28px;
    }

    .floating-contact.phone-btn i {
        font-size: 24px;
    }

}


/* ==========================================
   READY TO START SECTION
   ========================================== */

.ready-start-section {
  width: 100%;
  box-sizing: border-box;

  /* Light green version of #287203 */
  background: #287203;

  padding: 58px 30px 60px;

  font-family: Arial, Helvetica, sans-serif;
}


/* ==========================================
   CONTAINER
   ========================================== */

.ready-start-container {
  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  text-align: center;
}


/* ==========================================
   TITLE
   ========================================== */

.ready-start-title {
  margin: 0 0 28px;

  color: #111827;

  font-size: 30px;
  font-weight: 700;

  line-height: 1.25;

  text-align: center;
}

.ready-start-title span {
  color: #ffb900;
}


/* ==========================================
   DESCRIPTION
   ========================================== */

.ready-start-description {
  max-width: 1450px;

  margin: 0 auto;

  color: #ffffff;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.55;

  text-align: center;
}


/* ==========================================
   BUTTON
   ========================================== */

.ready-start-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-top: 38px;

  padding: 15px 15px;

  background: #ffb900;

  color: #000000;

  border: none;

  border-radius: 45px;

  font-size: 21px;
  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  box-shadow: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.ready-start-btn:hover {
  background: #ffb900;

  color: #000000;

  transform: translateY(-3px);
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1000px) {

  .ready-start-section {
    padding: 50px 22px 55px;
  }

  .ready-start-title {
    font-size: 36px;
  }

  .ready-start-description {
    font-size: 24px;
    line-height: 1.5;
  }

  .ready-start-btn {
    margin-top: 32px;

    padding: 18px 45px;

    font-size: 22px;
  }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 650px) {

  .ready-start-section {
    padding: 42px 18px 48px;
  }

  .ready-start-title {
    font-size: 29px;

    margin-bottom: 22px;
  }

  .ready-start-description {
    font-size: 19px;

    line-height: 1.5;
  }

  .ready-start-btn {
    margin-top: 28px;

    padding: 16px 30px;

    font-size: 19px;

    border-radius: 35px;
  }
}




/* ==========================================
   WHO IS THIS COURSE FOR SECTION
   ========================================== */

.course-for-section {
  width: 100%;
  box-sizing: border-box;

  background: #ffffff;

  padding: 55px 35px 65px;

  font-family: Arial, Helvetica, sans-serif;
}
.main {
  margin-top: 5px;
  padding-top: 20px !important;
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */

.course-for-container {
  width: 100%;
  max-width: 1650px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 45px;

  align-items: center;
}


/* ==========================================
   LEFT CONTENT
   ========================================== */

.course-for-left {
  width: 100%;

  text-align: center;
}


/* ==========================================
   HEADING
   ========================================== */

.course-for-heading {
  margin: 0 0 30px;

  color: #20242a;

  font-size: 34px;
  font-weight: 700;

  line-height: 1.25;

  text-align: center;
}

.course-for-heading i {
  color: #287203;

  font-size: 38px;

  margin-right: 12px;

  vertical-align: middle;
}

.course-for-heading span {
  color: #287203;
}


/* ==========================================
   DESCRIPTION
   ========================================== */

.course-for-description {
  max-width: 800px;

  margin: 0 auto 34px;

  color: #6b6f73;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.52;

  text-align: center;
}

.course-for-description span {
  color: #287203;

  font-weight: 700;
}


/* ==========================================
   BENEFITS GRID
   ========================================== */

.course-for-benefits {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  text-align: left;
}


/* ==========================================
   BENEFIT ITEM
   ========================================== */

.course-for-item {
  min-height: 88px;

  box-sizing: border-box;

  padding: 16px 20px;

  background: #e9edf1;

  border-radius: 9px;

  border-left: 5px solid #287203;

  display: flex;

  align-items: center;

  gap: 14px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* ==========================================
   BENEFIT ICON
   ========================================== */

.course-for-item > i {
  flex: 0 0 27px;

  width: 27px;

  color: #287203;

  font-size: 23px;

  text-align: center;
}


/* ==========================================
   BENEFIT TEXT
   ========================================== */

.course-for-item p {
  margin: 0;

  color: #172033;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.45;
}


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

.course-for-item:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(40, 114, 3, 0.10);
}


/* ==========================================
   RIGHT IMAGE
   ========================================== */

.course-for-right {
  width: 100%;

  height: 100%;

  min-height: 690px;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* ==========================================
   IMAGE
   ========================================== */

.course-for-image {
  width: 100%;

  height: 100%;

  min-height: 690px;

  display: block;

  object-fit: cover;

  object-position: center;

  border-radius: 0;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1100px) {

  .course-for-section {
    padding: 50px 25px 60px;
  }

  .course-for-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .course-for-left {
    max-width: 900px;

    margin: 0 auto;
  }

  .course-for-right {
    min-height: 500px;
  }

  .course-for-image {
    min-height: 500px;
  }

  .course-for-heading {
    font-size: 36px;
  }

  .course-for-description {
    font-size: 22px;
  }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

  .course-for-section {
    padding: 42px 16px 50px;
  }

  .course-for-container {
    gap: 30px;
  }

  .course-for-heading {
    font-size: 29px;

    margin-bottom: 22px;
  }

  .course-for-heading i {
    font-size: 27px;

    margin-right: 7px;
  }

  .course-for-description {
    font-size: 18px;

    line-height: 1.55;

    margin-bottom: 25px;
  }

  .course-for-benefits {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  .course-for-item {
    min-height: 75px;

    padding: 14px 15px;

    border-left-width: 4px;
  }

  .course-for-item > i {
    flex: 0 0 23px;

    width: 23px;

    font-size: 20px;
  }

  .course-for-item p {
    font-size: 16px;
  }

  .course-for-right {
    min-height: 350px;
  }

  .course-for-image {
    min-height: 350px;

    height: 350px;
  }
}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 450px) {

  .course-for-heading {
    font-size: 26px;
  }

  .course-for-description {
    font-size: 17px;
  }

  .course-for-item p {
    font-size: 15px;
  }

  .course-for-right,
  .course-for-image {
    min-height: 280px;

    height: 280px;
  }
}




/* ==========================================
   DIVINE VISION - EXAM DETAILS
   ========================================== */

.divine-exam-details {
  width: 100%;
  background: #fff9e8;
  padding: 55px 0 65px;
  overflow: hidden;
}


.divine-exam-container {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 7.5%;
}


/* ==========================================
   SECTION TITLE
   ========================================== */

.divine-exam-title {
  margin: 0 0 70px;
  text-align: center;

  color: #17202a;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;

  font-family: inherit;
}

.divine-exam-title span {
  color: #287203;
}


/* ==========================================
   CARDS GRID
   ========================================== */

.divine-exam-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
}


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

.divine-exam-card {
  background: #ffffff;

  border: 1px solid #d4d4d4;
  border-radius: 40px;

  min-height: 315px;

  padding: 40px 30px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);

  display: flex;
  flex-direction: column;

  box-sizing: border-box;
}


/* ==========================================
   CARD HEADING
   ========================================== */

.divine-exam-card-heading {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 38px;
}


.divine-exam-card-heading i {
  color: #287203;

  font-size: 48px;

  width: 50px;

  flex-shrink: 0;
}


.divine-exam-card-heading h3 {
  margin: 0;

  color: #292d32;

  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;

  font-family: inherit;
}


/* ==========================================
   LIST
   ========================================== */

.divine-exam-list {
  display: flex;
  flex-direction: column;

  gap: 27px;
}


/* ==========================================
   LIST ITEM
   ========================================== */

.divine-exam-item {
  display: flex;
  align-items: flex-start;

  gap: 20px;
}


.divine-exam-item > i {
  color: #287203;

  font-size: 20px;

  margin-top: 4px;

  flex-shrink: 0;
}


/* ==========================================
   ITEM CONTENT
   ========================================== */

.divine-exam-item h4 {
  margin: 0 0 5px;

  color: #292d32;

  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;

  font-family: inherit;
}


.divine-exam-item p {
  margin: 0;

  color: #62666b;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;

  font-family: inherit;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 992px) {

  .divine-exam-details {
    padding: 50px 0 60px;
  }

  .divine-exam-container {
    padding: 0 5%;
  }

  .divine-exam-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .divine-exam-grid {
    gap: 24px;
  }

  .divine-exam-card {
    min-height: 300px;
    padding: 32px 25px;
    border-radius: 32px;
  }

  .divine-exam-card-heading {
    gap: 15px;
    margin-bottom: 30px;
  }

  .divine-exam-card-heading i {
    font-size: 42px;
    width: 45px;
  }

  .divine-exam-card-heading h3 {
    font-size: 26px;
  }

  .divine-exam-item {
    gap: 15px;
  }

  .divine-exam-item h4 {
    font-size: 18px;
  }

  .divine-exam-item p {
    font-size: 16px;
  }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

  .divine-exam-details {
    padding: 42px 0 50px;
  }

  .divine-exam-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .divine-exam-title {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .divine-exam-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .divine-exam-card {
    width: 100%;
    min-height: auto;

    padding: 28px 22px;

    border-radius: 25px;
  }

  .divine-exam-card-heading {
    gap: 13px;
    margin-bottom: 25px;
  }

  .divine-exam-card-heading i {
    font-size: 38px;
    width: 40px;
  }

  .divine-exam-card-heading h3 {
    font-size: 24px;
  }

  .divine-exam-list {
    gap: 22px;
  }

  .divine-exam-item {
    gap: 12px;
  }

  .divine-exam-item > i {
    font-size: 18px;
    margin-top: 3px;
  }

  .divine-exam-item h4 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .divine-exam-item p {
    font-size: 15px;
    line-height: 1.45;
  }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {

  .divine-exam-details {
    padding: 35px 0 42px;
  }

  .divine-exam-container {
    padding: 0 15px;
  }

  .divine-exam-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .divine-exam-grid {
    gap: 16px;
  }

  .divine-exam-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .divine-exam-card-heading {
    gap: 11px;
    margin-bottom: 22px;
  }

  .divine-exam-card-heading i {
    font-size: 32px;
    width: 35px;
  }

  .divine-exam-card-heading h3 {
    font-size: 21px;
  }

  .divine-exam-list {
    gap: 19px;
  }

  .divine-exam-item {
    gap: 10px;
  }

  .divine-exam-item > i {
    font-size: 16px;
  }

  .divine-exam-item h4 {
    font-size: 16px;
  }

  .divine-exam-item p {
    font-size: 14px;
  }

}


/* ==========================================
   EXTRA SMALL MOBILE
   ========================================== */

@media (max-width: 360px) {

  .divine-exam-container {
    padding: 0 12px;
  }

  .divine-exam-title {
    font-size: 23px;
  }

  .divine-exam-card {
    padding: 21px 15px;
  }

  .divine-exam-card-heading h3 {
    font-size: 19px;
  }

  .divine-exam-card-heading i {
    font-size: 29px;
    width: 32px;
  }

  .divine-exam-item h4 {
    font-size: 15px;
  }

  .divine-exam-item p {
    font-size: 13px;
  }

}





/* ==========================================
   BOOK FREE DEMO BUTTON
   ========================================== */

.book-demo-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 14px 24px;
margin-top: 7px;
  background: #ffc107;
  color: #000000;
margin-left: 38%;
  border-radius: 10px;
margin-bottom: -10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;

  transition: all 0.3s ease;
} 

.book-demo-btn:hover {
  background: #ffc107;
  color: #000000;
  transform: translateY(-2px);
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 992px) {

  .book-demo-btn {
    margin-left: 15%;
    font-size: 21px;
    padding: 12px 21px;
    gap: 10px;
  }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

  .book-demo-btn {
          margin-left: 13%;
    font-size: 18px;
    font-weight: 700;

    padding: 10px 18px;

    gap: 8px;
    border-radius: 8px;
  }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {

  .book-demo-btn {
  margin-left: 13%;
    font-size: 16px;
    font-weight: 700;

    padding: 9px 15px;

    gap: 7px;
    border-radius: 7px;
  }

}