body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  padding: 0;
  margin: 0;
  color: #1F1F1F;
  position: relative;
  font-weight: 600;
}

p {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

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

a:focus {
  outline: none;
}

input:focus {
  border: 0 none;
  outline: none;
}

textarea:focus {
  border: 0 none;
  outline: none;
}

input[type="button"] {
  outline: none;
}

input[type="button"]::-moz-focus-inner {
  border: 0;
}

input {
  outline: none;
  box-shadow: none;
}

textarea {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  outline: var(--bs-border-width) solid var(--bs-border-color);
  box-shadow: none;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
}

img {
  max-width: 100%;
}

.clearfix {
  clear: both;
}

/***********scroll-Top*******/
.scrollTop {
  position: fixed;
  right: 1%;
  bottom: 10px;
  opacity: 0.6;
  transition: all 0.4s ease-in-out 0s;
  z-index: 999;
  cursor: pointer;
  border-radius: 50%;
  background: #d91f16;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.scrollTop a i.fa {
  font-size: 16px;
  color: #fff;
  width: auto;
  height: auto;
  margin: 0;
}

/*---------------------custom-css-end---------------*/
.section-title h3,
.section-title h2 {
  font-size: 42px;
  line-height: 49px;
  padding-bottom: 15px;
  font-weight: 600;
  color: #02042d;
}

.section-title p {
  font-size: 16px;
  font-weight: normal;
  color: #1d1d1d;
  line-height: 27px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-padding {
  padding: 70px 0;
}

/*-----------------------------------home-page-start---------------------------------- */
/* --------top-section ---------*/
.top-section {
  padding: 3px 0;
  overflow: hidden;
  background: linear-gradient(90deg, #0073ff 0%, #00baff 100%);
}

.top-left p {
  color: #fff;
  line-height: 30px;
  font-size: 15px;
  display: inline-block;
}

.header-btn-group ul {
  display: flex;
  justify-content: end;
  align-items: center;
  color: #fff;
}

.header-btn-group ul li {
  margin-right: 10px;
}

.header-btn-group ul li:last-child {
  margin-right: 0;
}

.header-btn-group ul li a {
  color: #fff;
  padding: 0 3px;
  line-height: 30px;
  font-size: 15px;
  display: inline-block;
}



.phone-email {
  color: #fff;
  float: left;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.phone-email span {
  padding: 0 15px;
}

.phone-email a {
  color: #fff;
  font-size: 16px;
  margin-right:15px;
}

.phone-email a:hover {
  text-decoration: underline;
}
.contact-item{
    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:.2s;
}

.contact-item:hover{
    opacity:1;
    text-decoration:underline;
}
.header-btn-group ul {
  display: flex;
  /* justify-content: center; */
}
.header-btn-group ul li {
  margin-right: 10px;
}
.header-btn-group ul li:last-child {
  margin-right: 0;
}
.header-btn-group ul li a {
  padding: 0 17px;
  line-height: 27px;
  font-size: 15px;
  display: inline-block;
  border-radius: 5px;
}
.center-login-btn{
    position:relative;
    background:#d91f16;
    color:#fff !important;
    align-items:center;
    gap:8px;
    overflow:visible;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
}
.center-login-btn::after{
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:100%;
    height:100%;
    border-radius:30px;
    border:2px solid rgba(255,255,255,.9);
    animation:loginBlink 1.2s infinite;
}

@keyframes loginBlink{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.9;
    }
    70%{
        transform:translate(-50%,-50%) scale(1.4);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

.center-login-btn:hover::after{
    animation:none;
}

.franchise-btn{
    background:linear-gradient(135deg,#1e4fa3,#0b3d91);
    color:#fff !important;
    align-items:center;
    gap:8px;
    box-shadow:0 4px 10px rgba(0,0,0,.25); 
    transition:all .25s ease;
}

.franchise-btn:hover{
    background:linear-gradient(135deg,#0b3d91,#062a66);
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.35);
}
.shine {
  position: relative;
  overflow: hidden;
  width: 125px;
  height: 30px;
  animation: shine 1s ease-in-out infinite;
  object-fit: contain;
}
@keyframes shine {
  10% {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
  }

  100% {
    opacity: 0.3;
    transition-property: opacity;
  }
}
/* --------top-section ---------*/
.middle-section {
  width: 100%;
  padding: 15px 0;
  background: #1a86c6;
}

.alertbox_content p {
  display: inline-block;
  padding: 0 0px;
  line-height: 29px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  color: #faef17;
}

.alertbox_content h4 {
  display: block;
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  padding-top: 0px;
  padding-bottom: 7px;
  line-height: 56px;
  font-family: "Old English Text MT";
}
.header-logo-right img {
  -webkit-filter: grayscale(100%);
  filter: brightness(0%);
}
.header-logo img {
  width: 55%;
}
/*---------- navigation-section --------------------- */
.navigation-section {
  position: relative;
  z-index: 999;
  padding: 0px 0;
  background: #06065e;
}

.navigation-section.f-nav:after {
  display: none;
}

.f-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #051894;
  transition: background-color 0.5s linear;
  box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}



.f-nav .logo img {
  width: 166px;
}

.navigation-section .stellarnav li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 15px 17px;
  text-transform: uppercase;
}
a.highlight1{
  position: relative;
}

a.highlight1::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -3px;
  width: 45px;
  background-image: url("../images/new_y.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  height: 45px;
  background-size: contain;
}

@keyframes light {

  0%,
  100% {
    width: 0%;
  }

  50%,
  51% {
    width: 100%;
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  position: relative;
}

.logo-part img {
  width: 80px;
}

.f-nav .logo-part img {
  width: 60px;
}

.nav-icon-item {
  background: #eae9e9;
  padding: 7px;
  border-radius: 30px;
  line-height: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #b4b4c680;
}

.navigation-section .stellarnav li a:hover {
  color: #fff;
  background: #0050ff;
}

.navigation-section .stellarnav ul ul {
  background-color: #fff;
  text-align: left;
  -webkit-box-shadow: 0 -5px 25px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 -5px 25px 0 rgb(0 0 0 / 20%);
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 0.3s ease-in-out;
}

.stellarnav li li {
  border-bottom: 1px solid #eaeaea;
}

.navigation-section .stellarnav ul ul li a:hover {
  color: #fff;
  background: #060650;
}

.navigation-section .stellarnav ul ul li a {
  color: #1c1c1e;
  padding: 15px;
  font-size: 15px;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}

.navigation-section .stellarnav.mobile ul ul li a {
  color: #fff;
}

.navigation-section .stellarnav.mobile li li {
  border-bottom: none;
}

.stellarnav ul ul {
  margin-top: 0px;
}

.navigation-section .stellarnav li a.active {
  color: #fff;
  background: #0050ff;
}

/*------------------marquee-css------------- */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #F8F72C;
  position: relative;
}
.marquee-title {
	position: absolute;
	background: #01011d;
	left: 0;
	width: 160px;
	color: #fff;
	z-index: 1;
	text-align: center;
	padding: 4px 0;
	font-weight: 600;
}
.marquee-wrap .marquee {
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

.marquee-new-track {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 55s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-70%);
  }
}
.marquee-new-content {
	padding: 4px 0;
	padding-left: 20px;
}
.marquee-new-track:hover {
  animation-play-state: paused;
}


/*---- middle-section----- */
.middle-section {
	background: #fff;
}

.middle-section h3 {
	font-family: 'Inter', sans-serif;
	font-size: 36px;
	text-align: center;
	color: #06065e;
	line-height: 44px;
	/* text-shadow: 1px 1px 3px rgba(6, 6, 6, 0.47); */
	padding: 27px 0;
}

.head-logo {
  width: 80px;
}

.rajiv-gandhi-img {
  position: relative;
  bottom: -10px;
}

/*---------- banner-section --------------------- */
.banner-section {
  position: relative;
}

.banner-section .search-room-inner {
  position: absolute;
  left: 0px;
  bottom: -24px;
  width: 100%;
  z-index: 2;
}

.home_hero_section {
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  min-height: 600px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-section .owl-carousel .owl-nav button.owl-next,
.banner-section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 100px;
  font-size: 30px;
  line-height: 100px;
  transition: ease-in-out0.2s;
  padding: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  border-radius: 8px;
  margin: 0;
  background: rgba(255, 255, 255, 0.3)
}

.banner-section .owl-carousel .owl-nav button.owl-next:hover,
.banner-section .owl-carousel .owl-nav button.owl-prev:hover {
  color: rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 0.7)
}

.owl_testimonial.owl-carousel .owl-nav button.owl-next,
.owl_testimonial.owl-carousel .owl-nav button.owl-prev {
  color: rgba(255, 255, 255, 0.5);
}

.owl_testimonial.owl-carousel .owl-nav button.owl-next:hover,
.owl_testimonial.owl-carousel .owl-nav button.owl-prev:hover {
  color: rgba(255, 255, 0, 1);
}

.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: -22px;
  right: -22px;
  transform: translateY(-50%);
  z-index: 5;
  margin: 0
}

.owl-prev {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%)
}

