/* 

TemplateMo 586 Scholar

https://templatemo.com/tm-586-scholar

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 21px;
  color: #4a4a4a;
}

img {
  width: 210px;
  overflow: hidden;
}

.imgg {
  width: 100%;
  overflow: hidden;
  
}

.img-small {
  width: 200px;
  overflow: hidden;
}


:root {
  --brand: #155359;
  --accent: #00a86b;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #155359;
  color: #fff;
}

::-moz-selection {
  background: #155359;
  color: #fff;
}

.section {
  /* padding-top: 30px; */
  padding: 60px 0;
  /* margin-top: 120px; */
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 44px;
}

.section-heading h2 em {
  color: #155359;
  font-style: normal;
}

.section-heading h6 {
  color: #155359;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-button a {
  display: inline-block;
  background-color: #fff;
  color: #155359;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  border-radius: 20px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #155359;
  color: #fff;
}


.course-button {
 
  display:inline-block;
  padding:14px 30px;
  background:linear-gradient(135deg,var(--accent),var(--brand));
  color:#fff;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 20px var(--shadow);
  transition:transform .3s;
}

.course-button:hover {
   background: linear-gradient(135deg,var(--brand),var(--accent));
  color: #e5fedd;
  transform:translateY(-3px);
}




/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #155359;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #155359;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

/* .background-header {
  background-color: #155359 !important;
  border-radius: 0px 0px 25px 25px;
   height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
} */

.header-area {
  
  padding: 1em 0;
  /* position: fixed; */
  top:0 ;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  /* background: #fff; */
  display: flex
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #8be1e9;
  font-weight: 600;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.background-header .main-nav .logo,
.background-header .main-nav #search {
  margin-top: 18px;
}

.header-area .main-nav #search {
  position: relative;
}

.header-area .main-nav #search input {
  background-color: rgba(255, 255, 255, 0.10);
  height: 44px;
  width: 250px;
  border-radius: 23px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px 20px 0px;
}

.header-area .main-nav #search input::placeholder {
  color: rgba(250, 250, 250, 0.75);
}

.header-area .main-nav #search i {
  position: absolute;
  color: #fff;
  right: 20px;
  top: 15px;
  font-size: 16px;
}

.header-area .main-nav ul.nav {
  border-radius: 0px 0px 25px 25px;
  flex-basis: 100%;
  margin-right: 0px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
  /* height: 50px; */
  line-height: 40px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  /* border-radius: 20px; */
  font-weight: 450;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #155359;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.background-header .main-nav .nav {margin-top: 20px;}

.background-header .main-nav .nav li {
  height: 50px;
  line-height: 80px;
}

/* .header-area .main-nav .nav li:hover a {
  opacity: 0.8;
}
.header-area .main-nav .nav li a.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.10);
  opacity: 1;
} */
 /* Hover and Active State */
.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  /* color: #fff !important; */
  /* background-color: #155359 !important; */
  opacity: 1 !important;
}


.background-header .main-nav .nav li:hover a {
  opacity: 0.8;
}
.background-header .main-nav .nav li a.active {
  /* color: #24d3d3; */
  background-color: rgba(255, 255, 255, 0.10);
  opacity: 1;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 10000;
  right: 20px;
  display: none;
}

@media (max-width: 991px) {
  .header-area .main-nav .menu-trigger {
    display: block;
    top: 10px; /* adjust for better alignment */
  }
  .stud-img {
  width: 90px;
  overflow: hidden;
}
}

.background-header .main-nav .menu-trigger {
  top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #155359;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /* background-color: #fff; */
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  /* background-color: #fff; */
}

.background-header .main-nav .menu-trigger.active span:before {
  /* background-color: #fff; */
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  /* background-color: #fff; */
}

.background-header .main-nav .menu-trigger.active span:after {
  /* background-color: #fff; */
}

.header-area.header-sticky .nav li a.active {
  /* color: #fff; */
  /* background-color: #155359; */
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 2px;
    padding-right: 2px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 767px) {
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #f1f0fe;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background: radial-gradient(circle at 20% 30%, rgb(232, 255, 245) 0%, rgb(255, 255, 255) 80%) !important;
     /* border-radius: 0px 0px 25px 25px; */
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    /* border-radius: 0px 0px 25px 25px; */
  }
  .background-header .main-nav .nav li:last-child,
  .header-area .main-nav .nav li:last-child {
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #155359!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: transparent;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
    /* margin-top: 30px; */
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }


  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: url(../images/banner-bg.jpg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px 120px 0px;
}

