@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: #fff;
  --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 {
  margin-top: 10px;
  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: 18px;
font-weight: 400 !important;
    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: 10px;
        padding: 11px 28px;
    }

}

/* MOBILE */

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

    .demo-classbtn {
        font-size: 10px;
        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 {
  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 {
  margin-top: 2rem;
  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;
}

/* 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;
    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;
        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;
}



/*  */


/* ============================================================
                    CONTACT CARDS
============================================================ */

.contact-cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;

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

    align-items: stretch;
}


/* ============================================================
                    CARD
============================================================ */
.findtext {
    margin-top:20px;
}
.contact-card {
    width: 100%;
    min-height: 210px;
margin-bottom: 4px;
    padding: 40px 30px;

    background: #ffffff;

    border: 2px solid #ffc107;
    border-radius: 14px;

    text-align: center;

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

    transition: all 0.3s ease;

    box-sizing: border-box;
}


/* Left card */

.contact-card-location {
    border-color: #ffc107;
}


/* Middle card */

.contact-card-middle {
    border-color: #287203;
}


/* Right card */

.contact-card-email {
    border-color: #ffc107;
}


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

.contact-card-icon {
    width: 70px;
    height: 70px;

    margin-bottom: 20px;

    border-radius: 50%;

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

    font-size: 28px;

    transition: all 0.3s ease;
}


/* Location icon */

.contact-card-location .contact-card-icon {
    background: #fff3cd;
    color: #ffc107;
}


/* Phone icon */

.contact-card-middle .contact-card-icon {
    background: #e8f5e9;
    color: #287203;
}


/* Email icon */

.contact-card-email .contact-card-icon {
    background: #fff3cd;
    color: #ffc107;
}


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

.contact-card h3 {
    margin: 0 0 10px;

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

    color: #222;
}


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

.contact-card p {
    margin: 0;

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

    color: #666;
}


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

.contact-card:hover {
    transform: translateY(-7px);

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


/* Location hover */

.contact-card-location:hover .contact-card-icon {
    background: #ffc107;
    color: #ffffff;
}


/* Contact hover */

.contact-card-middle:hover .contact-card-icon {
    background: #287203;
    color: #ffffff;
}


/* Email hover */

.contact-card-email:hover .contact-card-icon {
    background: #ffc107;
    color: #ffffff;
}


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

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

    .contact-cards-container {
        max-width: 900px;

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

        gap: 18px;
    }

    .contact-card {
        min-height: 200px;

        padding: 30px 18px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;

        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

}


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

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

    .contact-cards-container {
        max-width: 500px;

        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 35px;
    }

    .contact-card {
        min-height: 190px;

        padding: 35px 25px;
    }

}


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

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

    .contact-cards-container {
        padding: 0 15px;
    }

    .contact-card {
        min-height: 180px;

        padding: 30px 20px;
    }

    .contact-card-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 15px;

        font-size: 23px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

}


.contact-banner {
    
    width: 100%;
    background: #287203;
    padding: 35px 20px;
    text-align: center;
    box-sizing: border-box;
}

.contact-banner p {
    max-width: 1100px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
    font-weight:400;
  
}


/* Mobile */
@media screen and (max-width: 768px) {

    .contact-banner {
        padding: 28px 18px;
    }

    .contact-banner p {
        font-size: 18px;
        line-height: 1.5;
    }

}

.location-map {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}




/* ============================================================
                    CONTACT / ENQUIRY SECTION
============================================================ */

.contact-enquiry {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}


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

.contact-enquiry-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* ============================================================
                    LEFT SIDE
============================================================ */

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;

    gap: 32px;
}


/* ============================================================
                    LEFT ITEM
============================================================ */

.contact-info-item {
    display: flex;
    align-items: flex-start;

    gap: 25px;

    width: 100%;
}


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

.contact-info-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;

    border-radius: 50%;

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

    font-size: 25px;

    flex-shrink: 0;
}


/* Green */

.icon-green {
    background: #e8f5e9;
    color: #287203;
}


/* Yellow */