.owl-next {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%)
}

.owl_home_main .owl-nav {
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  z-index: 5;
}

/*---------- about-section--------------------- */
.holder {
  background-color: #171f32;
  overflow: hidden;
  border-radius: 8px;
}

.holder h4 {
  color: #fff;
  background-color: #0050ff;
  border-color: #0050ff;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
}

.newstape {
  color: #fff;
  overflow: hidden;
}

.newstape-content {
  position: relative;
  height: 282px;
}

.newstape-drag {
  cursor: ns-resize;
}

.holder {
  background-color: #fbfbfb;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  position: relative;
  width: 63%;
  margin-left: 132px;
}

.news-block span {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 30px;
  margin: 0 auto;
  font-weight: 500;
  padding-bottom: 10px;
}

.news-block h5 {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 30px;
  margin: 0 auto;
  font-weight: 500;
  padding-bottom: 10px;
}

.news-block p {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 30px;
  margin: 0 auto;
  font-weight: 500;
  padding-bottom: 7px;
}

.enquery-form .form-control {
  outline: 0;
  font-size: 15px;
  line-height: 23px;
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  background: #fbfbfb;
  color: #181818;
  font-weight: 400;
  border: 1px solid #0000001f;
}

.service-block {
  border-radius: 5px;
  background: #171f32;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  height: 180px;
  flex-wrap: wrap;
}

.service-block p {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  padding-top: 8px;
}

.service-group-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquery-form form {
  padding: 40px 30px;
}

.enquery-form.holder h4 {
  background-color: #06065e;
  border-color: #06065e;
}

.enquery-form .form-field {
  padding-bottom: 12px;
}