.main-banner .item-1 {
  background-image: url(../images/banner-item-01.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/banner-item-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../images/banner-item-03.jpg);
}

.main-banner .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
  padding: 50px 50px;
  margin-left: 130px;
}

.main-banner .item span.category {
  background-color: #155359;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 50px;
}

.main-banner .item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 70px;
  width: 60%;
  margin-bottom: 40px;
}

.main-banner .item p {
  color: #fff;
  width: 65%;
}

.main-banner .item .buttons {
  display: flex;
  margin-top: 50px;
}

.main-banner .item .buttons .main-button {
  margin-right: 30px;
}

.main-banner .item .buttons .main-button a {
  font-size: 14px;
  color: #155359;
  background-color: #fff;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  border-radius: 25px;
  font-weight: 500;
}

.main-banner .item .buttons .icon-button i {
  color: #155359;
  background-color: #fff;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.main-banner .item .buttons .icon-button a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-banner .owl-nav {
  position: absolute;
  max-width: 1320px;
  bottom: 23px;
  left: 0;
  text-align: right;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/
/* Remove old hover animation */
.servicess{
  background-color: #F4F9F7;
  /* background-color: #E7F2EF; */
}


.services .service-item:hover .icon img {
  margin-top: 0;
}

/* Updated layout for icon */
.services .service-item .icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  position: static; /* No absolute positioning */
  overflow: visible;
  line-height: normal;
}

/* Simplify the image */
.services .service-item .icon img {
  max-width: 55px;
  transition: none;
  object-fit: contain;
}

/* Text alignment */
.services .service-item .down-content {
  text-align: left;
}


.services .service-item .main-content {
  border-radius: 25px;
  padding: 80px 30px 50px 30px;
  background-color: #f1f0fe;
  margin-bottom: 30px;
  margin-right: 80px;
  transition: all .4s;
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  transition: all .4s;
}

.services .service-item p {
  color: #4a4a4a;
  margin-bottom: 25px;
  text-align: left;
}

/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-us {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  /* background-color: #cce5dc; */
  /* background-color: #155359; */
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 10px !important;
  background-color: #cce5dc;
}

.accordion-button:not(.collapsed) {
  /* color: #155359; */
  background-color: #155359;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #155359;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  /* padding: 0px 25px 30px 25px; */
  font-size: 14px;
  line-height: 18px;
  color: #155359;
  background-color: #cce5dc;
  /* background-color: #155359; */
  border-radius: 10px;
}

.about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}


/* 
---------------------------------------------
Courses Style
--------------------------------------------- 
*/

/* .courses {
  margin-top: 160px;
} */

.event_filter {
  text-align: center;
}

.event_filter {
  background-color: #f1f0fe;
  border-radius: 50px;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
}

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li

.event_filter li a.is_active,
.event_filter li a:hover {
  color: #155359;
}

.events_item .thumb {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 6em;
}

.events_item .thumb img {
  margin-bottom: -5px;
}

.events_item .thumb span.category {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #174a4f;
  color: rgba(250, 250, 250, 0.95);
  padding: 8px 20px;
  border-radius: 50px 0px;
  font-weight: 500;
  display: inline-block;
}

.events_item .thumb span.price {
  position: absolute;
  right: 10px;
  top: 10px;
  
  /* background-color: #155359; */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex; /* centers the icon horizontally + vertically */
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: #fff; /* makes the icon visible */
  font-size: 28px; /* better icon size */
}

.op{
  opacity: 0.1;
}

.events_item .thumb span.price .icon-img {
width: 45px;  /* adjust based on your icon image size */
  height: 45px;
  object-fit: contain;
  /* border-radius: 50%; */
}

.events_item .thumb span.price h6 {
  margin-top: 72px;
  margin-left: 22px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.events_item .thumb span.price em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}

.events_item {
  /* background-color: #cce5dc; */
  /* background-color: #f1f0fe; */
  /* border-radius: 25px; */
  margin-bottom: 30px;
  position: relative;
  justify-content: center;
  align-items: center;
} 

