/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --primary-color: #4CC082;
  --light-primary-color: #E2F3F0;
  --secondary-color: #EC6C5A;
  --light-secondary-color: #FFE9E5;
  --tertiary-color: #FFEED3;
  --dark-color: #31333A;
  --light-color: #FFFFFF;
  --grey-color: #BBC7D4;
  --light-dark-color: #727272;
  --light-grey-color: #f5f5f5;
}

/* Fonts */
:root {
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Inter', sans-serif;
}

body {

  --bs-link-color: var(--dark-color);
  --bs-link-hover-color: var(--dark-color);

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: var(var(--body-font));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.3rem;
  --bs-body-color: var(--dark-color);

  --bs-primary: #4CC082;
  --bs-primary-rgb: 76, 192, 130;
  --bs-primary-bg-subtle: #E2F3F0;

  --bs-border-color: #F7F7F7;

  --bs-secondary: #EC6C5A;
  --bs-secondary-rgb: 236, 108, 90;
  --bs-secondary-bg-subtle: #FFE9E5;

  --bs-tertiary: #f8be60;
  --bs-tertiary-bg-subtle: #FFEED3;

}

.btn {
  --bs-btn-font-family: var(--heading-font);
}

.btn-primary {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease-in;
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #46ad76;
  --bs-btn-hover-border-color: #46ad76;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease-in;
  --bs-btn-color: var(--primary-color);
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--primary-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}

.btn-outline-dark {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

.btn-dark {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--dark-color);
  --bs-btn-border-color: var(--dark-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--dark-color);
  --bs-btn-active-border-color: var(--dark-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--dark-color);
  --bs-btn-disabled-border-color: var(--dark-color);
}

/* body {
  letter-spacing: 0.01625rem;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-body-color);
  font-weight: 700;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

.breadcrumb {
  --bs-breadcrumb-item-active-color: var(--dark-color);
}

.form-control {
  border: 1px solid #e4e3e3;
}

.form-control:focus {
  border-color: #949494;
  outline: 0;
  box-shadow: none;
}

.padding-large {
  padding-top: 18rem;
  padding-bottom: 14rem;
}

.padding-medium {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.padding-medium-2 {
  padding-top: 11rem;
  padding-bottom: 8rem;
}

@media only screen and (max-width: 768px) {
  .padding-large {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .padding-medium {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-medium-2 {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }
}


/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em #1e3a8a;
  }

  40% {
    box-shadow: 0 2em 0 0 #1e3a8a;
  }
}


@media screen and (max-width: 991px) {

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

}



/*----- Nav Section Style -------------------------*/
/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:hover {
  color: #091c77;
}

.nav-link {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* dropdown style */
.dropdown-item {
  font-weight: normal;
  padding: 0.5rem 1rem;
  font-size: 14px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--body-text-color);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--light-grey-color);
}


/*----- Feature Section Style -------------------------*/

.feature-item {
  box-shadow: 4px 4px 10px rgba(150, 150, 150, 0.192);
  background: var(--light-color);
  cursor: pointer;
}

.feature-item:hover {
  background: var(--primary-color);
  transition: all 0.3s ease-in;
}

