:root {
  --default-font: "Poppins",  sans-serif;
  --heading-font: "Poppins",  sans-serif;
  --nav-font: 'Roboto';
}

:root { 
  --background-color: #ffffff; 
  --default-color: #444444;
  --heading-color: #384f4b; 
  --accent-color: #087047; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #444444;  
  --nav-hover-color: #1bbca3; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #1bbca3; 
}


.light-background {
  --background-color: #f2f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1a18;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #203b37;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Style Sheet
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p{
	text-align: justify;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 54px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.topbar.accent-background {
    background-color: #fff;
    height: auto;
    padding: 10px 0;
    font-size: 14px;
}
.header-bg {
    background: #087047;
    padding: 10px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 10px 13px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    /* background-color: var(--nav-hover-color); */
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: #087047;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown:hover>ul.sub_sub_menu {
		left: 200px;
	}
}

.header .topbar .contact-info i {
    font-style: normal;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    color: #000000;
	padding-left: 5px;
}

.header .topbar .social-links a {
    color: #000000;
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
      color: #000;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #087047;
  font-size: 16px;
  color: #000;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #000;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #087047;
}

.footer .copyright p {
  margin-bottom: 0;
  text-align: center;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 120px 0 60px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 74px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #000;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: inherit;
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
    /* inset: 180px 64px 64px 64px; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    z-index: 3;
    width: 35%;
    background-color: hsl(0deg 0% 0% / 70%);
    border-top: 3px solid #fefcd6;
    border-bottom: 3px solid #fefcd6;
    top: 80%;
    left: 22%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    padding: 25px;
    border-radius: 10px;
}

.hero h2 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
            font-size: 15px;
        margin-bottom: 10px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
  text-align: justify;
      margin-bottom: 5px;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    /* max-width: 50%; */
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
      padding: 12px 32px;
    border-radius: 12px;
    transition: 0.5s;
    margin: 10px 0;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 25px;
  font-weight: 700;
  color: #087047;
  text-transform: capitalize;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  text-align: justify;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about-img {
    position: relative;
}
.about-img img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 30px 20px;
    width: 100%;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    background: linear-gradient(90deg, #ffffff, #fefcd6);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats .stats-item img {
    width: 60px;
    height: 60px;
}

.stats .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
}

.stats .stats-item i {
  color: #ffffff;
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: #000000;
    font-size: 40px;
    line-height: 25px;
    display: block;
    font-weight: 700;
    margin-top: 20px;
}

.plus {
    font-size: 35px;
    color: #000;
    margin-top: 20px;
    margin-left: 10px;
}

.stats .stats-item p {
    color: #000;
    padding: 0px 0 0 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# contact call to Section
--------------------------------------------------------------*/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}
.banner h1.display-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}
.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid #1a685b;
    border-left: 150px solid transparent;
	position: absolute;
    content: "";
    width: 0;
    height: 0;
}
.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid #1b685b;
    border-right: 150px solid transparent;
	position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner .btn {
    background: #087047;
    color: #fff;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 15px 15px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.services .service-item .icon img {
    width: 100%;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.services .service-item:hover h4 a,
.services .service-item:hover .icon i,
.services .service-item:hover p {
  color: var(--contrast-color);
}

.services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

.services .slide.slick-slide {
    padding: 20px 0;
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 90px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, #fefcd7, transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.call-to-action p {
    color: #000000;
    font-size: 20px;
	    text-align: center;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 4px solid #ffffff;
    color: var(--contrast-color);
    background: #087047;
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# More Services Section
--------------------------------------------------------------*/
.more-services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.more-services .card img {
  padding: 0;
  transition: 0.5s;
  transform: scale(1.1);
  height: 360px;
  object-fit: cover;
}

.more-services .card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #087047;
}

.more-services .card h4 {
    font-size: 20px;
    margin-bottom: 13px;
    color: #000000;
}

.more-services .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.more-services .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
      padding: 15px 15px;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  /* box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
  /* padding: 10px; */
}