.events_item .down-content {
  padding: 20px 30px 25px 30px;
}

.events_item .down-content span.author {
  color: #155359;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 6px;
}

.events_item .down-content h4 {
  font-size: 22px;
  font-weight: 500;
  transition: all .3s;
}

.events_item:hover .down-content h4 {
  color: #155359;
}

.events_item:hover .thumb span.price {
  transform: scale(1.2);
}


/* 
---------------------------------------------
Facts Style
--------------------------------------------- 
*/

.fun-facts {
  position: relative;
  padding: 40px 0px;
  overflow: hidden;
}

.fun-jee,
.fun-neet,
.fun-mhcet {
  position: relative;
  padding: 50px 0px 50px 0px;
  overflow: hidden;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: #155359;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.fun-facts:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 0;
}

.fun-facts h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  /* margin-top: 15px; */
}


/* Section background variations for JEE / NEET / MHCET */
.fun-jee:before,
.fun-neet:before,
.fun-mhcet:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: '';
  /* border-top-right-radius: 500px; */
  /* border-bottom-right-radius: 500px; */
}

.fun-jee:before,
.fun-neet:before,
.fun-mhcet:before {
  background-color: #155359; 
}

/* Optional background shapes for other sections */
.fun-jee:after,
.fun-neet:after,
.fun-mhcet:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts h2,
.fun-jee h2,
.fun-neet h2,
.fun-mhcet h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after,
.fun-jee h2::after,
.fun-neet h2::after,
.fun-mhcet h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts h2.selection::after{
  content: '%';
  margin-left: 5px;
}

.fun-jee p,
.fun-neet p,
.fun-mhcet p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}

.fun-jee.counter,
.fun-neet.counter,
.fun-mhcet.counter {
  text-align: center;
  margin-bottom: 40px;
}

/* 
---------------------------------------------
Team Style
--------------------------------------------- 
*/

.team {
  margin-top: 100px;
    padding-top: 140px;
}

.team-member {
  position: relative;
}

.team-member:hover img {
  top: -120px;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-110px);
  transition: all .3s;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 140px 30px 40px 30px;
  background-color: #f1f0fe;
  text-align: center;
}

.team-member .main-content span.category {
  color: #155359;
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #fff;
  color: #155359;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: #155359;
  color: #fff;
}


/* 
---------------------------------------------
Testimonials Style
--------------------------------------------- 
*/

.testimonials {
  position: relative;
  padding: 80px 0px;
  margin-top: 150px;
}

.testimonials:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.testimonials .section-heading {
  margin-bottom: 0px;
  margin-left: 60px;
  vertical-align: middle;
}

.testimonials .section-heading p {
  margin-top: 50px;
}

.testimonials .item {
  background-color: #155359;
  border-radius: 25px;
  padding: 80px;
}

.testimonials .item p {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonials .item img {
  border-radius: 50%;
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.testimonials .item span {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #fff;
}

.testimonials .item h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-5px);
  right: -25px;
  text-align: right;
}

.testimonials .owl-nav .owl-prev i,
.testimonials .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #155359;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  opacity: 1;
  transition: all .3s;
}

.testimonials .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.testimonials .owl-nav .owl-prev i:hover,
.testimonials .owl-nav .owl-next i:hover {
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}


/* 
---------------------------------------------
Events Style
--------------------------------------------- 
*/

.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #f1f0fe;
  border-radius: 25px;
  position: relative;
  padding: 40px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}

.events .item ul li {
  display: inline-block;
  width: 17.5%;
  vertical-align: middle;
}

.events .item ul li:first-child {
  width: 35%;
}

.events .item ul li:nth-of-type(2) {
  width: 28%;
}

.events .item ul li span.category {
  font-size: 14px;
  text-transform: uppercase;
  color: #155359;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.events .item ul li h6 {
  font-size: 16px;
  color: #155359;
  font-weight: 600;
}

.events .item a {
  position: absolute;
  right: 0;
  top: 22px;
  background-color: #155359;
  width: 60px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  border-radius: 60px 0px 0px 60px;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  /* background-color: #f1f0fe; */
  content: '';
  /* border-top-right-radius: 500px; */
  /* border-bottom-right-radius: 500px; */
}