.feature-title {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.feature-info {
  transition: all 0.3s ease-in;
}

.feature-item:hover .feature-info,
.feature-item:hover .feature-title {
  color: var(--light-color);
}

@media only screen and (min-width: 1400px) {
  #features {
    position: relative;
  }

  .feature-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media only screen and (max-width: 1399px) {
  .feature-box {
    margin-top: 120px;
  }
}


/*----- catergory Section Style -------------------------*/
.category-paragraph {
  transition: all 0.3s ease-in;
}

.primary {
  background: var(--bs-primary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-primary {
  color: var(--primary-color);
  transition: all 0.3s ease-in;
}

.primary:hover {
  background: var(--bs-primary);
}

.secondary {
  background: var(--bs-secondary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-secondary {
  color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.secondary:hover {
  background: var(--bs-secondary);
}

.tertiary {
  background: var(--bs-tertiary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-tertiary {
  color: var(--bs-tertiary);
  transition: all 0.3s ease-in;
}

.tertiary:hover {
  background: var(--bs-tertiary);
}

.gray {
  background: #e0e5eb;
  transition: all 0.3s ease-in;
}

.svg-gray {
  color: var(--bs-gray);
  transition: all 0.3s ease-in;
}

.gray:hover {
  background: var(--bs-gray);
}

.primary:hover .svg-primary,
.primary:hover .category-paragraph,
.secondary:hover .svg-secondary,
.secondary:hover .category-paragraph,
.tertiary:hover .svg-tertiary,
.tertiary:hover .category-paragraph,
.gray:hover .svg-gray,
.gray:hover .category-paragraph {
  color: var(--light-color);
}

/*----- courses Section Style -------------------------*/
h5.course-title {
  transition: all 0.3s ease-in;
}

h5.course-title:hover {
  color: var(--primary-color);
}


/*----- testimonial Section Style -------------------------*/
.swiper-pagination {
  position: unset;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
  background: var(--bs-primary);
}


/*----- teacher Section Style -------------------------*/
.team-member ul.social-links {
  top: 0;
}

.team-member ul li {
  padding: 5px;
  transform: rotatey(-90deg) perspective(100px);
  transform-origin: left;
  cursor: pointer;
  transition: .5s ease-in-out;
  background-color: var(--primary-color);
}

.team-member ul li:first-of-type {
  transition-delay: .3s;
}

.team-member ul li:nth-of-type(2) {
  transition-delay: 0.6s;
}

.team-member ul li:nth-of-type(3) {
  transition-delay: 0.9s;
}

.team-member ul li:last-of-type {
  transition-delay: 1.3s;
}

.team-member:hover ul li {
  transform: rotatey(0deg);
}


/* Zoom Effect*/
.zoom-effect {
  position: relative;
  overflow: hidden;
}

.zoom-effect img {
  max-width: 100%;
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.zoom-effect:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.zoom-effect:hover:before {
  opacity: 1;
  cursor: pointer;
}


/*----- register Section Style -------------------------*/
#register {
  background: var(--tertiary-color);
}


/*----- footer Section Style -------------------------*/
a.footer-link:hover {
  color: var(--primary-color);
}

svg.social-icon {
  color: var(--light-dark-color);
  transition: all 0.3s ease-in;
}

svg.social-icon:hover {
  color: var(--primary-color);
}




/*--------------------------------------------------------------
faqs page style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082');

}

.accordion-button::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}



/*--------------------------------------------------------------
Checkout page style start
--------------------------------------------------------------*/
.form-check-input {
  border: 1px solid var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}


/*--------------------------------------------------------------
Styles page style start
--------------------------------------------------------------*/
.chocolat-wrapper {
  z-index: 9999;
}



/*--------------------------------------------------------------
Account page style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab {
  color: var(--light-dark-color);
}

.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab.active {
  color: var(--primary-color);
}



/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/

/* ------ Pagination ------*/
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-color: var(--light-color);
  --bs-pagination-hover-bg: var(--bs-primary);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--light-color);
  --bs-pagination-focus-bg: var(--bs-primary);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: var(--light-color);
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-pagination-disabled-color: var(--bs-primary-color);
  --bs-pagination-disabled-bg: var(--bs-primary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}



/*--------------------------------------------------------------
Single Product page style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #BC0701;
}

/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 660px;
}




/*--------------------------------------------------------------
  Shop page style
  --------------------------------------------------------------*/
.product-box {
  width: 25%;
}

@media screen and (max-width: 800px) {
  .product-box {
    width: 50%;
  }
}

.product-store .product-item {
  position: relative;
}

.product-item .cart-concern {
  background: var(--light-color);
  width: 80%;
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px;
  z-index: 9;
  transition: 0.5s ease-out;
  padding: 20px 30px;
  opacity: 0;
}

.product-item:hover .cart-concern {
  bottom: 150px;
  opacity: 1;
}

.cart-concern .cart-button button {
  background: none;
  color: var(--dark-color);
  height: auto;
  padding: 0;
  margin: 0;
}

.cart-concern .cart-button button i.icon {
  font-size: 15px;
}

.product-item .wishlist-btn i.icon.icon-heart {
  font-size: 20px;
}

.product-item .item-price {
  font-size: 1.8em;
}




/*--------------------------------------------------------------
  course detail page style
  --------------------------------------------------------------*/
.nav-tabs .nav-item {
  transition: all 0.1s ease-in;
  border-radius: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: var(--bs-primary);
  isolation: isolate;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

/*---- video section style start ----*/

/* color box style */
div#cboxOverlay {
  opacity: 0.8 !important;
}

.video .video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

iconify-icon.video-icon {
  font-size: 30px;
  color: var(--bs-light);
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease-in-out;
}

iconify-icon.video-icon:hover {
  font-size: 35px;
}



/* additional */

#heroSlider
{
width: 100%;
height: auto;
}
.display-1 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 45px;
  text-align: center;
}
.carousel-item img {
  height: auto;
  object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size:70%;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@media (max-width:768px){

    .carousel-item img{
        height:auto;
    }

}


.licons {
  font-size: 20px;
  padding: 6px;
  /*border:1px solid #ddd;
  border-radius: 30px;*/
  margin-right: 5px;
}

.donate {
	color: #fff;
	background: #1b1a6b;
	padding: 4px;
	border-radius: 10px;
}


.about-us p{
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
}

.split-heading {
  font-size: 35px;
  font-weight: 800;
  color: #222;
  line-height: 1;
  margin-bottom: 27px;
  font-weight: normal;
}

.split-heading span{
    color: #ff6b35;
}


.about-img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    height: 280px;
}
#hero {
  background: linear-gradient(110deg,#ffffff0d,#6f93c773);
  height: auto;
}
#logo {
  width: 100%;
  max-width: 100%;
  height: 80px;
}
.experience-badge {
  position: absolute;
  bottom: -9rem;
  left: 29rem;
  background: linear-gradient(135deg,#091c77,#bc0701);
  color: #fff;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  min-width: 170px;
  box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.experience-badge h3 {
  color: #fff;
}
.title-box{
    border-left:5px solid #bc0701;
    padding-left:20px;
}

.title-box span{
    color:#091c77;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.title-box h2 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 50px;
}


.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
  height: auto;
  text-align: center;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card span {
  font-size: 56px;
  display: block;
}

.feature-card h4 {
  font-size: 18px;
  margin-top: 35px;
}


.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:40px;
}

.stat-box {
  background: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  height: auto;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,#091c77,#bc0701);
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.stat-box h3 {
  font-size: 20px;
  color: #091c77;
  margin: 0;
  line-height: 1;
}

.stat-box p {
  margin-top: 12px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}


.cta-section {
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(135deg,#091c77,#bc0701);
  position: relative;
  overflow: hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.cta-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.cta-tag{
    display:inline-block;
    background:rgba(255,255,255,.2);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
}

.cta-content h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
}
.cta-content p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:#091c77;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-primary:hover,
.btn-outline:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:16px;
    }
}


.contact-gallery-section{
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3){
    margin-top:40px;
}

.gallery-grid img:hover{
    transform:translateY(-8px);
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,107,53,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.section-tag{
    display:inline-block;
    background:#fff3ee;
    color:#091c77;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.contact-card h2{
    font-size:22px;
    font-weight:800;
    margin:20px 0 15px;
}

.contact-card p{
    color:#666;
}

.info-box{
    display:flex;
    gap:15px;
    margin-top:25px;
    padding:18px;
    background:#fafafa;
    border-radius:15px;
}

.icon{
    width:55px;
    height:55px;
    min-width:55px;
    background: linear-gradient(100deg,#2d4eea,#bc07019e);
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.info-box h6{
    margin-bottom:5px;
    font-weight:700;
}

.info-box p{
    margin:0;
}

.visit-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 32px;
    background:linear-gradient(100deg,#091c77,#bc0701);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.visit-btn:hover{
    color:#fff;
    transform:translateY(-4px);
}



 .photo-gallery {
  color:#313437;
  background-color:#fff;
}
.lightbox {
    position: absolute;
    width: 100%;
    z-index: 99999;
    font-weight: 400;
}
.photo-gallery p {
  color:#7d8285;
}

.photo-gallery h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.photo-gallery .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom:0;
}

.photo-gallery .photos {
  padding-bottom:20px;
}

.photo-gallery .item {
  padding-bottom:30px;
}
.foot_letnews_info
    {
        margin-bottom:18px;
    }
.galimg {
  width: 100%;
  height: 190px;
}


#footer {
  background: linear-gradient(110deg,#2727273b,#1a1a1ac4);
}

#footer a{
  color: #fff;
}

  #footerlogo {
  max-width: 100%;
  height: 160px;
}
.ftheading{
  color: #fff;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  font-size: 16px;
}


.pyc
{
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}



.page-header{
    position:relative;
    padding:50px;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );
}

.page-title {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin: 20px 0;
}

.header-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
}

.breadcrumb{
    margin-bottom:0;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#fbbf24;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

.shape{
    position:absolute;
    border-radius:50%;
    background: #bc0701;
}

.shape-1 {
  width: 206px;
  height: 189px;
  top: -80px;
  right: -128px;
}
.shape-2 {
  width: 142px;
  height: 99px;
  bottom: -50px;
  left: -50px;
}
@media(max-width:768px){

    .page-header{
        padding:80px 0;
    }

    .page-title{
        font-size:38px;
    }

}

.experience-badge1 {
  position: absolute;
  bottom: 3rem;
  left: 29rem;
  background: linear-gradient(135deg,#091c77,#bc0701);
  color: #fff;
  padding: 4px;
  border-radius: 13px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.text-justify
{
  text-align: justify;
  color: #000;
}



.vision-mission {
  background: #f8fafc;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#fff3ee;
    color:#091c77;
    border-radius:50px;
    font-weight:600;
}

.section-title{
    font-size:22px;
    font-weight:800;
    margin:15px 0;
}
.wrapper {
  margin-top: 5rem !important;
}
.vm-card {
  background: #fff;
  padding: 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: .4s;
  height: 100%;
  text-align: center;
}

.vm-card:hover{
    transform:translateY(-8px);
}

.vm-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
}

.vision::before{
    background:#bc0701;
}

.mission::before{
    background:#091c77;
}

.vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg,#091c77,#091c77);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.mission .vm-icon{
    background:linear-gradient(135deg,#bc0701,#bc0701);
}

.vm-card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    color:#000;
    line-height:1.8;
    margin-bottom:0;
}

@media(max-width:768px){

.section-title{
    font-size:36px;
}

.vm-card{
    padding:30px;
}

}

.santhaaddr {
  font-size: 20px;
  text-align: center;
  color: #091c77;
}
.addr1 {
  font-size: 15px;
  font-weight: bold;
}

.addr2{
  font-size: ;
}


.faculty-mini-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
  border-bottom: 1px solid #142248;
}
.faculty-mini-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.faculty-no {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: linear-gradient(135deg,#142249,#d77c7d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faculty-content h5{
    margin:0;
    font-size:15px;
    font-weight:700;
}

.faculty-content p{
    margin:4px 0 0;
    color:#777;
    font-size:14px;
}



.director-area{
    background:#f7f8fc;
}

.sub-title{
    display:inline-block;
    background:#ffe9df;
    color:#ff6b35;
    padding:8px 22px;
    border-radius:40px;
    font-weight:600;
}

.main-title{
    font-size:48px;
    font-weight:800;
    margin-top:15px;
}

.director-wrapper{
    position:relative;
}

.director-photo{
    position:relative;
    text-align:center;
}

.director-photo img{
    width:100%;
    max-width:330px;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.director-info{
    width:85%;
    background:#fff;
    margin:-35px auto 0;
    padding:18px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
    position:relative;
}

.director-info h4{
    margin:0;
    font-weight:700;
}

.director-info span{
    color:#ff6b35;
    font-weight:600;
}

.message-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
}


.quote-mark {
  position: absolute;
  top: -18px;
  left: 6px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,#15244e,#bc0701);
  color: #fff;
  font-size: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(255,107,53,.35);
}
.message-box h3{
    font-weight:700;
    margin-bottom:20px;
    margin-top:20px;
}

.message-box p{
    color:#000;
    line-height:1.9;
    text-align:justify;
}

.signature{
    margin-top:30px;
    padding-top:20px;
    border-top:2px dashed #ddd;
    color:#2f3e69b2;
    font-size:18px;
}

@media(max-width:991px){

.message-box{
    margin-top:40px;
    padding:35px;
}

.main-title{
    font-size:35px;
}

.quote-mark{
    left:20px;
}

}




.about-school{
    background:#f8fafc;
}

.section-badge{
    display:inline-block;
    background:#fff2eb;
    color:#ff6b35;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
}


.about-school p{
    color:#666;
    line-height:1.9;
    text-align:justify;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 32px;
    background:linear-gradient(135deg,#ff6b35,#ff9f43);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    color:#fff;
    transform:translateY(-4px);
}

.info-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card-header-custom {
  background: linear-gradient(135deg,#bc0701,#121f3f);
  color: #fff;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.info-card table{
    margin:0;
}

.info-card th{
    width:45%;
    color:#222;
    font-weight:600;
    padding:15px 20px;
}

.info-card td{
    color:#666;
    padding:15px 20px;
}

.info-card tr:not(:last-child){
    border-bottom:1px solid #f1f1f1;
}

.info-card tr:hover{
    background:#fff8f4;
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
  font-size: 12px;
  border: 1px dashed #111c37;
}

.eventsimg {
  width: 100%;
  height: 215px;
  margin-bottom: 15px;
}


#logo{
    height:80px;
    width:auto;
    max-width:100%;
}


.carousel-indicators [data-bs-target]
{
  display: none;
}


/* Large Tablets */
@media (max-width:991.98px){
    #logo{
       height:80px;
    }
    .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
    width: 100% !important;
}
.eventsimg {
    width: 100%;
    height: 215px;
    margin-bottom: 15px;
}
    .page-title {
        font-size: 28px;
    }
    .experience-badge {
    position: absolute;
    bottom: -30rem;
    left: 11rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    min-width: 158px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.stat-box {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 10px;
    margin-left: 15px;
    width: 100%;
}
.fs-4 {
    font-size: calc(1.275rem + .3vw) !important;
    text-align: center;
}
.experience-badge1 {
    position: absolute;
    bottom: 16rem;
    left: 12rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 1px;
    border-radius: 13px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
}

/* Tablets */
@media (max-width:767.98px){
    #logo{
        height:80px;
    }
    .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
    width: 100% !important;
}
.eventsimg {
    width: 100%;
    height: 215px;
    margin-bottom: 15px;
}
    .page-title {
        font-size: 28px;
    }
    .experience-badge {
    position: absolute;
    bottom: -30rem;
    left: 11rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    min-width: 158px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.stat-box {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 10px;
    margin-left: 15px;
    width: 100%;
}
.fs-4 {
    font-size: calc(1.275rem + .3vw) !important;
    text-align: center;
}
.experience-badge1 {
    position: absolute;
    bottom: 16rem;
    left: 12rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 1px;
    border-radius: 13px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
}

/* Mobile */
@media (max-width:575.98px){
    #logo{
       height:80px;
    }
    .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
    width: 100% !important;
}
.eventsimg {
    width: 100%;
    height: 215px;
    margin-bottom: 15px;
}
    .page-title {
        font-size: 28px;
    }
    .experience-badge {
    position: absolute;
    bottom: -30rem;
    left: 11rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    min-width: 158px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.stat-box {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 10px;
    margin-left: 15px;
    width: 100%;
}
.fs-4 {
    font-size: calc(1.275rem + .3vw) !important;
    text-align: center;
}
.experience-badge1 {
    position: absolute;
    bottom: 16rem;
    left: 12rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 1px;
    border-radius: 13px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
}

/* Small Mobile */
@media (max-width:375px){
    #logo{
        height:80px;
    }
    .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
    width: 100% !important;
}
.eventsimg {
    width: 100%;
    height: 215px;
    margin-bottom: 15px;
}
    .page-title {
        font-size: 28px;
    }
    .experience-badge {
    position: absolute;
    bottom: -30rem;
    left: 11rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    min-width: 158px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
.stat-box {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 10px;
    margin-left: 15px;
    width: 100%;
}
.fs-4 {
    font-size: calc(1.275rem + .3vw) !important;
    text-align: center;
}
.experience-badge1 {
    position: absolute;
    bottom: 16rem;
    left: 12rem;
    background: linear-gradient(135deg,#091c77,#bc0701);
    color: #fff;
    padding: 1px;
    border-radius: 13px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.35);
}
}






/**/

.call-btn {
  position: fixed;
  right: -63px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 9999;
  background: linear-gradient(135deg,#281862,#9f0a13);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 15px 15px 0 0;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: .3s;
}

.call-btn:hover{
    right: -58px;
    color:#fff;
}

.call-btn i{
    font-size:18px;
}

@media (max-width:768px){

.call-btn{
    right: -58px;
    padding:10px 24px;
    font-size:14px;
}

}