.portfolio-info-content {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
	background: #087047;
	border-radius: 10px;
}

.portfolio-info-content h4 {
    margin-top: 14px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info a i {
    color: #fff;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 20px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio a.btn {
    background: #087047;
    color: #fff;
    margin-top: 30px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, .05);
  padding: 18px;
      background: #fff;
}

.team .member img {
    border-radius: 50%;
	width: 50%;
	border: 3px solid #087047;
}

.team .member .member-info {
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  inset: 0;
  transition: 0.2s;
  margin-bottom: 18px;
}

.team .member .member-info-content {
  margin-top: 0px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  /* background: rgba(0, 0, 0, 0.6); */
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  margin-top: 18px;
}

.team .member span {
  display: block;
  font-size: 13px;
  color: #000000;
  font-weight: 600;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .section-title p {
    color: #222;
	text-align: center;
}

.bg-light {
    background: #fdf8ea !important;
}

.team .member p i {
    color: #087047;
}

.team .member p {
    color: #000;
	display: flex;
	text-align: left;
}

.member .bg-light {
    height: 180px;
}

/*--------------------------------------------------------------
# testimonial Section
--------------------------------------------------------------*/
.contentcenter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.content-area.testi-content video {
    width: 100%;
}
.testimonial .h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #000;
}

.testimonial p{
	font-size: 14px;
}
.testimonial {
    background: #f9f9f9;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #000;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #fff;
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: #000;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.contact .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, #f5f5f5, transparent 50%);
  border-color: #a19e9e;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 60%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
	display: flex;
	align-items: center;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.award .member {
    padding: 10px;
    background: #ffffff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
}
.award .member .bg-light {
    height: 68px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.award .member img.img-fluid {
    border: 6px solid #087047;
	height: 250px;
	width: auto;
    margin: 0 auto 15px;
}
.award.newsletter .member img.img-fluid {
    height: auto;
}
.award .member p{
	font-size: 15px;
}
.award.newsletter .member .bg-light {
    display: block;
    height: auto;
}
.award.newsletter .member .bg-light p {
    text-align: center;
}
.award.newsletter .member .bg-light a.btn {
    margin-top: 5px;
}
.award.latest-Jaipuriar .member img.img-fluid {
    height: 100px;
}
.contact {
    background: #f8f4ef;
}

#wrap {
  width: 100%;
  margin: 0 auto;
}

#external-events {
  float: left;
  width: 150px;
  padding: 0 10px;
  text-align: left;
}

#external-events h4 {
  font-size: 16px;
  margin-top: 0;
  padding-top: 1em;
}

.external-event {
  /* try to mimick the look of a real event */
  margin: 10px 0;
  padding: 2px 4px;
  background: #3366cc;
  color: #fff;
  font-size: 0.85em;
  cursor: pointer;
}

#external-events p {
  margin: 1.5em 0;
  font-size: 11px;
  color: #666;
}

#external-events p input {
  margin: 0;
  vertical-align: middle;
}

.calender {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

#calendar {
    /* float: right; */
    margin: 0 auto;
    width: 900px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 2px #c3c3c3;
    border: 4px solid #087047;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.fc-state-default {
    border-color: #087047;
    color: #087047;
}
.fc-state-down, .fc-state-active {
    background-color: #fdfcd7;
}
.fc-header-title h2 {
    margin-top: 0;
    white-space: nowrap;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}
/*-------- Popup css------*/
.modal-dialog {
    width: 60% !important;
    max-width: 650px;
}
.modal-header .close {
    margin-top: -2px;
    position: absolute;
    right: 0px;
    background: none;
    border: none;
    font-size: 32px;
}
.modal-header {
    position: absolute;
    right: 0;
    z-index: +999;
    border: 0;
    background: #fff;
    border-radius: 0;
}
.modal-body{
    background: #087047;
    border-radius: 0 0 6px 6px;
}
.modal-body .ftr-a {
    border: 0;
    margin-top: 0;
    background: #087047;
}
.ftr-a {
    top: 0;
    background: #fff;
    padding: 12px;
    border: 1px solid #3336;
    border-radius: 10px;
    margin-top: 30px;
}
.modal-body .form-group {
    margin-bottom: 10px;
}
.modal-body .btn {
    background: #000;
	color: #fff;
}
.modal-header h3 {
    color: #000;
}
/*-------- Popup css------*/
.footer-box{
	display: none;
}