.contact-us  .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us  .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #155359;
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px; 
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: #155359;
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: #155359;
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: #155359;
  color: #fff;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: #155359;
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: #fff;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: #fff;
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  color: #155359;
  transition: all .4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(85,0,227);
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
 
footer {
  /* margin-top: 150px; */
  position: relative;
  background-color: #155359;
  vertical-align: middle;
  min-height: 150px;
  
}

footer p {
  text-align: center;
  color: #fff;
  font-weight: 400;
}

footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 30px;
  transform: rotate(180deg);
  opacity: 1;
  bottom: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
} 

.footer-top{
    /* font-size:14px; */
}








/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }
  .header-area .main-nav .logo h1 {
    border-right: none;
  }
  .main-banner .item {
    padding: 80px 30px 120px 30px !important;
  }
  .main-banner .owl-nav {
    left: 30px !important;
  }
  .event_filter  {
    padding: 15px 20px;
  }
  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }
  .header-area .main-nav .logo {
    border-right: none;
  }
  .main-banner {
    padding-top: 100px;
  }
  .main-banner .item {
    padding: 100px 60px 140px 60px;
    margin-left: 0px;
    text-align: center;
  }
  .main-banner .item h2,
  .main-banner .item p {
    width: 100%;
  }
  .main-banner .item h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .main-banner .item .buttons {
    display: inline-block;
    text-align: center;
  }
  .main-banner .item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .main-banner .owl-nav {
    left: 50% !important;
    transform: translateX(-60px) !important;
    bottom: 60px;
  }
  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }
  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 65px;
  }
  .services {
    margin-top: 80px;
  }
  .about-us {
    margin-top: 100px;
  }
  .accordion {
    padding: 40px 25px 10px 25px;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }
  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }
  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }
  .about-us .section-heading .main-button {
    margin-top: 30px;
  }
  .about-us .main-button a {
    background-color: #155359;
    color: #fff;
  }
  /* .courses {
    margin-top: 100px;
  } */
  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }
  /* .fun-facts {
    margin-top: 70px;
  } */
  .fun-facts::before {
    width: 95%;
  }
  .team {
    margin-top: 160px;
  }
  .team-member {
    margin-bottom: 140px;
  }
  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }
  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }
  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }
  .testimonials .item h4 {
    font-size: 17px;
  }
  .testimonials .item img {
    margin-right: 15px;
  }
  .testimonials .owl-nav {
    display: none;
  }
  .events {
    margin-top: 80px;
  }
  .events .item {
    margin-bottom: 66px;
  }
  .events .item .image img {
    position: relative;
    max-width: 100%;
  }
  .events .item ul {
    margin-top: -40px;
  }
  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }
  .events .item ul li {
    display: inline-block;
    width: 28% !important;
  }
  .events .item ul li:last-child {
    text-align: right;
  }
  .events .item a {
    bottom: 150px;
    top: auto;
  }
  .events .item ul li h6 {
    font-size: 14px;
  }
  .contact-us {
    padding-top: 20px;
  }
  .contact-us .section-heading {
    margin-right: 0px;
  }
  .contact-us .special-offer {
    background-color: #f1f0fe;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }
  .contact-us .special-offer h4 {
    font-size: 17px;
  }
  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }
  .contact-us .contact-us-content {
    padding: 30px;
  }
  /* footer {
    margin-top: 30px;
  } */
}

@media (max-width: 1200px) {
  .header-area .main-nav #search input {
    width: 200px;
  }
  .header-area .main-nav .nav li.has-sub:after {
    right: 15px;
  }
  .fun-facts:before {
    width: 95%;
  }
  .fun-facts h2,
.fun-jee h2,
.fun-neet h2,
.fun-mhcet h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
}


/* New CSS added while Updating  */
/* Dropdown menu styles */


/* Default nav links (non-sticky) */
.main-nav .nav-link {
  padding: 0.5rem 1rem; /* Normal padding */
  line-height: normal;
}

/* Special case: if you ever need no padding */
.no-padding.nav-link {
  padding: 0;
}

/* Sticky header adjustments */
.header-sticky .nav-link,
.background-header .nav-link {
  padding: 0.5rem 1rem; /* Restore normal padding */
  line-height: normal;
}

/* Dropdown items inside sticky header */
.header-sticky .main-nav .nav li.dropdown,
.header-sticky .main-nav .nav li.dropdown > .nav-link {
  line-height: normal;
  height: auto;
  color:#155359;
  cursor:pointer;
}


