/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html{
    overflow-x: hidden;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

.text-primary{
    color:#fff;
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #004d98;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #004d98 !important;
  color: #004d98;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #004d98;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #004d98;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #004d98;
}

.btn-secondary:active {
  background: #004d98;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #004d98;
  color: #004d98;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #004d98;
  color: #004d98;
}

.btn-primary-outline:active {
  background: #004d98;
  color: #fff;
}




body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
/*.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}*/

.preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
     /* background-color: #FFDC11;*/
      z-index: 999999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #004d98;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #004d98;
}

a.text-primary:hover {
  color: #004d98 !important;
}

a.text-light:hover {
  color: #004d98 !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #004d98;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #004d98 !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #004d98 !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #004d98;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, #004d98 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #004d98 30%);
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #004d98;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #ffb94b;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}


/*.navbar-brand{
    margin-left: 2rem;
    margin-right: 2rem;
}*/

/*
@media (min-width:1281px) { 
    .mehta_logo{
 height:88px;   
} 
    
}

@media (min-width:1025px) { 
    
    .mehta_logo{
 height:88px;   
} 
    
}

@media (min-width:961px)  {
    .mehta_logo{
 height:88px;   
} 
}

@media (max-width:991px) { 
.mehta_logo{
 height:68px;   
}
.navbar-brand{
 margin-left: 1rem;
}
}
*/



.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #004d98;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #004d98;
  background: transparent;
}

.hero-section {
  padding: 250px 0 290px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #004d98;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #004d98;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #004d98;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 10%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #004d98;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #004d98;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #004d98;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */





.footer {
  padding-top:100px;
    background-color: #030a16;
}

.footer .widget1 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 26px;
}

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

.footer .socialLinks ul li {
    display: inline-block;
    margin-right: 5px;
}

.footer .socialLinks ul li a i {
    width: 40px;
    height: 40px;
    background: #fafafa;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease-in-out;
    display:block;
}

.footer h5 {
    font-weight: 600;
    color: #fff;
    font-size: 21px;
    margin-bottom: 28px;
}

.footer .widget2 .media img {
    width: 100px;
}

.footer .widget3 ul, .footer .widget4 ul {
    list-style: none;
    padding: 0;
}

.footer .widget3 ul li, .footer .widget4 ul li {
    margin-bottom: 13px;
}

.footer .widget3 ul li a, .footer .widget4 ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    font-size: 16px;
}

.footer .widget3 ul li a:hover, .footer .widget4 ul li a:hover {
    color: #004d98;
}

.copyRightArea {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.copyRightArea p {
    color: rgba(255, 255, 255, 0.6);
}




/*.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #004d98 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #004d98;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 80px;
}*/

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #004d98;
}

.filter-controls li:hover {
  color: #004d98;
}



.portfolio-section.section {
  padding-bottom: 70px;
}

.portfolio-section .portfolio-btn-wrapper {
  margin-bottom: 0;
  text-align: center;
}

.portfolio-section .section-title {
  margin-bottom: 50px;
}

.portfolio-section .portfolio-btn-wrapper button {
  padding: 10px 23px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: #eff2f9;
  color: #051441;
  border-radius: 0;
  margin-right: 10px;
  margin-bottom: 50px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.portfolio-section .portfolio-btn-wrapper button.active {
  background: #3E54FF;
  color: #fff
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .portfolio-section .portfolio-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px
  }
}

@media(max-width:767px) {
  .portfolio-section .portfolio-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px
  }
}

.portfolio-section .portfolio-btn-wrapper button:last-child {
  margin-right: 0
}

.portfolio-item-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px
}

.portfolio-item-wrapper:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.portfolio-item-wrapper .portfolio-img img {
  width: 100%
}