.btn-send {
  background-color: #051894;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  line-height: 53px;
  border-radius: 30px;
  padding: 0px 36px;
  display: block;
  color: #fff;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  border: none;
  width: 100%;
  margin-top: 9px;
  background: linear-gradient(90deg, #0073ff 0%, #00baff 100%);
}

.btn-send:hover {
  background: linear-gradient(90deg, #022f65 0%, #0745d7 100%);
}

.service-icon img {
  width: 90px;
  height: 90px;
}

.about-right {
  border-radius: 15px;
  overflow: hidden;
}

.welcome {
  background: #0050ff14;
  position: relative;
  z-index: 1;
}

.welcome::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-image: url("../images/about-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  background-size: cover;
  border-radius: 500px 0 0px 500px;
}

.about-us-section .holder {
  background-color: #051894;
  width: 97%;
  margin-left: 0px;
}

/*---------- popular-courses-section --------------------- */
.popular-courses-section {
  background: #0050ff14;
}

.popular-courses-section .owl-theme .owl-nav {
  left: -30px;
  right: -30px;
}

.popular-courses-section .owl-nav {
  display: none;
}

.popular-courses-section .owl-carousel:hover .owl-nav {
  display: block;
}

.popular-courses-section .owl-carousel .owl-nav button.owl-next,
.popular-courses-section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  font-size: 25px;
  line-height: 52px;
  border-radius: 50%;
  background: #d91f16A8;
  color: #fff;
}

.course-list-group {
  border-radius: 10px;
  overflow: hidden;
}

.short_des {
  margin-bottom: 15px;
}

.detail a.cmmon-btn {
  background-color: #07294D;
  font-size: 16px;
  line-height: 49px;
  padding: 0px 25px 0px 25px;
  margin-top: 21px;
}

.s-single-services {
  transition: .3s;
  background: #fff;
  box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, .1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.s-single-services::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  position: absolute;
  z-index: 11;
  left: 30px;
  top: 30px;
  border-right: 0;
  border-bottom: 0;
}

.s-single-services:hover {
  background: #fff;
}

.s-single-services img {
  height: auto;
  max-width: 100%;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 370px;
  object-fit: cover;
}

.services-hover {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  background: #10101196;
  height: 100%;
  width: 100%;
}

.s-single-services .services-icon {
  margin-bottom: 15px;
  margin-top: 40px;
  transition: all .3s ease 0s;
}

.s-single-services .services-icon img {
  height: 60px;
  width: auto;
  margin: 0 auto;
}

.second-services-content h5 {
  transition: .3s;
  letter-spacing: 0;
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

.second-services-content p {
  height: 50px;
  color: #fff;
  overflow: hidden;
  width: 80%;
  margin: auto;
  transition: all .3s ease 0s;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}

.second-services-content .duration {
  color: #fff;
  overflow: hidden;
  width: 50%;
  margin: auto;
  transition: all .3s ease 0s;
  margin-bottom: 15px;
}

.second-services-content a {
  color: #f98c3d;
  text-transform: uppercase;
  transition: all .3s ease 0s;
  margin-top: 0px;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
}

.s-single-services::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  position: absolute;
  z-index: 11;
  right: 30px;
  bottom: 30px;
  border-left: 0;
  border-top: 0;
}

.duration h2 {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

.duration h2 span {
  font-size: 18px;
}

/* ----------service-section ---------------*/
.service-section {
  background: radial-gradient(53.8% 74.52% at 69.44% 0%, rgb(200, 233, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.service-list {
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: flex-start;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
  padding: 20px;
  background: #000247;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 8px;
  margin-bottom: 25px;
  transition: .3s linear;
  position: relative;
  overflow: hidden;
}

.service-list:hover .shape {
  right: -20%;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-list .shape {
  position: absolute;
  top: -29%;
  right: -40%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.05);
  transition: 1s;
  opacity: 0;
  transform: translateX(100px) scale(0.7);
}

.service-list:hover {
  transform: translateY(-4px);
}

.icon-image {
  margin-right: 14px;
  display: inline-block;
}

.description h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 1.5em 0 .5em;
  margin-top: 0;
}

.description p {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
}

.description a {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-transform: none;
  font-weight: 400;
  background: #d91f16;
  padding: 0 20px;
  line-height: 37px;
  display: inline-block;
  margin-top: 17px;
  border-radius: 4px;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.description a::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #02CAFD;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.description a i {
  margin-left: 5px;
}

.description a:hover::before {
  top: -40%;
}

/* ----------story-section ---------------*/
.story-section {
  background-image: url(../images/landing-banner-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.box-white {
  padding: 50px 60px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
  transition: .3s linear;
}

.box-white:hover {
  box-shadow: 0 4px 10px #ede9fe;
  transform: translateY(-4px);
}

.box-white .title {
	font-size: 55px;
	font-weight: 700;
	line-height: 65px;
	color: #07294d;
}

.des {
  font-weight: 400;
  line-height: 24px;
  font-size: 15px;
  color: #373636;
}

/* ----------gallery-section ---------------*/
.gallery .gallery-item {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  height: 317px;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-one__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.gallery-one__content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background: #1c231f;
  opacity: 0.68;
}

.gallery .gallery-item:hover .gallery-one__content {
  opacity: 1;
}

.gallery-one__content-inner {
  position: relative;
  z-index: 99;
  text-align: center;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 15px;
  margin-top: 5px;
}

.gallery-one__icon {
  width: 46px;
  height: 46px;
  display: flex;
  background: rgb(227, 56, 10);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.gallery-one__title {
  margin: 0 0 2px;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.gallery-one__sub-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 36px;
}

/* ----------testimonial-section ---------------*/
.testimonial-section {
  background: #ebf1ff;
}

.testimonials-item {
  position: relative;
  padding: 0.9375rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 1.875rem 1.875rem 20px;
}

.testimonials-item::before {
  position: absolute;
  z-index: 1;
  color: #5358B26E;
  line-height: 1;
  font-size: 125px;
  content: "“";
  top: 9px;
  right: 25px;
}

.testimonials-item .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #0b0b35;
}

.testimonials-item .description {
  margin-top: 0.9375rem;
  font-size: 15px;
  font-weight: 400;
  color: #6c6c6c;
  line-height: 25px;
}

.testimonials-item .inner-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #EDEDED;
}

.testimonials-item .avarta {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: #fff;
  position: relative;
}

.testimonials-item .avarta .image-wrapper img {
  width: 60px;
  height: 60px;
}

.testimonials-item .info-testimonials {
  flex-grow: 1;
  padding-left: 20px;
}

.testimonials-item .name-client {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #000;
  line-height: 27px;
}

.testimonials-item .job {
  color: #4E5379;
  font-size: 13px;
}

.testimonial-section .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px
}

.testimonial-section .owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  border-radius: 50px;
  margin: 5px;
  background: #211e1ec2;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span {
  background: #d91f16;
}

/* ----------team-section ---------------*/
.edu-team-grid .thumbnail-wrap {
  position: relative;
}

.edu-team-grid .thumbnail {
  margin-bottom: 25px;
  border-radius: 10px;
  position: relative;
  display: block;
}

.edu-team-grid .thumbnail img {
  border-radius: 10px;
  width: 100%;
}

.edu-team-grid .content {
  text-align: center;
  color: #7b7a7a;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  padding: 0;
}

.edu-team-grid .content .title {
  margin-bottom: 4px;
  font-weight: 600;
  color: #171717;
}

/* ----------cta-section ---------------*/
.edu-cta-section {
  background-image: url(../images/landing-banner-bg.png);
  background-position: center center;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-top: 1px solid #e2e8e7;
  border-bottom: 1px solid #e2e8e7;
}

.edu-cta-banner {
  position: relative;
  z-index: 1;
}

.edu-cta-banner .shape-group li {
  position: absolute;
  z-index: -1;
  margin: 0;
}

.edu-cta-banner .shape-group li.shape-01,
.edu-cta-banner .shape-group li.shape-01,
.edu-cta-banner .shape-group li.shape-01 {
  top: 109px;
  left: -68px;
}

.edu-cta-banner .shape-group li.shape-02,
.edu-cta-banner .shape-group li.shape-02,
.edu-cta-banner .shape-group li.shape-02 {
  bottom: 29px;
  left: 11px;
}

.edu-cta-banner .shape-group li.shape-03,
.edu-cta-banner .shape-group li.shape-03,
.edu-cta-banner .shape-group li.shape-03 {
  top: -61px;
  right: -168px;
  z-index: 0;
}

.edu-cta-banner .shape-group li.shape-04,
.edu-cta-banner .shape-group li.shape-04,
.edu-cta-banner .shape-group li.shape-04 {
  top: -102px;
  right: -118px;
}

a.edu-btn {
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  line-height: 59px;
  color: #fff;
  background: #d91f16;
  padding: 0 33px;
  font-size: 18px;
  font-weight: 500;
  transition: .4s;
  border: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 30px;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
}

a.edu-btn i {
  margin-left: 3px;
}

a.edu-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #02CAFD;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

a.edu-btn:hover::before {
  top: -40%;
}

.edu-cta-banner span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding-top: 9px;
  color: #fff;
}

/* ----------brand-section ---------------*/
/* .certificates_size {
  width: 200px;
  background: url(../images/frame.jpeg);
  background-size: cover;
  padding: 18px;
  text-align: center;
} */
.certificates_size {
  width: 200px;                 /* frame width */
  height: 250px;                /* frame height */
  background: url('../images/frame.jpeg') no-repeat center center;
  background-size: 100% 100%;   /* stretch full frame */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;                /* space inside frame */
  box-sizing: border-box;
}

.affiliation-section{
  overflow: hidden;
}
.associated_size{
  width: 150px;
  height: 120px;     
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.associated_size img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cmmon-btn {
  background-color: #d91f16;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  line-height: 57px;
  border-radius: 30px;
  padding: 0px 36px 0px 36px;
  display: inline-block;
  color: #fff;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  border: none;
  margin-top: 30px;
}

.cmmon-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #051894;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.cmmon-btn i {
  margin-left: 5px;
}

.cmmon-btn:hover::before {
  top: -40%;
}

.cmmon-btn:hover {
  color: #fff;
  background: #084cf7;
}

/* ----------footer-section ---------------*/
footer {
	background-color: #000247;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

footer::before {
  background: url(../images/footer-tech-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 512px;
  left: 0;
  position: absolute;
  width: 763px;
  	z-index: -1;
}

.footer-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 0px;
  color: #fff;
}

footer .footer-link ul li a {
  display: block;
  margin-bottom: 15px;
  transition: all .4s;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  color: #fff;
  transition: all 0.6s ease;
}

footer .footer-link ul li a:hover {
  color: #d91f16;
  padding-left: 8px;
}

.footer-contact-info {
  margin-bottom: 10px;
  padding-left: 25px;
  clear: both;
  width: 100%;
  line-height: 30px;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.footer-contact-info span {
  font-size: 16px;
  margin: 5px 0 0 0;
  text-align: left;
  width: auto;
  color: rgb(224, 53, 8);
  position: absolute;
  left: 0;
  top: 0;
}

.footer-contact-info a {
  color: #fff;
}

.footer-link p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

a.read-more {
  color: #e03508;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  display: inline-block;
  padding-top: 10px;
}

.footer-link a i {
  margin-left: 5px;
}

.explore-widget {
  margin-left: 65px;
}

.footer-contact-info h6 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px 10px 0;
  position: relative;
  color: #fff;
}

.footer-contact-info h6::after {
  content: ':';
  margin: 0 0 0 1px;
}

.footer-link {
  position: relative;
  z-index: 9;
}

.social-style-one {
  display: flex;
}

.social-style-one a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin: 0 10px 5px 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0;
}

.social-style-one a:hover {
  background: rgb(195, 28, 26);
}

.social-style-one a i {
  margin: 0;
}

.mt-25 {
  margin-top: 25px;
}

.footer-newsletter {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 40px 20px 40px;
  box-shadow: 0 2px 5px #beb0fb2e;
}

.footer-newsletter .title {
  margin-bottom: 11px;
  font-size: 20px;
  text-transform: capitalize;
  line-height: 27px;
  font-weight: 700;
}

.footer-newsletter p {
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
}

.footer-newsletter a.cmmon-btn {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  padding: 0px 35px 0px 35px;
  background: #000247;
  color: #fff;
  line-height: 50px;
}

footer .bottom_footer {
  background: #04086f;
  position: relative;
  padding: 15px 0;
}

footer .bottom_footer p {
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
}

.footer-height {
  padding: 25px;
}

.footer-bottom-link {
  display: flex;
  color: #fff;
  justify-content: end;
}

.footer-bottom-link a {
  padding: 4px 8px;
  color: #fff;
  font-size: 15px;
}

.footer-bottom-link a:hover {
  color: #d91f16;
}

/* ----------about-us-page ---------------*/
.single-page-banner-section {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}

.single-page-banner-description h1 {
  z-index: 9;
  color: rgb(255, 255, 255);
  font-size: 60px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 600;
  position: relative;
}

.custom-breadcrumb .breadcrumb {
  margin-bottom: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #e5e5e5;
}

.custom-breadcrumb .breadcrumb li {
  float: left;
  position: relative;
  z-index: 11;
  line-height: 1;
  font-weight: 500;
  padding: 0 12px;
  padding-left: 12px;
}

.custom-breadcrumb .breadcrumb li:first-child {
  padding-left: 0;
}

.custom-breadcrumb .breadcrumb li:last-child {
  padding-right: 0;
}

.custom-breadcrumb .breadcrumb li.active::after {
  content: "/";
  position: absolute;
  bottom: 0;
  left: -3px;
  z-index: 1;
  color: #e5e5e5;
}

.custom-breadcrumb .breadcrumb li a {
  color: #ffffffd6;
}

.custom-breadcrumb .breadcrumb li.active {
  color: #f47048;
  font-weight: 600;
}

.pagination {
  display: flex;
  list-style: none;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 20px 0;
}

.page-item a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.page-item a:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.page-item.active a {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  pointer-events: none;
}

.page-item.disabled a {
  color: #aaa;
  pointer-events: none;
}

.mission-vision-section {
  background: radial-gradient(53.8% 74.52% at 69.44% 0%, rgb(200, 233, 255) 0%, rgba(228, 244, 255, 0.56) 100%);
}

.coursebox {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0px 0px;
  min-height: 140px;
  margin-bottom: 30px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.coursebox img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  height: 285px;
  object-fit: cover;
}

.coursebox h4 {
  color: #202b5d;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  padding-top: 30px;
}

.coursebox p {
  font-size: 16px;
  font-weight: normal;
  color: #2d2e2e;
  line-height: 30px;
  margin: 0 auto;
  padding: 15px;
  padding-top: 0;
}

.image-column {
  position: relative;
  overflow: hidden;
}

.image-column .bg {
  position: absolute;
  top: 0;
  right: 0px;
  left: 0px;
  bottom: 0;
  background-size: cover;
  width: 100%;
  transition: all 0.5s ease;
  background-position: bottom center;
}

.image-column .image {
  display: none;
}

.image-column .image img {
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100%;
}

.image-column:hover .bg {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.mission-vision-section .content {
  width: 100%;
  padding: 50px;
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.mission-vision-section .content .cont {
  display: table-cell;
  vertical-align: middle;
}

.mission-vision-section .content .cont h4 {
  margin: 0 0 5px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
  color: #202b5d;
  text-transform: uppercase;
}

.mission-vision-section .content .cont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #666;
  margin-bottom: 20px;
}

/*---------------------contact-page-start --------------------- */
.contact-form-box-block {
  padding: 50px 25px 50px 25px;
  background-color: #fff;
  border-radius: 10px 10px 10px 10px;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 32px 0 rgba(80, 80, 80, .1);
}

.contact-form-box-icon-box {
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}

.contact-form-box-icon {
  display: inline-block;
  line-height: 1;
  transition: all 0.3s;
  text-align: center;
  color: #579c3a;
  fill: #477733;
  font-size: 80px;
}

.contact-form-box-content {
  text-align: center;
}

.contact-form-box-title span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
  color: #1c231f;
  margin-bottom: 15px;
  display: block;
}

.contact-form-box-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.contact-form-box-description a {
  color: #7c7c84;
}

.contact-us-section .contact-form-block .section-title {
  width: 100%;
  text-align: left;
  max-width: 100%;
  margin: unset;
}

.contact-us-section .contact-form-block .section-title p {
  width: 100%;
}

.contact-us-section .contact-form-block .social-links {
  text-align: left;
  margin-top: 30px;
}

.contact-us-section .contact-form-block .social-links a i {
  margin-left: 0px;
  margin-right: 13px;
  background-color: #ededed;
}

.contact-us-section .contact-form-block .social-links a i:hover {
  background: #067b2f;
  color: #fff;
}

.contact-us-section .contact-form-block {
  padding: 45px 0px 0px 0px;
}

.contact-us-section .contact-form-block input[type*="email"],
.contact-us-section .contact-form-block [type*="text"],
.contact-us-section .contact-form-block input[type*="tel"] {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  background: #fff;
  box-shadow: none;
  outline: none;
  max-width: 100%;
  line-height: 40px;
  color: #040404;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #00000017;
}

.form-control-wrap {
  margin-bottom: 15px;
  display: block;
}

.contact-us-section .contact-form-block textarea {
  width: 100%;
  padding: 10px 20px;
  max-height: 180px;
  border: none;
  background: #fff;
  color: #555;
  border: 1px solid #00000017;
}

.contact-us-section .contact-form-block .form-action {
  text-align: center;
  padding: 0;
  position: relative;
}

.form-list .cmmon-btn {
  margin-top: 0px;
}

.contact-us-section {
  background: radial-gradient(53.8% 74.52% at 69.44% 0%, rgb(200, 233, 255) 0%, rgba(228, 244, 255, 0.56) 100%);
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #3c3b3b;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #3c3b3b;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #3c3b3b;
}

/*---------------------study-centre-page-start --------------------- */
.study-centre-section {
  background: radial-gradient(53.8% 74.52% at 69.44% 0%, rgb(200, 233, 255) 0%, rgba(228, 244, 255, 0.56) 100%);
}

.study-centre-section .study_field-list select.form-select,
.study-centre-section .study_field-list input.form-control,
.study-centre-section .study_field-list textarea.form-control {
  width: 100%;
  height: auto;
  padding: 0 20px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  box-shadow: none;
  outline: none;
  max-width: 100%;
  line-height: 55px;
  color: #040404;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #00000017;
}

.study-centre-section .study_field-list input.form-control[type="file"] {
  padding: 0 10px;
}

.study-centre-section .study_field-list .form-field {
  margin-bottom: 20px;
}

.study-centre-section .cmmon-btn {
  display: inline-block;
  margin-top: 0px;
  width: 100%;
  text-transform: uppercase;
}

/*---------------------new-course-page-start --------------------- */
.new-course-list.popular-courses-section {
  background: radial-gradient(53.8% 74.52% at 69.44% 0%, rgb(200, 233, 255) 0%, rgba(228, 244, 255, 0.56) 100%);
}

.new-course-list .course-list-group {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 32px;
  border-radius: 0;
  border-left: 6px solid #0b51a1;
}

.detail h3 {
  color: #202b5d;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
}

.short_des {
  margin-bottom: 15px;
}

.detail p {
  font-size: 16px;
  line-height: 27px;
  color: #2d2e2e;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Our Linkages */
.student-sec {
  /* background: url(../images/counters-bg.jpg) no-repeat; */
  /* background-attachment: scroll; */
  /* background-size: auto; */
  /* background-attachment: fixed; */
  /* background-size: 100%; */
  position: relative;
  z-index: 1;
  background: #cacbfa38;
}

/* .student-sec::before {
background: #020436;
bottom: 0;
content: "";
left: 0;
opacity: 0.85;
position: absolute;
right: 0;
top: 0;
z-index: -1;
} */
.ch-item {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ch-thumb {
	width: 100%;
	height: 100%;
	background-size: cover;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	box-shadow: inset 0 0 0 12px rgba(146, 201, 250, 0.36);
	transform-origin: 100% 40%;
	transition: all 0.3s ease-in-out;
	background-repeat: no-repeat;
	background-position: center top;
}

.ch-thumb::after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  top: 40%;
  left: 95%;
  margin: -4px 0 0 -4px;
  background: radial-gradient(ellipse at center, rgba(14, 14, 14, 1) 0%, rgba(125, 126, 125, 1) 100%);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.9);
}

.ch-img-1 {
  background-image: url(../images/11.jpg);
}

.ch-img-2 {
  background-image: url(../images/Student-Registration.png);
}

.ch-img-3 {
  background-image: url(../images/verification.jpg);
}

.ch-img-4 {
  background-image: url(../images/13.webp);
}

.ch-img-5 {
  background-image: url(../images/FINAL-RESULT.webp);
}

.ch-img-6 {
  background-image: url(../images/3.webp);
}

.ch-img-7 {
  background-image: url(../images/certificate.png);
}

.ch-img-8 {
  background-image: url(../images/8.webp);
}

.ch-img-9 {
  background-image: url(../images/9.webp);
}

.ch-img-10 {
  background-image: url(../images/10.webp);
}

.ch-img-11 {
  background-image: url(../images/11.webp);
}

.ch-img-12 {
  background-image: url(../images/11.webp);
}

.ch-img-13 {
  background-image: url(../images/13.webp);
}

.ch-img-14 {
  background-image: url(../images/14.webp);
}

.ch-info {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	/* background: #07369E url(../images/noise.png); */
	box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.05);
}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	font-size: 14px;
	margin: 0 18px;
	padding: 33px 0 0 0;
	height: 104px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.2);
	width: 73%;
	margin: 0 auto;
}