.icon-yellow {
    background: #fff4cc;
    color: #ffc107;
}


/* Blue */

.icon-blue {
    background: #e3f2fd;
    color: #1683c4;
}


/* Red */

.icon-red {
    background: #fde7e9;
    color: #e53950;
}


/* Cyan */

.icon-cyan {
    background: #e0f7fa;
    color: #00acc1;
}


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

.contact-info-content {
    padding-top: 2px;
}


.contact-info-content h3 {
    margin: 0 0 6px;

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

    color: #222222;
}


.contact-info-content p {
    margin: 0;

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

    color: #666666;

    max-width: 620px;
}


/* ============================================================
                    RIGHT FORM BOX
============================================================ */

.contact-form-box {
    width: 100%;

    padding: 28px 25px 25px;

    background: #ffffff;

    border: 1px solid #d9d9d9;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


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

.contact-form-box h2 {
    margin: 0 0 7px;

    text-align: center;

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

    color: #287203;
}


.contact-form-subtitle {
    margin: 0 0 22px;

    text-align: center;

    font-size: 14px;

    color: #777777;
}


/* ============================================================
                    FORM GROUP
============================================================ */

.contact-form-group {
    width: 100%;
    margin-bottom: 18px;
}


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

.contact-form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 16px;
    font-weight: 500;

    color: #287203;
}


.contact-form-group label span {
    color: #287203;
}


/* ============================================================
                    INPUT + TEXTAREA
============================================================ */

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    font-family: inherit;

    font-size: 15px;

    color: #333333;

    background: #ffffff;

       /* LIGHT GRAY BORDER LIKE IMAGE */
    border: 1px solid #d9dfe3;

    border-radius: 7px;

    outline: none;

    transition: all 0.25s ease;
}


/* Input height */

.contact-form-group input {
    height: 48px;
}


/* Textarea */

.contact-form-group textarea {
    min-height: 125px;

    resize: vertical;
}


/* Placeholder */

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #999999;
}


/* Focus */

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #287203;

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


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

.contact-submit-btn {
    width: 100%;

    height: 48px;

    margin-top: 2px;

    border: 1px solid #287203;

    border-radius: 7px;

    background: #287203;

    color: #ffffff;

    font-family: inherit;

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

    cursor: pointer;

    transition: all 0.3s ease;
}


.contact-submit-btn:hover {
    background: #205d02;

    border-color: #205d02;

    transform: translateY(-1px);
}


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

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

    .contact-enquiry {
        padding: 60px 0;
    }


    .contact-enquiry-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }


    .contact-info {
        gap: 25px;
    }


    .contact-info-item {
        gap: 18px;
    }


    .contact-info-icon {
        min-width: 52px;
        width: 52px;
        height: 52px;

        font-size: 22px;
    }


    .contact-info-content h3 {
        font-size: 18px;
    }


    .contact-info-content p {
        font-size: 14px;
    }


    .contact-form-box {
        padding: 25px 20px;
    }

}


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

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

    .contact-enquiry {
        padding: 50px 0;
    }


    .contact-enquiry-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 0 20px;
    }


    .contact-info {
        gap: 25px;
    }


    .contact-info-item {
        gap: 18px;
    }


    .contact-info-icon {
        min-width: 55px;
        width: 55px;
        height: 55px;

        font-size: 23px;
    }


    .contact-info-content h3 {
        font-size: 19px;
    }


    .contact-info-content p {
        font-size: 15px;
    }


    .contact-form-box {
        padding: 25px 20px;
    }


    .contact-form-box h2 {
        font-size: 26px;
    }

}


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

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

    .contact-enquiry-container {
        padding: 0 15px;
    }


    .contact-info-item {
        gap: 15px;
    }


    .contact-info-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;

        font-size: 20px;
    }


    .contact-info-content h3 {
        font-size: 17px;
    }


    .contact-info-content p {
        font-size: 14px;
    }


    .contact-form-box {
        padding: 22px 16px;
    }


    .contact-form-box h2 {
        font-size: 24px;
    }

}