@media only screen and (min-width: 320px) and (max-width: 766px) {
    .footer-box {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 99;
    }
}
.book-app {
    border-right: 1px solid #ddd;
    width: 50%;
    padding: 12px 10px;
    float: left;
    line-height: 18px;
    text-align: center;
    max-height: 70px;
}
.book-app a {
    font-size: 15px;
    font-weight: bold;
    text-transform: capitalize;
}

.display-md {
    display: none;
}


@media (max-width: 767px) {
	.topbar .d-flex {
    display: block !important;
    text-align: center;
}
.header .topbar .contact-info i {
    font-size: 12px;
}
.hero .carousel-container{
	    width: 75%;
        left: 50%;
        top: 78%;
        padding: 10px;
		align-items: center;
		        text-align: center;
}
.hero p{
	font-size: 11px;
}
.stats .col-lg-3 {
    flex: 0 0 auto;
    width: 50%;
}
.stats .stats-item .purecounter, .plus {
    font-size: 21px;
        margin-top: 0;
}
.stats .stats-item p{
	font-size: 14px;
}
.stats {
    padding: 0;
}
.banner h1.display-h1 {
    font-size: 18px;
}
.banner p{
	  font-size: 12px !important;
      text-align: center;
}
.banner .banner-inner .btn {
    padding: 10px !important;
}
.more-services {
    padding-top: 0;
}
.call-to-action h3 {
    font-size: 24px;
}
.call-to-action p {
    font-size: 12px;
	        text-align: center;
}
.call-to-action .cta-btn {
    font-size: 14px;
}
.call-to-action {
    padding: 50px 0;
}
.section-title h2 {
    font-size: 20px;
}
.portfolio .portfolio-content img {
    height: 150px;
}
.testimonial .col-lg-6 {
    margin-bottom: 30px;
}
.fc-header td {
    white-space: nowrap;
    padding: 15px 10px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}
#calendar {
    width: 100%;
}
.member .bg-light {
    height: auto !important;
}
.hero .carousel {
    min-height: 60vh;
}
.topbar .d-flex .display-sm {
    display: none !important;
}
.hero .btn-get-started{
	font-size: 12px;
	padding: 9px 16px;
}
video#myVideo {
    width: 100% !important;
    height: auto !important;
}
.about .content h3 {
    font-size: 20px;
}
p {
    text-align: justify;
	font-size: 14px;
}
.text-c {
    text-align: center;
}
section, .section{
	padding: 30px 0;
}
.section-title {
    padding-bottom: 10px;
}
.faq .content h3 {
    font-size: 20px;
	text-align: center;
}
.faq .faq-container .faq-item h3{
	font-size: 14px;
}
.Gallery-section .row.gy-4.isotope-container {
    justify-content: center;
}
.testimonial .h2 {
    font-size: 20px;
}
.section-title h2:before, .section-title h2:after{
	display: none;
}
.modal-dialog {
    width: 96% !important;
    max-width: 100%;
}
.modal-header .close{
	top: 6px;
}
.modal-header h3 {
    font-size: 18px;
}
.footer .copyright p {
    text-align: center;
}
.display-sm {
    display: none;
}
.display-md {
    display: block;
}

}

/*-------- Inner page banner css------*/
.page-banner-bg {
    background-size: cover;
    background-position: top;
}
.banner-content.text-center {
    padding-top: 215px;
    padding-bottom: 169px;
}
.banner-content .title {
    color: #ffffff;
    font-weight: 600;
    font-size: 50px;
}