.ch-info p {
	color: #fff;
	padding: 2px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.ch-info p a {
	display: block;
	width: 70px;
	height: 70px;
	background: rgb(23, 92, 247);
	border-radius: 50%;
	color: #fff;
	font-style: normal;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 14px;
	letter-spacing: 1px;
	padding-top: 24px;
	margin: 7px auto 0;
	opacity: 0;
	transform: translateX(60px) rotate(90deg);
	-webkit-backface-visibility: hidden;
}

.ch-info p a:hover {
	background: rgba(255, 255, 255, 0.5);
}

.ch-item:hover .ch-thumb {
  box-shadow: inset 0 0 0 15px rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(-110deg);
  -moz-transform: rotate(-110deg);
  -o-transform: rotate(-110deg);
  -ms-transform: rotate(-110deg);
  transform: rotate(-110deg);
}

.ch-item:hover .ch-info p a {
  opacity: 1;
  -webkit-transform: translateX(0px) rotate(0deg);
  -moz-transform: translateX(0px) rotate(0deg);
  -o-transform: translateX(0px) rotate(0deg);
  -ms-transform: translateX(0px) rotate(0deg);
  transform: translateX(0px) rotate(0deg);
}

.ch-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  justify-content: center;
}

.ch-grid:after,
.ch-item:before {
  content: '';
  display: table;
}