.portfolio-item-wrapper .portfolio-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
  background: #3E54FFE8;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-transform: scale(.9);
  transform: scale(.9)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
  .portfolio-item-wrapper .portfolio-overlay {
    padding: 30px 20px
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .portfolio-item-wrapper .portfolio-overlay {
    padding: 30px 20px
  }
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 23px;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content p {
  color: #fff;
  margin-bottom: 35px
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn {
  padding: 8px 27px;
  color: #fff;
  border: 2px solid #fff
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn:hover {
  color: #3E54FF;
  background: #fff
}

.single-portfolio .single-portfolio-img {
  border-radius: 0;
  overflow: hidden
}

.single-portfolio .single-portfolio-img img {
  width: 100%
}

.project-info-box ul li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px
}

.project-info-box ul li:last-child {
  margin-bottom: 0
}

.project-info-box ul li .destination {
  width: 40%;
  color: #051441;
  text-transform: uppercase
}


/* Portfolio Single */
.portfolio.single .content p {
  margin-top: 26px;
}

.portfolio.single .project-sidebar .sb-project-detail {
  background: #fbfbfb;
  margin-top: 30px;
}

.portfolio.single .project-sidebar .sb-project-detail .title {
  padding: 14px 20px;
  background: #3E54FF;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 23px;
}

.portfolio.single .project-sidebar .sb-project-detail ul {
  padding: 25px 30px;
}

.portfolio.single .project-sidebar .sb-project-detail ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(54, 54, 54, 0.05);
}

.portfolio.single .project-sidebar .sb-project-detail ul li span {
  width: 150px;
  display: inline-block;
  color: #1c1b1b;
  font-weight: 600;
}

.portfolio.single .project-sidebar .sb-project-detail ul li:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.portfolio.single .gallery-wrap .gallery-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.portfolio.single .gallery-wrap .gallery-item a.image-popup {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 100%;
  border: 1px solid #ffffff;
  text-align: center;
  position: absolute;
  content: '';
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.portfolio.single .gallery-wrap .gallery-item a.image-popup:hover {
  background: #106eea;
  border-color: #106eea;
}

.portfolio.single .gallery-wrap .gallery-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio.single .gallery-wrap .gallery-item:hover a.image-popup {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.portfolio.single .gallery-wrap .gallery-item:hover:after {
  opacity: 1;
  visibility: visible;
}


.portfolio-item-wrapper .portfolio-overlay{
    background: #c40d21 !important;
}


.btn-primary:hover{
    background: #c40d21 !important;
}
/*# sourceMappingURL=maps/style.css.map */


/*# facility and infrastacture */


	.courses_slider_container
{
	width: 100%;
	margin-top: 45px;
}
.course_body
{
	width: 100%;
	padding-left: 34px;
	padding-right: 32px;
	padding-top: 25px;
	padding-bottom: 28px;
	background: #f2f1f8;
}
.course_tag
{
	height: 31px;
	background: #ff6600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-left: 2px;
}
.course_tag:hover
{
	background: #2c2b31;
}
.course_tag a
{
	display: block;
	padding-left: 19px;
	padding-right: 19px;
	line-height: 31px;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 400;
}
.course_price span
{
	display: inline-block;
	position: relative;
	font-size: 18px;
	color: #ff6600;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}

.course_title h3 a
{
	font-size: 22px;
	color: #2c2b31;
	font-weight: 600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.course_title h3 a:hover
{
	color: #ffb94b;
}
.course_text
{
	margin-top: 18px;
	line-height: 1.928;
}
.course_footer
{
	margin-top: 33px;
}
.course_author_image
{
	width: 37px;
	height: 37px;
	overflow: hidden;
	border-radius: 50%;
}
.course_author_image img
{
	max-width: 100%;
}
.course_author_name
{
	margin-left: 16px;
}
.course_author_name,
.course_author_name a
{
	font-size: 14px;
	color: #2c2b31;
	font-weight: 500;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.course_author_name a:hover
{
	color: #ff6600;
}
/*.courses_slider_nav
{
	position: absolute;
	top: 50%;
	width: 51px;
	height: 51px;
	background: #ff8a00;
	text-align: center;
	cursor: pointer;
}
.courses_slider_nav:hover
{
	background: #ff6600;
}
.courses_slider_nav i
{
	font-size: 18px;
	line-height: 51px;
	color: #FFFFFF;
}
.courses_slider_prev
{
	left: -161px;
}
.courses_slider_next
{
	right: -161px;
}*/


.courses_slider_next, .courses_slider_prev{
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    
}


 .courses_slider_prev:hover,
 .courses_slider_next:hover,
 .courses_slider_prev:focus,
 .courses_slider_next:focus {
    background: #000;
    color: #fff;
}

.courses_slider_next {
    position: absolute;
    left: 550px;
    top: 110%;
}

 .courses_slider_prev,
 .courses_slider_next {
    width: 65px;
    height: 50px;
    background: #ffb94b;
    opacity: 1;
    font-size: 18px;
    color: #ffffff;
}

.courses_slider_prev {
    position: absolute;
    left: 480px;
    top: 110%;
    background-color: #000;
}

.courses{
    background: #004d98;
    padding: 90px 0px 130px 0px;
}


.gallery_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #ffb94b;
    font-weight: bold;
    padding: 0px;
}

.gallery_text {
   /* width: 45%;*/
    float: left;
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
}



/*------------- Teacher Testimonial------------ */


/* General Reset */
.teacher-testimonial_section {
  display: block;
  overflow: hidden;
}
.teacher-testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}

/* Left Content Styling */
.teacher-testimonial_section .teacher-about_content {
  background-color: #020d26;
  padding: 50px 20px; /* Adjust padding for smaller screens */
  position: relative;
}
.teacher-testimonial_section .teacher-about_content h5 {
  color: #818a8f;
  font-size: 14px; /* Adjust font size for smaller screens */
}
.teacher-testimonial_section .teacher-about_content h2 {
  font-size: 32px; /* Reduced font size for better fit */
  line-height: 38px;
}
.teacher-testimonial_section .teacher-about_content p {
  font-size: 14px; /* Adjust description size */
}

/* Testimonial Box Styling */
.teacher-testimonial_section .teacher-testimonial_box {
  position: relative;
  margin-top: 20px; /* Space for smaller devices */
}
.teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container {
  background-color: #ff5e14;
  padding: 20px; /* Add padding for better spacing */
}
.teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container .teacher-testimonial_content {
  padding: 20px;
  margin-left: 0; /* Align center on smaller screens */
}
.teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container .teacher-testimonial_content h6 {
  font-size: 16px;
}
.teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container p {
  font-size: 14px;
  line-height: 22px;
}

/* Responsive Adjustments */
@media all and (max-width: 991px) {
  .teacher-testimonial_section .teacher-about_content {
    padding: 30px 15px;
  }
  .teacher-testimonial_section .teacher-about_content h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .teacher-testimonial_section .teacher-about_content p {
    font-size: 13px;
  }
  .teacher-testimonial_section .teacher-testimonial_box {
    margin-top: 20px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container {
    margin-left: 0 !important;
    background-color: #ff5e14;
  }
}

@media all and (max-width: 768px) {
  .teacher-testimonial_section .teacher-about_content h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .teacher-testimonial_section .teacher-about_content p {
    font-size: 12px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container p {
    font-size: 13px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container {
    padding: 10px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container h6 {
    font-size: 14px;
  }
}

@media all and (max-width: 576px) {
  .teacher-testimonial_section {
    padding: 15px;
  }
  .teacher-testimonial_section .teacher-about_content {
    padding: 20px 10px;
  }
  .teacher-testimonial_section .teacher-testimonial_box {
    margin-top: 15px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container {
    padding: 10px;
  }
  .teacher-testimonial_section .teacher-testimonial_box .teacher-testimonial_container .teacher-testimonial_content {
    padding: 10px;
  }
}



/*------------- Teacher Testimonial------------ */


/*------------- Group Of Schools Testimonial------------ */

#schools {
            padding: 80px 0;
        }

        .school-card {
            position: relative;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .school-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
            border-radius: 10px;
        }
        
        

        .school-card:hover img {
            transform: scale(1.1);
        }
        
        .awards img{
            height: auto;
        }

        .school-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .school-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            /*opacity: 0;
            visibility: hidden;*/
            transform: translateY(20px);
            transition: opacity 0.5s ease, visibility 0s 0.5s, transform 0.5s ease;
        }

        .school-card:hover .school-body {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .school-body h5 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 10px;
            animation: slideUp 0.5s ease-out;
            color:#fff;
        }

        .school-body p {
            font-size: 1rem;
            
            animation: fadeInText 1s ease-out 0.5s forwards;
            margin-bottom: 20px;
            color:#fff;
        }

        .school-body a {
            background-color: #c40d20;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 1rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .school-body a:hover {
            background-color: #0072ff;
        }

      
       

        @media (max-width: 768px) {
          

            .school-card {
                margin-bottom: 30px;
            }

            .school-body h5 {
                font-size: 1.4rem;
            }

            .school-body p {
                font-size: 0.9rem;
            }
        }
        

/*------------- /Group Of Schools Testimonial------------ */


/*------------- Parents Testimonial------------ */


/* Main Section Styles */
.main-section {
  padding: 30px; /* Remove padding around the whole section */
  background-color: #020d26; /* Set background color for the entire section */
}

.main-section .text-content {
  background-color: #020d26;
  padding: 60px;
  position: relative;
  color: #fff;
}

.main-section .text-content .background-overlay {
  background-color: #020d26;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.main-section .text-content .content-layer {
  position: relative;
  z-index: 9;
}

.main-section .text-content .section-header {
  margin-bottom: 30px;
}

.main-section .text-content .section-header h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.main-section .text-content .section-header h2 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: 45px;
  color: #fff;
}

.main-section .text-content .section-header h2 strong {
  font-weight: 600;
}

.main-section .text-content .section-header .header-line {
  position: relative;
  margin-top: 20px;
}

/*.main-section .text-content .section-header .header-line span {
  display: block;
  border-bottom: 3px solid #ff5e14;
  width: 60px;
  margin: 0 auto;
}*/

.main-section .text-content .section-header p {
  color: #fff;
  margin-bottom: 20px;
}

.main-section .text-content .cta-link {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.main-section .text-content .cta-link:hover {
  color: #ff5e14;
}

/* Testimonial Slider Styles */
.main-section .testimonial-slider {
  padding-top: 60px;
  padding-bottom: 60px;
}

.main-section .testimonial-slider .testimonial-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item {
  margin: 0; /* Remove margin between testimonial items */
  padding: 15px 50px;
  position: relative;
  text-align: center;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item .testimonial-content {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.13);
  transition: all 0.5s ease-in-out;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item .testimonial-author h6 {
  font-size: 19px;
  font-weight: 600;
  color: #020d26;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item p {
  font-size: 16px;
  line-height: 28px;
  color: #5d6576;
  font-style: italic;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item .author-image-box {
  position: relative;
  display: inline-block;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item .author-image-box .author-img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}

.main-section .testimonial-slider .testimonial-carousel .testimonial-item .author-image-box .author-img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}

.main-section .testimonial-slider .owl-nav .owl-prev,
.main-section .testimonial-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  background-color: #ffb94b;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  border-radius: 50%;
  text-align: center;
  z-index: 10;
  transform: translateY(-50%);
}

.main-section .testimonial-slider .owl-nav .owl-prev {
  left: 10px;
}

.main-section .testimonial-slider .owl-nav .owl-next {
  right: 10px;
}

.main-section .testimonial-slider .owl-nav .owl-prev:hover,
.main-section .testimonial-slider .owl-nav .owl-next:hover {
  background-color: #020d26;
}

/* Responsive Design */
@media all and (max-width: 991px) {
  .main-section .text-content,
  .main-section .testimonial-slider {
    padding: 20px;
  }

  .main-section .col-lg-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .main-section .text-content .section-header h2 {
    font-size: 36px;
  }

  .main-section .testimonial-slider .testimonial-carousel .testimonial-item {
    padding: 15px 30px;
  }

  .main-section .testimonial-slider .testimonial-carousel .testimonial-item .testimonial-content {
    padding: 30px;
  }

  .main-section .testimonial-slider .owl-nav .owl-prev,
  .main-section .testimonial-slider .owl-nav .owl-next {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}


/*------------- /Parents Testimonial------------ */


/*------------- enqiry form------------ */

 .register-section {
            background-color: #020d26;
            padding: 40px;
            border-radius: 8px;
        }
        
 .home_awards img {
            height: 369px;
            object-fit: cover;
        }    
        
.enquiry-field {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom:15px;
}


.enquiry-heading{
    color:#fff;
}
        
        
/*------------- /enqiry form------------ */


/*------------- For Toppers Css on other pge------------ */


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

    /* Card Styles */
    .topper-card {
        perspective: 1000px;
        margin: 0 auto;
        max-width: 100%;
    }

    .topper-inner {
        position: relative;
        width: 100%;
        height: 300px;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .topper-card:hover .topper-inner {
        transform: rotateY(180deg);
    }

    .topper-front, .topper-back {
        backface-visibility: hidden;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        overflow: hidden; /* Prevent content from overflowing */
    }

    .topper-front {
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .topper-back {
        background-color: #f8f9fa;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    .topper-front img {
        border-radius: 50%;
        margin-bottom: 15px;
        width: 120px !important;
        height: 120px !important;
        object-fit: cover;
    }

    .topper-front h5,
    .topper-front h6 {
        margin: 5px 0;
    }

    .topper-back p {
        margin: 10px 0;
    }

   
    @media (max-width: 576px) {
       

        .topper-inner {
            height: 250px;
        }

        .topper-front img {
            width: 80px !important;
            height: 80px !important;
        }
    }

   


/*------------- /For Toppers Css on other page------------ */


/*------------- School Gallery------------ */


 .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            padding: 2rem;
        }

        .sclgallery {
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sclgallery:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .sclgallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .sclgallery a {
            display: block;
        }

        @media (max-width: 600px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        
        
/*------------- /School Gallery------------ */


/*------------- About Our School ------------ */


.section_all {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
}
.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}
.text_custom {
    color: #004d98;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #00bd2a;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}





/* General styles for headings */
.feature-heading, .feature-heading h1, .feature-heading h2, .feature-heading h3, .feature-heading h4, .feature-heading h5, .feature-heading h6 {
  /* Add any specific styles for these headings here */
}

/* Anchor tags and hover/focus styles */
.feature-link, .feature-link:hover, .feature-link:focus, .feature-link:active {
    text-decoration: none;
    outline: none;
}

.feature-link, .feature-link:active, .feature-link:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
}

/* Style for unordered lists */
.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Image styling */
.feature-image {
    max-width: 100%;
    height: auto;
}

/* Span and anchor styling */
.feature-inline {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

/* Section heading styling */
.feature-section-head {
    margin-bottom: 60px;
}

.feature-section-head .feature-section-head-title {
    position: relative;
    padding: 0;
    color: #f91942;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

/*.feature-section-head .feature-section-head-title:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
*/
.feature-section-head .feature-section-head-title span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f;
}

/* Service Text */
.feature-service-text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.feature-section-head p, .feature-awesome-line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

/* Extra Text Styling */
.feature-extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.feature-extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.feature-extra-text span {
    font-weight: 700;
    color: #f91942;
}

/* Item box/card styling */
.feature-item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition: all .5s ease 0s;
}

.feature-item:hover {
    background: #004d98;
    box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
}

.feature-item:hover > p {
    color: #fff;
}



.feature-item:hover > h6{
    	color: #fff;
}

.feature-item:hover .feature-item, .feature-item:hover .feature-icon {
    background: #fff;
    border-radius: 10px;
}

.feature-item:hover .feature-item h6, .feature-item:hover .feature-item p {
    color: #fff;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #004d98;
    width: 90px;
  /*  height: 90px;*/
    line-height: 96px;
    border-radius: 50px;
}

.feature-feature-box-col-one {
    background: rgba(247, 198, 5, 0.20);
    color: #f91942;
}

.feature-feature-box-col-two {
    background: rgba(255, 77, 28, 0.15);
    color: #f91942;
}

.feature-feature-box-col-three {
    background: rgba(0, 147, 38, 0.15);
    color: #f91942;
}

.feature-feature-box-col-four {
    background: rgba(0, 108, 255, 0.15);
    color: #f91942;
}

.feature-feature-box-col-five {
    background: rgba(146, 39, 255, 0.15);
    color: #f91942;
}

.feature-feature-box-col-six {
    background: rgba(23, 39, 246, 0.15);
    color: #f91942;
}

.feature-item p {
    font-size: 15px;
    line-height: 26px;
}



.feature-item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
}

/* Mission Section Styles */
.feature-mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.feature-mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.feature-mission .feature-small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

/* Skills Section */
.feature-skills {
    padding-top: 0px;
}

.feature-skills .feature-prog-item {
    margin-bottom: 25px;
}

.feature-skills .feature-prog-item:last-child {
    margin-bottom: 0;
}

.feature-skills .feature-prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.feature-skills .feature-prog-item .feature-skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}

.feature-skills .feature-prog-item .feature-skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    transition: all 1s;
}

.feature-skills .feature-prog-item .feature-skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

/*------------- /About Our School------------ */


/*------------- Facility and Infta------------ */




/* Custom styles for our blog section */
.infra-facility{
    background-color: #f8f9fa;
    padding: 100px 0;
}

/* Text and card styling */
.infra-facility-body h5 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.infra-facility-body .infra-title a {
    color: #222;
    font-size: 1.25rem;
}

.infra-facility-body .card-text {
    color: #6c757d;
}

.infra-facility-body .date-author span {
    color: #e74c3c;
}

/* Card hover effect */
.card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* For mobile and tablet responsiveness */
@media (max-width: 768px) {
    .infra-facility h2 {
        font-size: 1.4rem;
    }
    .infra-facility p {
        font-size: 0.9rem;
    }
}


.mentor-title, .mentor-title p{
    color:#fff;
}


/*------------- /facility and infra------------ */


/*------------- mission and vision------------ */


        /* Cards */
        .card-custom {
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s forwards;
        }

        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        .card-custom img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid #007bff;
        }

        .card-custom i {
            font-size: 4rem;
            margin-top: 20px;
            color: #007bff;
        }

        .mv-body{
            padding: 0px 30px 30px 30px;
            background: #c40d20;
            border-radius: 15px;
        }

        .mv-body p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #fff;
        }

        /* Mission Section Background */
        .mission-section {
            background-color: #d9edf7;
        }

        /* Vision Section Background */
        .vision-section {
            background-color: #f8d7da;
        }
        
        .card-custom i {
            color: #ffba4c;
        }

 

/*------------- / mission and vision------------ */



  
 