.download-file {
    text-align: left;
}
.download-file img {
    width: 200px;
}
.commit .accordion-button:not(.collapsed) {
    background: #087047;
    color: #fff;
}
.table-commit table {
    width: 100%;
    min-width: 240px;
    border-collapse: collapse;
    text-align: center;
}
.table-commit table th {
    padding: 20px;
    border: 1px solid #087047;
}
.table-commit table tr td {
    border: 1px solid #ddd !important;
    padding: 20px;
    text-align: center;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
}
.accordion-body ul li {
    padding-bottom: 10px;
}
.accordion-body h4 {
    color: #000;
}
.video-col {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    padding: 15px;
}
.mandt-dis:before {
    background: #fff;
}

.eael-data-table-wrap {
    overflow-x: scroll !important;
    padding-bottom: 5px;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -o-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    padding: 0;
    border-radius: 10px;
    text-align: center;
}
.eael-data-table tr th {
    padding: 20px 15px;
    background: #076F47;
	color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    border-color: #000;
    border-width: 2px;
    border-style: none;
    background-clip: padding-box;
}
.eael-data-table tbody tr td {
    padding: 20px 15px;
    font-size: 16px;
    line-height: 1;
    border-width: 2px;
    border-style: none;
    background-clip: padding-box;
}
.eael-data-table tbody > tr:nth-child(2n+1) td {
    color: #080A12;
    background-color: #FFFFFF;
}
.eael-data-table tbody > tr:nth-child(2n) td {
    color: #080A12;
    background: #EBECF0;
}
.facility-img img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.verti-tab .nav.nav-tabs {
    justify-content: center;
    border-bottom: 0;
}
.verti-tab .nav.nav-tabs li .nav-link.active {
    margin-bottom: 10px;
    border: 0;
    border: 3px solid #087047;
	color: #087047;
    border-radius: 0;
}
.verti-tab .nav.nav-tabs li .nav-link {
    color: #000;
	margin-bottom: 10px;
	border: 3px solid #ffffff;
}
.verti-tab .nav-tabs .nav-link:focus, .verti-tab .nav-tabs .nav-link:hover{
	border: 0;
}
.accordion-item.active.show {
    border: 0;
}
.verti-tab .accordion-body {
    text-align: center;
}
.verti-tab .accordion-body img {
    width: 70%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}