.ch-grid:after {
  clear: both;
}

.ch-grid li {
  width: 190px;
  height: 190px;
  display: inline-block;
  text-align: center;
}

/* student-login-page-new */
.study-centre-section {
  background-size: cover;
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.login-form-overlay {
  background: url(../images/form-bg.jpg);
  background-size: cover;
  opacity: 0.07;
  transition: background .3s, border-radius .3s, opacity .3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -2;
}

.student-login-form {
  background: #fff;
  padding: 50px 30px;
  z-index: 9;
  position: relative;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 20px;
}

.study-centre-section .section-title h2 {
  font-size: 35px;
  line-height: 40px;
}

.study-centre-section .study_field-list .form-field label {
  color: #040404;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  border-radius: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

span.field-icon {
  position: absolute;
  top: 62%;
  right: 16px;
}

.single-page-background-overlay {
  background: #000;
  opacity: 0.7;
  transition: background .3s, border-radius .3s, opacity .3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.study-centre-section .single-page-background-overlay {
  opacity: 0.4;
}

/* bank-details-page */
.bank-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ddd;
	font-size: 14px;
	background: #fff;
}

.bank-table th {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.bank-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
}

.bank-table td:first-child {
  font-weight: 600;
  width: 40%;
}
.teacher-img {
    width: 100%;
    height: 280px;        
    object-fit: cover;    
    border-radius: 12px;
}


.footer-contact-info .footer-contact-value span {
  display: inline-block;
  margin: 0 8px;
  font-weight: 600;
}

.text-white,
.text-white * {
    color: #ffffff !important;
}

.marquee-wrap{
  display: flex;
  align-items: center;
  width: 100%;
  background: #F8F72C;
  overflow: hidden;
  position: relative;
}

.marquee-title{
  position: static;          /* override absolute */
  width: 160px;
  flex: 0 0 160px;
  background: #01011d;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  z-index: 1;
}

/* the scrolling area */
.marquee-new{
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

/* scrolling track */
.marquee-new-track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeMove 55s linear infinite;
}

.marquee-new-content{
  display: inline-block;
  white-space: nowrap;
  padding: 4px 20px;
}

.marquee-new-content p,
.marquee-new-content div,
.marquee-new-content h1,
.marquee-new-content h2,
.marquee-new-content h3,
.marquee-new-content h4,
.marquee-new-content h5,
.marquee-new-content h6{
  display: inline;
  margin: 0;
  padding: 0;
}

.marquee-new-content br{ display:none; }

@keyframes marqueeMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); } /* since you duplicated content */
}