/* 
.header-area .main-nav .nav li.dropdown .sub-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  list-style: none;
  padding: 10px 0;
  z-index: 100;
}

@media (min-width: 992px) {
  .header-area .main-nav .nav li.dropdown:hover > .sub-menu {
    display: block;
  }
}

.header-area .main-nav .nav li.dropdown .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%); 
  background: #fff;
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  z-index: 9999;
  text-align: center;
}

@media (min-width: 992px) {
  .header-area .main-nav .nav li.dropdown:hover > .sub-menu {
    display: block;
  }
}
 
.header-area .main-nav .nav li.dropdown .sub-menu li a {
  display: flex;
  align-items: center;      
  justify-content: center;   
  height: 40px;             
  padding: 0 20px;          
  color: #1e1e1e;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
 

.header-area .main-nav .nav li.dropdown .sub-menu li a:hover {
  background-color: #f1f0fe;
  color: #155359;
} */

/* Submenu container */
.header-area .main-nav .nav li.dropdown .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%); /* Centers the dropdown box */
  background: radial-gradient(circle at 20% 30%, rgb(232, 255, 245) 0%, rgb(255, 255, 255) 80%) !important; /* Removed background color */
  border-radius: 0; /* Removed border radius */
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  z-index: 9999;
  font-weight:450;
  /*text-align: center;*/
   
}

/* Show submenu on hover (desktop only) */
@media (min-width: 992px) {
  .header-area .main-nav .nav li.dropdown:hover > .sub-menu {
    display: block;
  }
}

/* Submenu links */
.header-area .main-nav .nav li.dropdown .sub-menu li a {
  display: flex;
  align-items: center;       /* Vertical center */
  justify-content: center;   /* Horizontal center */
  height: 40px;              /* Controls vertical size */
  padding: 0 20px;           /* Adds left/right space */
  color: #1e1e1e;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: #155359 1px solid; /* Added bottom border */
}

/* Hover effect on submenu links */
.header-area .main-nav .nav li.dropdown .sub-menu li a:hover {
  /* background-color: #f1f0fe; */
  color: #155359;
}



/* Sticky Talk to Our Expert Widget */
.talk-expert-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

.expert-toggle {
  background: #155359;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expert-toggle i {
  font-size: 18px;
}

.expert-toggle:hover {
  background: #124b50;
  transform: translateY(-2px);
}

/* Panel */
.expert-panel {
  display: none;
  background: #fff;
  width: 280px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: absolute;
  bottom: 60px;
  right: 0;
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.expert-panel h5 {
  font-weight: 600;
  color: #155359;
  margin-bottom: 8px;
}

.expert-panel p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.expert-panel input {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  width: 100%;
}

.expert-panel .btn-theme {
  background: #155359;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s;
}

.expert-panel .btn-theme:hover {
  background: #124b50;
}

/* Divider */
.divider {
  text-align: center;
  margin: 12px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  color: #999;
}

/* Buttons */
.expert-actions a {
  display: block;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 8px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-livechat {
  background: #f1f0fe;
  color: #155359;
  border: 1px solid #ddd;
}

.btn-livechat:hover {
  background: #e4e3fd;
}





/* About us whats makes us different   */
/* ========== What Makes Us Different Section ========== */
.wmud-section {
  /* background: linear-gradient(180deg, #f8f9fa 0%, #eef6f6 100%); */
  background: #F4F9F7;
  position: relative;
  overflow: hidden;
}

.wmud-title {
  color: #155359;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.wmud-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #155359;
  margin: 10px auto 0;
  border-radius: 3px;
}

.wmud-subtitle {
  color: #444;
  font-size: 1rem;
  margin-top: 10px;
}

.wmud-card {
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: wmudFadeIn 0.8s ease forwards;
}

.wmud-icon {
  font-size: 42px;
  color: #155359;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.wmud-card h5 {
  font-weight: 500;
  color: #155359;
  margin-bottom: 10px;
}

.wmud-card p {
  color: #333;
  font-size: 0.95rem;
}

.wmud-card:hover {
  background-color: #155359;
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(21, 83, 89, 0.3);
}

.wmud-card:hover h5,
.wmud-card:hover p {
  color: #fff;
}

.wmud-card:hover .wmud-icon {
  color: #fff;
  transform: scale(1.1);
}

/* Animation */
@keyframes wmudFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .wmud-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .wmud-title {
    font-size: 1.7rem;
  }
  .wmud-card i {
    font-size: 36px;
  }
  .wmud-card p {
    font-size: 0.9rem;
  }
}




/* Our courses */


/* CTA Buttons */
/* Core card design */
.service-item {
  background-color: #f9f9f9;
  border: 1px solid #e6e6e6;
  border-top: 4px solid #155359;
  transition: all 0.3s ease;
}
.service-item:hover {
  background-color: #ffffff;
  border-top-color: #1a6c73;
  transform: translateY(-3px);
}

/* Accent border */
.border-top-accent {
  border-top: 4px solid #155359;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .service-item {
    text-align: center;
  }
}