.class-Syllabus {
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
	margin-bottom: 30px;
}
.class-Syllabus h4 {
    padding: 12px 0;
    font-size: 20px;
    background: #eee;
    color: #000;
}
.class-Syllabus img {
    width: 100%;
}
.accordion-body .uni-img img {
    width: 50% !important;
}
.accordion-body.inner-content {
    text-align: left;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.tree-wrap{max-width:1100px;margin:28px auto;padding:10px;}
  .tree-wrap .board{position:relative;padding:28px 20px 80px}
  /* visually similar card */
  .tree-wrap .person{
    width:202px;
    text-align:center;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .tree-wrap .photo{
    width:200px;
	height:200px;
	border-radius:50%;
	object-fit:cover;
	object-position: top;
    box-shadow:0 6px 24px rgba(0,0,0,0.08);
    border:4px solid #087047;
    background:#f3f7fb;
	z-index: +99;
  }
  .tree-wrap .about-detail {
    background: #fff;
    z-index: +9;
   }
  .tree-wrap .name{font-weight:700;font-size:13px;text-transform:uppercase}
  .tree-wrap .title{font-size:12px;color:var(--muted);letter-spacing:0.02em}
  .tree-wrap .row{display:flex;gap:32px;justify-content:center;align-items:flex-start;margin:16px 0;}
  .tree-wrap .top-pair{display:flex;gap:80px;justify-content:center;align-items:flex-end;margin-top:10px}
  .tree-wrap .center-label{display:inline-block;padding:8px 14px;background:#087047;color:#fff;border-radius:4px;font-weight:700;margin:10px auto}
  .tree-wrap .small-label{display:inline-block;padding:6px 12px;background:#087047;color:#fff;border-radius:3px;font-weight:700;margin-top:10px;z-index: +99;position: relative;}
  /* layout placeholders for invisible root points */
  .tree-wrap .slot{position:relative; display:flex; justify-content:center;}
  /* bottom sports */
  .tree-wrap .sports-wrap{display:flex;justify-content:center;margin-top:28px}
  /* responsive */
  @media(max-width:900px){
    .tree-wrap .top-pair{gap:30px}
    .tree-wrap .row{gap:12px;flex-wrap:wrap}
    .tree-wrap .photo{width:130px;height:130px}
    .tree-wrap .person{width:160px}
  }

  /* SVG sits absolutely behind everything */
  svg#lines{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;overflow:visible}
  /* small spacing helpers */
  .tree-wrap .spacer{height:8px}
  
  
  /* Tab buttons */
    .gallery-photos .tab {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .gallery-photos .tab button {
      background-color: #e9ecef;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 12px 25px;
      transition: 0.3s;
      font-size: 16px;
      margin: 5px;
      border-radius: 8px;
    }

    .gallery-photos .tab button:hover {
      background-color: #dee2e6;
    }

    .gallery-photos .tab button.active {
      background-color: #087047;
      color: white;
    }

    /* Gallery layout */
    .gallery-photos .tabcontent {
      display: none;
      animation: fadeEffect 0.5s;
    }

    @keyframes fadeEffect {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    .gallery-photos .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 15px;
    }

    .gallery-photos .gallery img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: transform 0.3s;
    }

    .gallery-photos .gallery img:hover {
      transform: scale(1.05);
    }
	

/*---- Contact us css ------*/
.contact-page-sec {
    padding: 60px 0;
}
.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
}
.contact-info-item {
    background: #087047;
    padding: 30px 0px;
    height: 260px;
}
.contact-info-icon {
    margin-bottom: 15px;
}
.contact-info-icon i {
    font-size: 48px;
    color: #fefcd7;
}
.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info-text span {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}
.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}
.contact-page-form form {
    padding: 20px 15px 0;
}
.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}
.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}
.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
    background: #087047 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}