.marquee-new-track:hover{ animation-play-state: paused; }
#overlay-spinner{
    position: fixed;
    inset:0;
    background: rgba(0,0,0,.45);
    z-index:9999;

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

    opacity:0;
    visibility:hidden;
    transition: opacity .25s ease;
}

/* show state */
#overlay-spinner.show{
    opacity:1;
    visibility:visible;
}

/* spinner */
.spinner{
    border:6px solid #f3f3f3;
    border-top:6px solid #0d6efd;
    border-radius:50%;
    width:65px;
    height:65px;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}
.avatar-fallback {
  width:55px;
  height:55px;
  border-radius:50%;
  background:#0b2a74;
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.course-tabs{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:18px;}
.course-tab-btn{
    background:#040a57;color:#fff;padding:14px 28px;font-weight:900;
    text-transform:uppercase;border-radius:0;border:0;cursor:pointer;
    letter-spacing:.5px;min-width:220px;text-align:center;
}
.course-tab-btn.active{background:#f4511e;}

.course-acc-item{border-radius:10px;overflow:hidden;border:1px solid #d7dbe7;margin-bottom:14px;}
.course-acc-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 18px;
    font-size:18px;
    font-weight:800;
    color:#fff;
    border:0;
    background:#040a57;
    text-align:left;
    transition: background .25s ease;
}
.course-acc-btn.open{background:#f4511e;}

/* smooth open/close */
.course-acc-body{
    background:#fff;
    padding:0 24px;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}
.course-acc-body.open{ max-height:2000px; }
.course-acc-body .inner{ padding:24px 0; }

    .course-card-grid{
    display:grid;
    grid-template-columns:240px 1fr 260px; /* reduced */
    gap:24px;
    align-items:start;
}


/* Semester layout */
.sem-grid{display:grid;gap:18px;}
.sem-grid.sem-1{grid-template-columns:1fr;}
.sem-grid.sem-2{grid-template-columns:1fr 1fr;}
.sem-grid.sem-3{grid-template-columns:1fr 1fr 1fr;}
.sem-grid.sem-4{grid-template-columns:1fr 1fr;}

.sem-box h3{
    font-size:22px;
    font-weight:800;
    margin:0 0 10px 0;
    text-align:center;
}

.sem-box ul{
    margin:0;
    padding-left:0;
    list-style:none;
    text-align:center;
}

.sem-box li{
    margin-bottom:6px;
    font-size:15px;
    line-height:1.5;
}

/* Hexagon Image Frame */
.hex-wrap{
    width:230px;
    height:200px;
    margin:0 auto;
    position:relative;
}
.hex-frame{
    width:100%;
    height:100%;
    overflow:hidden;
    background:#f2f2f2;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    border:6px solid #fff;
    border-radius:14px; /* fallback */
}
.hex-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* Price box */
.price-box{
border-radius:18px;
overflow:hidden;
background:#040a57;
color:#fff;
max-width:260px;
    }

    .price-box .head{
        background:#f4511e;
        padding:12px 16px;
        font-size:18px;   /* smaller */
        font-weight:800;
        text-align:center;
    }

    .price-box .body{
        padding:14px 16px;
        font-size:14px;   /* smaller */
        font-weight:700;
        line-height:1.6;
    }

    .price-box .body span.orange{
        color:#ff3d00;
        font-weight:800;
    }

    .price-box .body .note{
        margin-top:12px;
        color:#ff3d00;
        font-weight:800;
        font-size:13px;
    }


@media (max-width: 992px){
    .course-card-grid{grid-template-columns:240px 1fr 320px;}
    .price-box{max-width:420px;}
}
                                          

.s-single-services .viewCourseBtn{
  position: relative;
  z-index: 4;
  display: inline-block !important;
}

/* GLASS MODAL */

.modern-course-modal{
    border-radius:16px;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.95);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* IMAGE CARD */

.course-image-card{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.course-image-card img{
    width:100%;
}

/* TITLE */

.course-title{
    font-size:26px;
    font-weight:700;
}

/* META INFO */

.course-meta{
    display:flex;
    gap:10px;
}

.meta-pill{
    background:#f1f5f9;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:5px;
}

/* SYLLABUS TITLE */

.syllabus-title{
    font-weight:700;
    margin-bottom:10px;
}

/* SEMESTER GRID */

.semester-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

/* SEMESTER CARD */

.sem-box{
    background:#ffffff;
    border-radius:12px;
    padding:14px;
    border:1px solid #e5e7eb;
    transition:all .3s ease;
}

.sem-box:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* SEM TITLE */

.sem-box h5{
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}

/* SUBJECTS */

.sem-box ul{
    padding-left:18px;
}

.sem-box li{
    font-size:13px;
}

/* CTA BUTTONS */

.cta-buttons a{
    margin-right:8px;
}




/* Fullscreen background */
:root{
    --bg1:#062a57;
    --bg2:#073a78;
    --bg3:#0a4aa6;
    --card:#ffffff;
    --dot:rgba(255,255,255,0.25);
    --btn:#0b76ff;
}
.auth-wrap{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    padding: 0 26px;
    background:
        radial-gradient(1200px 700px at 25% 50%, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%),
        radial-gradient(900px 600px at 85% 35%, rgba(255,255,255,0.08), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
}

/* dotted grid on right */
.dots{
    position:absolute;
    inset:0;
    background-image: radial-gradient(var(--dot) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    opacity:.35;
    pointer-events:none;
    mask-image: radial-gradient(900px 520px at 78% 35%, #000 55%, transparent 72%);
}

/* big right ring */
.right-ring{
    position:absolute;
    right:-260px;
    top:50%;
    transform: translateY(-50%);
    width:980px;
    height:980px;
    border-radius:50%;
    border: 22px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 0 38px rgba(255,255,255,0.05),
        inset 0 0 0 2px rgba(255,255,255,0.06);
    pointer-events:none;
}

/* extra concentric rings */
.right-rings2{
    position:absolute;
    right:-160px;
    top:55%;
    transform: translateY(-50%);
    width:760px;
    height:760px;
    border-radius:50%;
    border: 2px solid rgba(255,255,255,0.10);
    box-shadow:
        0 0 0 44px rgba(255,255,255,0.02),
        0 0 0 86px rgba(23,182,209,0.05);
    pointer-events:none;
}

/* floating circles */
.float-circle{
    position:absolute;
    border-radius:50%;
    border: 3px solid rgba(255,255,255,0.55);
    opacity:.55;
    pointer-events:none;
}
.c1{ width:70px; height:70px; right:130px; top:60px; border-width:3px; opacity:.55;}
.c2{ width:26px; height:26px; right:40px; top:80px; border-width:2px; opacity:.45;}
.c3{ width:46px; height:46px; right:60px; top:140px; border-width:2px; opacity:.25;}

/* small stripe patch */
.stripe-patch{
    position:absolute;
    left:38%;
    top:12%;
    width:150px;
    height:110px;
    border-radius:18px;
    background:
    repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.22) 0,
        rgba(255,255,255,0.22) 8px,
        rgba(255,255,255,0.05) 8px,
        rgba(255,255,255,0.05) 16px
    );
    opacity:.35;
    pointer-events:none;
}

/* Layout */
.auth-container{
    width:100%;
    max-width: 1320px;
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items:center;
}

/* Left panel */
.left-panel{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}


.photo-circle{
    position:relative;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow:hidden;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 32px 90px rgba(0,0,0,0.35);
}

.photo-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform: scale(1.03);
    display:block;
}

/* dark navy outer */
.photo-circle:before{
    content:"";
    position:absolute;
    inset:-110px;
    border-radius:50%;
    border: 82px solid rgba(6, 42, 87, 0.85);
    pointer-events:none;
    z-index:2;
}

/* teal arc */
.photo-circle:after{
    content:"";
    position:absolute;
    right:-250px;
    top:50%;
    transform: translateY(-20%);
    width:460px;
    height:460px;
    border-radius:50%;
    background: rgba(23,182,209,0.55);
    pointer-events:none;
    z-index:3;
}

/* striped circle overlay (clipped) */
.photo-circle .stripe-overlay{
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    top:-230px;
    left:270px;
    background:
    repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.55) 0px,
        rgba(255,255,255,0.55) 10px,
        rgba(255,255,255,0.10) 10px,
        rgba(255,255,255,0.10) 20px
    );
    opacity:.35;
    pointer-events:none;
    z-index:4;
}

/* ✅ Reduced rings */
.img-rings{
    position:absolute;
    left:-10px;
    top:50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius:50%;
    border: 2px solid rgba(255,255,255,0.22);
    box-shadow:
        0 0 0 34px rgba(255,255,255,0.06),
        0 0 0 68px rgba(255,255,255,0.04);
    pointer-events:none;
}

.img-lines{
    position:absolute;
    left: 42px;
    top: 32px;
    width: 560px;
    height: 560px;
    border-radius:50%;
    border: 2px solid rgba(23,182,209,0.35);
    pointer-events:none;
}

/* Login card */
.login-card{
    width:100%;
    max-width: 520px;
    margin-left:auto;
    background: var(--card);
    border-radius: 10px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.35);
    overflow:hidden;
}

.login-card-inner{ padding: 28px 30px 24px; }

.title{
    text-align:center;
    font-weight:800;
    letter-spacing:1px;
    font-size: 40px;
    margin: 8px 0 18px;
    color:#111827;
}

.logo-wrap{ display:flex; justify-content:center; margin-bottom: 18px; }
.logo-circle{
    width:92px;height:92px;border-radius:50%;
    background:#fff;display:flex;align-items:center;justify-content:center;
    box-shadow: 0 8px 26px rgba(0,0,0,0.12);
    border: 2px solid rgba(17,24,39,0.12);
    overflow:hidden;
}
.logo-circle img{ width:78px;height:78px;object-fit:contain; }

.field{ margin-bottom: 16px; }

.input-group{
    display:flex;
    width:100%;
    border: 1px solid #d6dde7;
    border-radius: 4px;
    overflow:hidden;
    background:#fff;
}
.input-group input{
    border:0;
    outline:none;
    padding: 14px 16px;
    width:100%;
    font-size: 16px;
    color:#111827;
}
.input-group .icon-box{
    width:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2f7;
    border-left:1px solid #d6dde7;
    color:#4b5563;
    cursor: default;
}
.icon-box.clickable{ cursor:pointer; }

.btn-primary{
    width:100%;
    border:0;
    outline:none;
    background: var(--btn);
    color:#fff;
    font-weight:700;
    padding: 14px 16px;
    border-radius: 4px;
    cursor:pointer;
    font-size: 18px;
    margin-top: 6px;
}
.btn-primary:hover{ filter:brightness(.95); }

.forgot{ margin-top: 12px; }
.forgot a{
    color: var(--btn);
    text-decoration:none;
    font-weight:600;
    font-size: 18px;
}
.forgot a:hover{ text-decoration:underline; }