/* ---------- Core layout ---------- */
.sc-hero-wrap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, #e8fff5 0%, #ffffff 80%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.sc-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 50px; */
  flex-wrap: wrap;
  /* padding: 80px 0; */
}

.sc-hero-left {
  flex: 1 1 50%;
  max-width: 600px;
}

.sc-hero-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-hero-image {
  max-width: 100%;
  /* border-radius: 20px; */
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
  /* animation: floatY 5s ease-in-out infinite; */
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ====== Floating Layer ====== */
.sc-floating-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.sc-float {
  position: absolute;
  font-weight: 700;
  color: rgba(45, 250, 188, 0.12);
  font-size: 60px;
  user-select: none;
  pointer-events: none;
  animation: slowFloat 10s infinite ease-in-out alternate;
}

@keyframes slowFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(30px); }
}

.sc-f1 { top: 15%; left: 10%; font-size: 90px; }
.sc-f2 { top: 40%; left: 80%; font-size: 80px; }
.sc-f3 { top: 60%; left: 30%; font-size: 70px; }
.sc-f4 { top: 75%; left: 60%; font-size: 65px; }
.sc-f5 { top: 20%; left: 55%; font-size: 60px; }
.sc-f6 { top: 50%; left: 10%; font-size: 100px; }
.sc-f7 { top: 10%; left: 70%; font-size: 75px; }
.sc-f8 { top: 80%; left: 40%; font-size: 90px; }

/* ====== Typography ====== */
.sc-tag {
  display: inline-block;
  /* background: #e3fbee; */
  background: #00a86b;
  /* background: #155359; */
  color: #e3fbee;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.sc-title {
  font-size: 2.8rem;
  line-height: 1.3;
  color: #083d2c;
  font-weight: 600;
}


.sc-accent {
  color: #00a86b;
}

.sc-desc {
  font-size: 1.1rem;
  color: #2f4f4f;
  margin: 20px 0 30px;
}

/* ====== Buttons ====== */
.sc-cta-wrap {
  display: flex;
  gap: 15px;
}

.sc-cta-primary {
  background: #155359;
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sc-cta-primary:hover {
  background: #008b5a;
}

.sc-cta-ghost {
  border: 2px solid #00a86b;
  color: #00a86b;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sc-cta-ghost:hover {
  background: #00a86b;
  color: #fff;
}

.sc-cta-ghost1 {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sc-cta-ghost1:hover {
  background: #fff;
  color: #00a86b;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .sc-hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .sc-hero-right, .sc-hero-left {
    flex: 1 1 100%;
  }
  .sc-title {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #083d2c;
  font-weight: 600;
}
.sc-desc {
  font-size: 0.9rem;
  color: #2f4f4f;
  margin: 20px 0 30px;
}
.sc-hero-wrap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, #e8fff5 0%, #ffffff 80%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.sc-cta-wrap {
    flex-direction: column;     /* Stack buttons */
    width: 100%;
  }

  .sc-cta-wrap a {
    width: 100%;                /* Full width buttons */
    text-align: center;
  }

}




/* Keep top bar in one line and responsive */
/* --- Top Bar Sticky --- */
.top-bar {
  background-color: #0e4045;
  color: #fff;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1050;
}