.contact-page-map {
    margin-top: 36px;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12, .contact-page-form .col-md-12.col-sm-12.col-xs-12 {
    padding-left: 0;
}

/*---- career page css -----*/
.career-page .job-listing {
      background: white;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 1.5rem;
      padding: 1.5rem;
	  text-align: center;
 }

.career-page .job-listing h3 {
      margin-top: 0;
 }
 
.career-page h4 {
      color: #087047;
      border-bottom: 2px solid #087047;
      padding-bottom: 0.5rem;
 }
 
.career-page a.button {
      display: inline-block;
      background-color: #087047;
      color: white;
      padding: 0.6rem 1.2rem;
      text-decoration: none;
      border-radius: 4px;
      margin-top: 0.8rem;
    }


.career-page .job-listing h3 {
    font-size: 20px;
}

.career-form {
      max-width: 700px;
      background-color: #fff;
      margin: 2rem auto;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.career-form h2 {
      text-align: center;
      color: #003366;
      margin-bottom: 1.5rem;
    }

.career-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #333;
    }

.career-form input,
.career-form select,
.career-form textarea {
      width: 100%;
      padding: 0.9rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      box-sizing: border-box;
    }

.career-form textarea {
      resize: vertical;
      min-height: 100px;
    }

.career-form button {
      width: 100%;
      background-color: #087047;
      color: white;
      padding: 0.9rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
#career-form {
    background: #fefcd6;
}
.team.process-admission .member p span {
    font-size: 16px;
}
.team.process-admission .member .bg-light {
    height: 210px;
}
.team.houses-sec .member img {
    border: 0;
    border-radius: inherit;
	width: 40%;
}
.student-corner-table .tablepress img {
    width: auto;
}
.eael-data-table.student-corner-table {
    text-align: center;
}

/*-------- core value css------*/
.facilities-area {
    position: relative;
    z-index: 1;
	background: #fef3e6;
}
.pb-70 {
    padding-bottom: 70px;
}

.pt-100 {
    padding-top: 100px;
}
.single-facilities {
    position: relative;
    margin-bottom: 30px;
}
.single-facilities .number span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #1b0238;
    background-color: #ea512e;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
    font-weight: bold;
}
.single-facilities .number span::before {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    line-height: 70px;
    border: 1px solid #ea512e;
    border-radius: 50px;
    top: -5px;
    left: -5px;
    right: 0;
    transition: 0.5s;
}
.single-facilities .number .bg-2 {
    background-color: #fdbea8;
}
.single-facilities .number .bg-2::before {
    border: 1px solid #fdbea8;
}
.single-facilities .number .bg-4 {
    background-color: #fd91a8;
}
.single-facilities .number .bg-4::before {
    border: 1px solid #fd91a8;
}
.single-facilities .number .bg-5 {
    background-color: #fce0ad;
}
.single-facilities .number .bg-5::before {
    border: 1px solid #fce0ad;
}
.single-facilities:hover .number span {
    background-color: #f5890d;
    color: #ffffff;
}
.single-facilities .facilities-content {
    padding-left: 88px;
}
.single-facilities .facilities-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1b0238;
    font-weight: 600;
}
.single-facilities .facilities-content h3 a {
    color: #1b0238;
}
.single-facilities .facilities-content p {
    margin-bottom: 0;
    line-height: 1.8;
    color: #444444;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}
.value-shape .shape-1 {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: -1;
}
.value-shape .shape-2 {
    position: absolute;
    left: 20px;
    z-index: -1;
    bottom: 30px;
}
.value-shape .shape-3 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.vision-mision {
    padding-top: 50px;
}
.vm-inner {
    background-color: #FAF5F2;
    padding: 42px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 280px;
}
.vm-inner h3 {
    font-size: 25px;
    font-weight: 700;
    color: #087047;
    text-transform: capitalize;
}

/*---- the shri tab css ----*/
.tabs_wrapper {
  width: 95%;
  text-align: center;
  margin: 0 auto;
  background: transparent;
}

ul.tabs {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  width: 23%;
  min-width: 175px;
  list-style: none;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.tabs li {
  margin: 0;
  cursor: pointer;
  padding: 20px 25px;
  margin: 10px 0px;
  border-radius: 8px;
  line-height: 31px;
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  background-color: #666;
  background: #88c6ad;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.tabs li:hover {
  background: #076f47;
  color: white;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.tabs li.active {
  background: #076f47;
  color: #ffffff;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab_container {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 20;
  left: 2%;
  width: 70%;
  min-width: 10px;
  text-align: left;
  background: white;
  border-radius: 12px;
  /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
}

.tab_content {
  padding: 20px;
  height: 100%;
  display: none;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 781px) {
  ul.tabs {
    display: none;
  }

  .tab_container {
    display: block;
    margin: 0 auto;
    width: 95%;
    border-top: none;
    border-radius: 0;
    /* box-shadow: 0px 0px 10px black; */
	left: 0;
  }

  .tab_drawer_heading {
    background-color: #ccc;
    background: #88c6ad;
    color: #fff;
    margin: 0;
    padding: 10px 20px;
    margin-bottom: 8px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
  }
  .tab_drawer_heading:hover {
    background: #ccc;
    background: #076f47;
    color: white;
  }

  .d_active {
    background: #fff;
    background: #076f47;
    color: #fff;
  }
}

/*---- timeline css ----*/
.timeline {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
	overflow: hidden;
}

/* TIMELINE ITEM — THREE-COLUMN FLEX */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* LEFT & RIGHT PANELS */
.timeline-left,
.timeline-right {
    width: 45%;
}

.timeline-left img,
.timeline-right img {
    width: 100%;
    border-radius: 6px;
}

.timeline-left h3,
.timeline-right h3 {
    margin-top: 0;
    color: #004b8d;
    font-size: 20px;
}

/* CENTER COLUMN (LINE + DOTS) */
.timeline-center {
    width: 10%;
    position: relative;
    display: flex;
    justify-content: center;
}

.dot {
    width: 14px;
    height: 14px;
    background: red;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.line {
    position: absolute;
    width: 2px;
    background: #1b4f72;
    top: 14px;
    bottom: -60px;
	height: 100vh;
}

/* TEXT CONTENT STYLE */
.timeline-item p {
    color: #333;
    line-height: 1.6;
}

/* RESPONSIVE (MOBILE) */
@media (max-width: 768px) {

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-center {
        width: 100%;
        margin: 20px 0;
    }

    .line {
        display: none;
    }

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

.inner-tab-content h3, .inner-tab-content p {
    text-align: center;
}

.text-center-mt p {
    text-align: center;
}

.meet-manage .card {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.meet-manage .card img {
    width: 50%;
    height: 300px;
}
.meet-content {
    padding-left: 35px;
    text-align: left;
}
.meet-content .card h3{
	margin-top: 0;
}

.subject-offered .titlebox h3 {
    font-size: 25px;
    font-weight: 700;
    color: #087047;
    text-transform: capitalize;
}

.textdesign1 {
    background-color: #eee;
    padding: 30px;
    margin-top: 15px;
    border-left: 5px solid #087048;
    background-image: url(../img/list-bg-img.jpg);
    background-size: cover;
}

.titlebox {
    position: relative;
    display: flex;
    align-items: center;
}

.textdesign1 .titlebox .title {
    font-size: 24px;
}

.titlebox .title {
    font-weight: 600;
    letter-spacing: -1px;
    color: #087048;
    font-size: 32px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}

.textdesign1 .titlebox .title:after {
    height: 30px;
    width: 30px;
}

@media (max-width: 767px) {
	.meet-manage .card {
		display: block;
	}
	.meet-manage .card img {
		width: 100%;
		height: 300px;
	}
	.meet-content {
		padding-left: 0;
	}
	.banner-content .title {
		font-size: 22px;
	}
	.banner-content.text-center {
		padding-top: 140px;
		padding-bottom: 50px;
	}
	.vm-inner{
		height: auto;
		padding: 30px;
	}
	.shape-1 img, .shape-2 img, .shape-3 img {
		width: 45%;
	}
	.subject-offered .section-title h2 {
		margin-bottom: 25px;
	}
	.table-commit table{
		overflow-x: scroll;
    	display: block;
	}
	.tab-content>.tab-pane {
		display: block;
	}

	.fade:not(.show) {
		opacity: 1;
	}
	.about .content ul li {
   	    display: flex;
		text-align: left;
	}
	ul li {
		display: flex;
		font-size: 14px;
	}
	
	.commit li i {
		margin-right: 7px;
	}
	.accordion-body h4 {
		font-size: 16px;
	}
	.shri-tabs ul li {
		display: list-item;
	}
	.navmenu ul li {
		display: block;
	}
}



/* new facility css added */

.facilities .section-title-hd {
    color: #198754; 
	font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.facilities .lead {
    font-size: 1rem;
    color: #444444;
    font-weight: 400;
}
.facilities .image-wrapper {
    position: relative;
    padding-bottom: 20px; 
}
.facilities .custom-shape {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    /*border-bottom-left-radius: 50% 40%;
    border-bottom-right-radius: 50% 40%;
    box-shadow: 0 15px 0 #198754; 
    box-shadow: 0 4px 8px 0 rgb(8 112 72 / 9%), 0 6px 20px 0 rgb(8 112 72 / 72%);*/
}

.faci-box {
    box-shadow: 0 4px 8px 0 rgb(8 112 72 / 9%), 0 6px 20px 0 rgb(8 112 72 / 25%);
    padding: 14px;
	height: 506px;
}

.facilities .feature-row {
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .facilities .feature-row {
        margin-bottom: 0px;
        text-align: center;
    }
    .facilities .section-title {
        justify-content: center;
    }
    .facilities .custom-shape {
        height: 250px;
    }
	.facilities .section-title-hd {
		font-size: 20px;
	}
	.facilities .lead {
		font-size: 14px;
		color: #444444;
		font-weight: 400;
	}
	.facilities .container.py-5 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.faci-box {
		height: auto;
	}
}