/* --- Main Header Sticky --- */
.main-header {
  /* position: sticky; */
  top: 42px; /* height of top-bar */
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Ensure header doesn't get overridden by old class */
.header-area.header-sticky {
  position: static !important;
  background: radial-gradient(circle at 20% 30%, rgb(232, 255, 245) 0%, rgb(255, 255, 255) 80%) !important;
}


/* Mobile view: make it sticky */
@media (max-width: 576px) {
  .header-area.header-sticky {
    position: sticky !important;
    top: 0;
    z-index: 999;
  }
}


/* Optional – better look */
.main-header .nav a {
  color: #155359;
  font-weight: 500;
}

.main-header .nav a.active {
  color: #0e4045;
  font-weight: 600;
}






/* Scoped styles for this section */
    .tt-values-grid .value-box {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 18px;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      min-height: 110px;             /* keeps boxes visually square-like */
      height: 100%;
      box-sizing: border-box;
    }
    .tt-values-grid .value-icon {
      flex: 0 0 64px;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(0,0,0,0.04);
      font-size: 22px;
    }
    .tt-values-grid .value-title {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }
    .tt-values-grid .value-sub {
      margin: 0;
      font-size: 13px;
      color: #555;
    }
    /* Make the center single box narrower on large screens and centered */
    .center-value-wrap {
      display: flex;
      justify-content: center;
    }
    .center-value-wrap .value-col {
      width: 100%;
      max-width: 360px;
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px) {
      .tt-values-grid .value-box { min-height: 95px; padding: 14px; }
      .tt-values-grid .value-icon { width: 56px; height: 56px; font-size: 20px; }
    }







    /* methodology */
    .methodology-ladder {
  background: #f4f9f7;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.ladder-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  height: 350px;
  flex-wrap: wrap;
}

.ladder-step {
  width: 160px;
  height: 80px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #00a86b;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #155359;
  transition: 0.3s ease;
  position: relative;
}

.ladder-step:hover {
  transform: translateY(-5px);
  background: #eaf7f0;
}

/* Step heights */
.step1 { height: 100px; }
.step2 { height: 140px; }
.step3 { height: 180px; }
.step4 { height: 220px; }
.step5 { height: 260px; background: #00a86b; color: #fff; }

/* Student animation */
.student-icon {
  position: absolute;
  bottom: 270px;
  left: 100px;
  animation: climb 7s ease-in-out infinite, fadeout 1s ease-out 7s infinite;
    opacity: 1;

}

.student-icon img {
  width: 200px;
}

/* @keyframes climb {
  0% { left: 100px; bottom: 90px; }
  100% { left: 930px; bottom: 320px; }
} */
@keyframes climb {
  0%   { left: 150px; bottom: 75px; }
  20%  { left: 330px; bottom: 120px; }
  40%  { left: 530px; bottom: 160px; }
  60%  { left: 730px; bottom: 200px; }
  100%  { left: 940px; bottom: 240px; }
}


/* ---------- Responsive Design ---------- */

/* Tablets */
@media (max-width: 991px) {
  .ladder-container {
    gap: 25px;
    height: auto;
    flex-wrap: wrap;
  }

  .ladder-step {
    width: 130px;
  }

  .student-icon img {
    width: 70px;
  }

  @keyframes climb {
    0% { left: 60px; bottom: 60px; }
    100% { left: 480px; bottom: 180px; }
  }
}

/* Mobiles */
@media (max-width: 767px) {
  .ladder-container {
    /* flex-direction: column-reverse; */
    align-items: center;
    gap: 15px;
    height: auto;
  }

  .ladder-step {
    width: 80%;
    max-width: 280px;
    height: 70px;
  }

  .step1 { height: 70px; }
  .step2 { height: 80px; }
  .step3 { height: 90px; }
  .step4 { height: 100px; }
  .step5 { height: 110px; }

  .student-icon {
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 20px;
    animation: none;
  }

  .student-icon img {
    width: 60px;
    display: none;
  }
}

/* -------------------- Decorative Shapes -------------------- */
.decorative {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
  animation: float 6s ease-in-out infinite alternate;
}

.jee-shape {
  width: 60px;
  height: 60px;
  background: #ffb703;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%); /* Triangle */
  top: 80px;
  left: 100px;
  animation-delay: 0.5s;
}

.neet-shape {
  width: 80px;
  height: 80px;
  background: #fb8500;
  border-radius: 50%; /* Circle */
  top: 120px;
  right: 140px;
  animation-delay: 1s;
}

.cet-shape {
  width: 70px;
  height: 70px;
  background: #219ebc;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 
                     75% 100%, 25% 100%, 0% 50%); /* Hexagon */
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
} 






/* campus and culture */
.campus-culture {
  /* background: #f4f9f7; */
  position: relative;
  overflow: hidden;
}

.campus-culture .section-heading h6 {

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .campus-culture .section-heading h2 {
  color: #155359;
  font-weight: 700;
} */

.campus-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
}

.campus-gallery img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.campus-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Decorative subtle floating shapes */
.campus-culture::before,
.campus-culture::after {
  content: '';
  position: absolute;
  background: #00a86b;
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite alternate;
}

.campus-culture::before {
  width: 180px;
  height: 180px;
  top: 60px;
  left: -60px;
}

.campus-culture::after {
  width: 120px;
  height: 120px;
  bottom: 60px;
  right: 40px;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(10deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .campus-gallery {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}

@media (max-width: 767px) {
  .campus-gallery {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .campus-culture::before,
  .campus-culture::after {
    display: none;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }
}



/* Alumni */
.alumni-section {
  background: #f9fdfb;
  position: relative;
  overflow: hidden;
}

.alumni-section .section-heading h6 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .alumni-section .section-heading h2 {
  color: #155359;
  font-weight: 700;
} */

.alumni-card {
  border-top: 4px solid #00a86b;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alumni-photo img {
  width: 100px;
  /*height: 100px;*/
  border-radius: 5%;
  /* object-fit: cover; */
  /* border: 4px solid #eaf7f0; */
  transition: 0.3s ease;
  object-fit:contain;
}

.alumni-card:hover .alumni-photo img {
  border-color: #00a86b;
  transform: scale(1.05);
}

/* Decorative floating elements */
.alumni-section::before,
.alumni-section::after {
  content: '';
  position: absolute;
  background: #00a86b;
  opacity: 0.07;
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite alternate;
}

.alumni-section::before {
  width: 150px;
  height: 150px;
  top: 50px;
  left: 40px;
}

.alumni-section::after {
  width: 200px;
  height: 200px;
  bottom: 80px;
  right: 80px;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(8deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .alumni-photo img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .alumni-section::before,
  .alumni-section::after {
    display: none;
  }
}


/* Vision mission values */
/* Container spacing */
.vmv-flow {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
  /*margin: 40px 0;*/
}

/* Card base */
.vmv-card {
  background: radial-gradient(circle at 20% 30%, rgb(232, 255, 245) 0%, rgb(255, 255, 255) 80%);
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  min-width: 290px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: 1px solid rgba(21, 83, 89, 0.15);
  transition: all 0.6s cubic-bezier(.22,.61,.36,1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

/* Hover animated lift */
.vmv-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: 0 20px 40px rgba(21, 83, 89, 0.25);
}

/* Glow animated border on hover */
.vmv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.5s;
}
.vmv-card:hover::after {
  border-color: #155359;
  box-shadow: 0 0 20px rgba(21, 83, 89, 0.35);
}

/* Header */
.vmv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

/* Icon */
.vmv-icon {
  background: rgba(21, 83, 89, 0.15);
  color: #155359;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 28px;
  transition: 0.45s;
}

/* Icon animation on hover */
.vmv-card:hover .vmv-icon {
  transform: scale(1.18) rotate(5deg);
  background: #155359;
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 83, 89, 0.35);
}

/* Title */
.vmv-header h4 {
  font-size: 24px;
  font-weight: 600;
  color: #155359;
  letter-spacing: 0.5px;
  transition: 0.4s;
}

/* Title hover effect */
.vmv-card:hover .vmv-header h4 {
  letter-spacing: 1px;
}

/* Paragraph */
.vmv-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0;
  transition: 0.4s;
}

/* Text focus highlight */
.vmv-card:hover p {
  color: #0a3c41;
}


/* Table td vertical alignment  */
table.table td {
  vertical-align: middle;
}

.light-green-heading{
  color: #a8f2b6;
}



/* Scroll Up Button Styling */
.scroll-up-btn {
  width: 45px;
  height: 45px;
  background: #00a86b;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 75px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.scroll-up-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Gallery page */
    .topper-img {
        height: 200px;
        object-fit: contain;
    }
