/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/static/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/static/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/static/Lora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/static/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}



/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --Body-color: #00001b;
  --body-color: #555;
  --accent-color: rgb(1, 36, 140);
  --secondary-color: #C3D6F3;
  --gray-color: #f4f3ef;
  --border-color: #d9d9d9;
  --heading-font: "Lora", sans-serif;
  --body-font: "Montserrat", sans-serif;

}


body,
p {

  color: var(--Body-color);
  line-height: 1.9;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
}



/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.9em;
  font-weight: 400;
  overflow-x: clip;


}

body {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--accent-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

h1 {
  font-size: 56px;
  font-family: var(--heading-font);
}

h2 {
  font-size: 32px;
  font-family: var(--heading-font);
}

h3 {
  font-size: 30px;
  font-family: var(--heading-font);
}

h4 {
  font-size: 24px;
  font-family: var(--heading-font);
}

h5 {
  font-size: 16px;
  font-family: var(--heading-font);
}

h6 {
  font-size: 16px;
  font-family: var(--heading-font);
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;

}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: var(--body-color);
}

table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* ...........................................................
navigate button to ecollege page
................................................................*/

/*--------------------------------------------------------------
Animation
----------------------------------------------------------------*/
@-webkit-keyframes particalAnimation {

  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(50px, -10px);
    transform: translate(50px, -10px);
  }

  40% {
    -webkit-transform: translate(100px, 60px);
    transform: translate(100px, 60px);
  }

  60% {
    -webkit-transform: translate(60px, 90px);
    transform: translate(60px, 90px);
  }

  80% {
    -webkit-transform: translate(-30px, 60px);
    transform: translate(-30px, 60px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes particalAnimation {

  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(50px, -10px);
    transform: translate(50px, -10px);
  }

  40% {
    -webkit-transform: translate(100px, 60px);
    transform: translate(100px, 60px);
  }

  60% {
    -webkit-transform: translate(60px, 90px);
    transform: translate(60px, 90px);
  }

  80% {
    -webkit-transform: translate(-30px, 60px);
    transform: translate(-30px, 60px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

@keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

@-webkit-keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@-webkit-keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}

@keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}

@-webkit-keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}

@keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}

@-webkit-keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}

@keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}

@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

/*--------------------------------------------------------------
3. Preloader
----------------------------------------------------------------*/
.td_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.td_preloader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.2;
}

.td_preloader_in {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 3;
}

.td_preloader_in span {
  background-color: var(--accent-color);
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.td_preloader_in span:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;

}


hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 1;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.title-decoration .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  margin: 0 5px;
}

.title-decoration .line {
  width: 60px;
  height: 2px;
  background: var(--accent-color);
}

.td_scrollup {
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transform: scale(0);
  transform: scale(0);
  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;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 999;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  cursor: pointer;
}

.td_scrollup::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
  animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}

.td_scrollup.td_scrollup_show {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.td_scrollup i {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

/* End Scroll Up */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}


/*--------------------------------------------------------------
Header
----------------------------------------------------------------*/
.navbar {
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  ;
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  height: 90px;
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.navbar-brand i {
  font-size: 1.8rem;
  margin-right: 10px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

/* Navigation Links */
.nav-link {
  color: var(--Body-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 3px 3px 0 0;
}


.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}

.btn-nav {
  all: unset;
  display: inline-flex;
  /* Changed from flex to inline-flex */
  align-items: center;
  position: relative;
  padding: 0.5em 1em;
  border: var(--accent-color) solid 0.15em !important;
  border-radius: 40px !important;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  user-select: none;
  font-size: 12px !important;
  white-space: nowrap;
  text-align: center;
  min-width: max-content;
}


@media (max-width: 400px) {
  .btn-nav {
    padding: 0.4em 0.8em;
    font-size: 11px !important;
  }


  .d-flex.flex-md-column.flex-lg-row.gap-2 {
    gap: 0.5rem !important;
  }
}


@media (max-width: 767px) {
  .d-flex.flex-md-column.flex-lg-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
  }
}

.btn-nav p {
  z-index: 1;
}

.btn-nav:hover {
  color: var(--white-color);
}

.btn-nav:active {
  border-color: var(--white-color);
}

.btn-nav::after,
.btn-nav::before {
  content: "";
  position: absolute;
  width: 9em;
  aspect-ratio: 1;
  background: var(--secondary-color);
  opacity: 50%;
  border-radius: 50%;
  transition: transform 500ms, background 300ms;
}

.btn-nav::before {
  left: 0;
  transform: translateX(-8em);
}

.btn-nav::after {
  right: 0;
  transform: translateX(8em);
}

.btn-nav:hover::before {
  transform: translateX(-1em);
}

.btn-nav:hover::after {
  transform: translateX(1em);
}

.btn-nav:active::before,
.btn-nav:active::after {
  background: var(--accent-color);
}



.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  transform: scale(1.1);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  width: 280px !important;
  background-color: var(--white-color);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 1.5rem;
}

.offcanvas-title {
  font-weight: 700;
  color: var(--accent-color);
}

.offcanvas-body .nav-link {
  padding: 0.8rem 1.5rem;
  margin: 0.3rem 0;
  border-radius: 0;
  border-left: 3px solid var(--accent-color);
  color: var(--Body-color);
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  background-color: rgba(78, 84, 200, 0.05);
  border-left: 3px solid var(--secondary-color);
}

.offcanvas-body .btn-nav {
  width: calc(100% - 3rem);
  margin: 1.5rem auto 0;
  display: block;
  text-align: center;
}

/* Media Queries for Responsive Design */
@media (min-width: 1400px) {
  .navbar {
    padding: 0.8rem 5rem;
  }

  .navbar.scrolled {
    padding: 0.5rem 5rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-brand i {
    font-size: 1.6rem;
  }

  .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 0.8rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.5rem 1.5rem;
  }

  .offcanvas-body .nav-link {
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand i {
    font-size: 1.5rem;
    margin-right: 8px;
  }

  .btn-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding: 0.7rem 1rem;
  }

  .offcanvas {
    width: 250px !important;
  }

  .offcanvas-header {
    padding: 1rem;
  }

  .offcanvas-body .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Adjust for mid-range scaling (e.g. 110% to 125%) */
@media (max-width: 1350px) {
  .navbar {
    padding: 0.6rem 1.4rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    margin: 0 0.2rem;
  }

  .login-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}


@media (-webkit-min-device-pixel-ratio: 1.1),
(min-resolution: 105dpi) and (max-resolution: 120dpi) {
  .navbar {
    padding: 0.65rem 1.8rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
  }

  .btn-nav {
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
  }
}


/*.................................
1. Landing page hero section.........*/
.hero-section {
  background: linear-gradient(135deg, rgba(1, 36, 140, 0.2), rgba(195, 214, 243, 0.95));
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  z-index: 1;

}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--Body-color);
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
  font-weight: 600;
}



.btn-3d {

  perspective: 1000px;
  padding: 1em 2em;
  background-color: var(--secondary-color);
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--Body-color);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: rotateX(70deg) rotateZ(30deg);
  transform-style: preserve-3d;
  transition: transform 0.5s;
  position: relative;
  margin: 15px;
  border-radius: 0;
}

.btn-3d::before {
  content: "";
  width: 100%;
  height: 15px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotateX(90deg);
  transform-origin: bottom;
}

.btn-3d::after {
  content: "";
  width: 15px;
  height: 100%;
  background-color: var(--gray-color);
  position: absolute;
  top: 0;
  right: 0;
  transform: rotateY(-90deg);
  transform-origin: right;
}

.btn-3d:hover {
  transform: rotateX(30deg) rotateZ(0);
}

.btn-3d-outline {

  perspective: 1000px;
  padding: 1em 2em;
  background-color: var(--secondary-color);
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--Body-color);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: rotateX(70deg) rotateZ(30deg);
  transform-style: preserve-3d;
  transition: transform 0.5s;
  position: relative;
  margin: 15px;
  border-radius: 0;
}

.btn-3d-outline::before {
  content: "";
  width: 100%;
  height: 15px;
  background-color: var(--accent-color);

  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotateX(90deg);
  transform-origin: bottom;
}

.btn-3d-outline::after {
  content: "";
  width: 15px;
  height: 100%;
  background-color: var(--gray-color);
  position: absolute;
  top: 0;
  right: 0;
  transform: rotateY(-90deg);
  transform-origin: right;
  border-top: 1PX solid var(--accent-color);
}

.btn-3d-outline:hover {
  transform: rotateX(30deg) rotateZ(0);
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(var(--color1), var(--color2));
}

.btn-3d-outline:hover::before,
.btn-3d-outline:hover::after {
  opacity: 1;
}



.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
}




.search-section {
  position: relative;
  margin-top: -60px;
  z-index: 2;
}

.search-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 25px;
  max-width: 900px;
  margin: 0 auto;
}


.search-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(1, 36, 140, 0.1);
}

.search-box input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  outline: none;
}

.search-button {
  background: var(--accent-color);
  border: none;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #0d2b6b;
}

.quick-links {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.quick-links span {
  color: #666;
}

.quick-links a {
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background: var(--accent-color);
  color: white;
}

@media (max-width: 768px) {
  .search-container {
    padding: 15px;
  }

  .search-tabs {
    flex-wrap: wrap;
  }

  .search-tab {
    padding: 8px 15px;
    font-size: 14px;
  }

  .search-box input {
    padding: 12px 15px;
  }

  .quick-links {
    gap: 8px;
  }

  .quick-links a {
    padding: 4px 8px;
    font-size: 13px;
  }
}

/* ..........................................
..B...Dashboard of student.............. */


.feature-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding-top: 20px;
  min-height: 350px;
}


.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  color: var(--accent-color) !important;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: var(--accent-color);
}

.feature-content {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--Body-color);
  font-size: 16px;
  font-weight: 500;

}

.feature-title {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 20px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.feature-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.category-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  color: white !important;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.6rem !important;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2);
  color: var(--white-color);

}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.feature-list li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ..........................................
..C..UNIVERSITY.......................... */
.university-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.university-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-image-container {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.university-card:hover .card-image {
  transform: scale(1.05);
}
.university-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
  z-index: 2;
  padding: 5px;
  transform: translateY(0);
}

.university-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}


.college-card {
  position: relative;
  overflow: visible;
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.card-body {
  padding: 30px 20px 20px;
  position: relative;
}

.university-name {
  font-weight: 700;
  font-size: 20px;
  padding-left: 10px;
  color: var(--accent-color) !important;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  background: rgb(1, 36, 140);
  padding: 12px;
  border-radius: 8px;
  color: white;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 5px;

}

.stat-number {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 3px;

}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.location {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  padding-left: 10px;
  color: var(--Body-color);
  font-weight: 500;
}

.location i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
}



@media (max-width: 992px) {
  .card-image-container {
    height: 160px;
  }

  .university-logo {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 768px) {
  .card-image-container {
    height: 200px;
  }

  .university-logo {
    width: 50px;
    height: 50px;


  }
}

/*................. College listing........ */

.college-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;

  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.college-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.college-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.college-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.college-card:hover .college-image img {
  transform: scale(1.03);
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.programs h6 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--Body-color);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.program-badge {
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.admission-dashboard {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dashboard-item {
  text-align: left;
  padding: 0.5rem;
}

.dashboard-value {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}



.dashboard-label {
  font-size: 0.65rem;
  color: var(--Body-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}

.read-more-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.read-more-btn:hover {
  background-color: var(--secondary-color);
  transform: translateX(3px);
}

.view-all-btn {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 3rem;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--secondary-color);
}


.journey-section {
  background-image: url('/assets/css/img/images/college.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.journey-content {
  position: relative;
  z-index: 1;
}

.journey-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.journey-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.journey-btn {
  padding: 10px 25px;
  margin: 0 10px;
  border-radius: 5px;
  font-weight: bold;
}


.btn-opportunities {
  background-color: transparent;
  border: 2px solid white;
}



/* .....................................
 ..AI Career Assistant................ */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}



.ai-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  border-radius: 50%;
}

.ai-feature-item {
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ai-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: white;
  color: var(--Body-color);
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ai-demo-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card {
  border: none;
  border-radius: 16px !important;
  overflow: hidden;
}

.ai-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  color: var(--white-color);
}

.chat-message ul {
  padding-left: 1.25rem;
}

.chat-message li {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-weight: 500;
}

.chat-input .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .ai-demo-card {
    margin-top: 3rem;
  }
}


/* ............................ */
/* ....2. Footer ............. */

.wave-footer {
  background: var(--accent-color);
  color: var(--white-color);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;

}

.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23C3D6F3"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23C3D6F3"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" opacity=".25" fill="%23C3D6F3"/></svg>');
  background-size: 50% 100%;
  animation: wave 12s linear infinite;
  transform-origin: center bottom;
}


.wave:nth-child(2) {
  animation: wave 15s linear infinite reverse;
  opacity: 0.7;
  bottom: 5px;
}

.wave:nth-child(3) {
  animation: wave 18s linear infinite;
  opacity: 0.4;
  bottom: 10px;
}

@keyframes wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }

  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.9);
  }

  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}


.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.15);
  animation: float 15s infinite linear;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 70%;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

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


.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

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

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  transition: all 0.3s;
}

.footer-links li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-links li:hover:before {
  transform: translateX(5px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.social-links a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  top: 0;
  left: -100%;
  transition: all 0.3s;
  z-index: -1;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover:after {
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.shape-3 {
  width: 70px;
  height: 70px;
  background: white;
  top: 30%;
  left: 70%;
  animation-delay: 4s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  top: 80%;
  left: 10%;
  animation-delay: 6s;
}

@keyframes waveAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

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

@media (max-width: 991.98px) {
  .footer-col {
    margin-bottom: 30px;
  }

  .footer-heading {
    margin-bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  .ec-footer {
    padding: 50px 0 20px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-about p {
    font-size: 14px;
  }

  .footer-heading {
    font-size: 16px;
  }
}


/* multiple page banner */
.education-banner {
  background-color: var(--accent-color);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.banner-title {
  font-size: 32px !important;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 80px;

}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.education-icon {
  position: absolute;
  opacity: 0.1;
  font-size: clamp(3rem, 8vw, 5rem);
  z-index: 1;
  animation: float 6s infinite ease-in-out;
}

.icon-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.icon-2 {
  top: 55%;
  left: 80%;
  animation-delay: 1s;
}

.icon-3 {
  top: 25%;
  left: 70%;
  animation-delay: 2s;
}

.icon-4 {
  top: 65%;
  left: 15%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.breadcrumb {
  background-color: transparent;

  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: white;
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
  content: "|";
  padding: 0 0.75rem;
  font-weight: normal;
}

.banner-subtitle {
  color: white;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-top: 0.75rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .education-banner {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .education-banner {
    padding: 3rem 0;
    min-height: 250px;
  }

  .breadcrumb {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 0.5rem;
  }

  .banner-title {
    margin-top: 0.5rem;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .education-banner {
    padding: 2rem 0;
    min-height: 220px;
  }

  .breadcrumb {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background: none;
    padding: 0.5rem;
  }

  .breadcrumb-item {
    padding: 0.2rem;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding: 0 0.3rem;
  }

  .banner-content {
    padding: 0 0.5rem;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .education-banner {
    min-height: auto;

  }

  .banner-content {
    padding-top: 1rem !important;
  }

  .banner-title {
    margin-top: 0.5rem !important;
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .breadcrumb {
    margin-top: -1.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
  }
}

@media (max-width: 375px) {

  .banner-title {
    font-size: 1.3rem !important;
    margin-top: 0.25rem !important;
  }

  .breadcrumb {
    font-size: 0.75rem;
    margin-top: -2rem;

  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 0.15rem;
  }
}

@media (max-width: 320px) {

  .banner-title {
    font-size: 1.25rem !important;
  }

  .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 0.25rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {}

@media (max-width: 991px) {

  .education-banner {
    scroll-margin-top: 56px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {

  .banner-title {
    margin-top: 20px;
  }
}


@media only screen and (min-device-width: 834px) and (max-device-width: 1194px) and (-webkit-min-device-pixel-ratio: 2) {

  .education-banner {
    margin-block: 40px;
  }

  .banner-title {
    margin-top: 20px;
  }
}

@media screen and (device-width: 1280px) and (device-height: 800px) and (orientation: landscape) {
  .banner-title {
    margin-top: 70px;
  }
}

/*
..........form of apply  for admission............. */
.form-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  padding: 25px;

}


.section-header {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  /* border-bottom: 2px solid var(--accent-color); */
  text-align: center;
  padding-top: 20px;
}

.section-header i {
  margin-right: 10px;
  color: var(--accent-color);
}

.section-subheader {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  margin: 25px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  background-color: var(--accent-color);
  padding: 10px;
}

.section-subheader i {
  margin-right: 8px;
  color: var(--white-color);
}

.form-label {
  font-weight: 600;
  color: var(--Body-color);
  margin-bottom: 5px;
}

.form-label.required::after {
  content: " *";
  color: #e74c3c;
}

.form-control,
.form-select {
  border: 1px solid #1d1e1e;
  border-radius: 0px !important;
  padding: 10px 12px;
  font-size: 13px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-check-input {
  margin-top: 0.2em;
}

.form-check-label {
  color: var(--body-color);
  font-size: 13px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--Body-color);
  font-weight: 500;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: white;
  border-color: var(--accent-color);
  transform: translateY(-2px);
  color: var(--Body-color);
}

.form-section {
  background-color: white;
  padding: 20px;
  margin-bottom: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .section-header {
    font-size: 20px;
  }

  .section-subheader {
    font-size: 16px;
  }
}


.text-muted {
  font-size: 12px;
  color: var(--Body-color) !important;
  display: block;
  margin-top: 5px;
}

.form-control[type="file"] {
  padding: 8px;
}


.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 5px;
  border: 2px solid var(--Body-color);
}

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


/* ........admisiion notice section........        */
.admission-card {
  position: relative;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(223, 218, 208, 0.7);
}

.admission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 2rem;
}

.paid-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, #091d5b 0%, #C3D6F3 100%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.admission-title {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.course-name {
  font-weight: 600;
  color: var(--Body-color);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.admission-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
}

.detail-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--white-color);
  font-size: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}


@media (max-width: 1024px) {
  .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}


@media (max-width: 768px) {
  .col-md-4.text-md-end {
    margin-top: 1.5rem;
  }

  .admission-title {
    font-size: 1.3rem;
  }

  .course-name {
    font-size: 1.1rem;
  }

  .admission-details {
    flex-direction: column;
    gap: 10px;
  }

  .admission-card .d-flex {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start !important;
  }
}

.paid-badge i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .paid-badge {
    font-size: 10px;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }

  .paid-badge i {
    margin-right: 4px;
  }
}

/* ...........college detail page navbar...... */
@media (max-width: 1400px) {
  .td_hamburger_btn {
    width: 30px;
  }
}

@media (max-width: 1199px) {
  .td_hamburger_btn {
    display: none;
  }
}

.td_hamburger_btn span {
  position: relative;
}

.td_hamburger_btn::before {
  top: 0;
}

.td_hamburger_btn::after {
  bottom: 0;
}

.td_hamburger_btn:hover {
  opacity: 0.7;
}

.td_site_header.td_style_1 .td_main_header_in,
.td_site_header.td_style_1 .td_top_header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.td_site_header.td_style_1 .td_main_header_in {
  height: 90px;
}

.td_site_header.td_style_1 .td_top_header_in {
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.td_site_header.td_style_1 .td_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 30px;
  font-family: var(--heading-font);
}

@media (max-width: 1199px) {
  .td_site_header.td_style_1 .td_main_header_right {
    padding-right: 30px;
  }
}

.td_site_header.td_style_1 .td_top_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.td_site_header.td_style_1 .td_top_header .td_btn.td_style_1 .td_btn_in {
  padding: 13px 18px;
}

.td_site_header.td_style_1 .td_main_header_left {
  height: 100%;
  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;
  gap: 30px;
}

.td_site_header.td_style_1.td_type_1 {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.07%, #fff0d4), color-stop(95.86%, #d6fff7));
  background: linear-gradient(90deg, #fff0d4 0.07%, #d6fff7 95.86%);
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}

.td_site_header.td_style_1.td_type_1 .td_header_dropdown_btn {
  border-radius: 30px;
  background-color: #fff;
}

.td_site_header.td_style_1.td_type_1 .td_header_dropdown_list {
  background-color: #fff;
}

.td_site_header.td_style_1.td_type_2 {
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  background-color: #fff;
}

@media (min-width: 1200px) {
  .td_site_header.td_style_1.td_type_2 .td_main_header_right {
    gap: 70px;
  }
}

.td_site_header.td_style_1.td_type_2 .td_circle_btn {
  background-color: rgba(235, 236, 237);
}

.td_site_header.td_style_1.td_type_2 .td_circle_btn:hover {
  background-color: rgb(235, 236, 237, 0.3);
}

.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn {
  background-color: #ffffff;
  height: 34px;
  width: 34px;
}

.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn img {
  height: 15px;
  color: #ffffff;
}

.td_site_header.td_style_1.td_type_2 .td_top_header .td_circle_btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* header color */
.td_site_header.td_style_1.td_type_3 {
  background-color: var(--white-color);
}

.td_site_header.td_style_1.td_type_3 .td_main_header_right {
  gap: 20px;
}

.td_site_header.td_style_1.td_type_3 .td_circle_btn {
  height: initial;
  width: initial;
  border: none;
  padding: 0;
}

.td_site_header.td_style_1.td_type_3 .td_circle_btn img {
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.td_site_header.td_style_1.td_type_3 .td_circle_btn:hover {
  background-color: transparent;
  opacity: 0.7;
}

.td_site_header.td_style_1.td_type_3 .td_header_dropdown_btn {
  border: none;
  background-color: transparent;
  padding: 0;
  color: #343030;
  gap: 8px;
}

.td_site_header.td_style_1.td_type_3 .td_header_dropdown_btn:hover {
  opacity: 0.8;
}

.td_site_header.td_style_1.td_type_3 .td_header_dropdown_list {
  left: initial;
  right: 0;
  width: 150px;
}

.td_site_header.td_style_1.td_type_3 .td_header_social_btns a:hover {
  color: #372e2e;
  opacity: 0.7;
}

@media (min-width: 1200px) {

  .td_site_header.td_style_1.td_type_3 .td_header_social_btns,
  .td_site_header.td_style_1.td_type_3 .td_nav .td_nav_list>li>a {
    color: #171313;
  }

  /* .td_site_header.td_style_1.td_type_3 .td_main_header_left .td_site_branding {
    display: none;
  } */
}


@media (max-width: 1199px) {
  .td_site_header.td_style_1.td_type_3 .td_header_social_btns {
    display: none;
  }

  .td_site_header.td_style_1.td_type_3.td_heading_color .td_menu_toggle {
    color: var(--accent-color);

  }

  .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap {
    background-color: white;
  }

  /* .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap .td_site_branding {
    display: none;
  } */
  .td_site_header.td_style_1.td_type_3 .td_nav {
    color: #0000
  }

  .td_site_header.td_style_1.td_type_3 .td_nav a:hover {
    color: #000;
  }
}

.td_site_header.td_style_1.td_type_4 .td_main_header_left {
  gap: 40px;
}

@media (min-width: 1200px) {
  .td_site_header.td_style_1.td_type_4 .td_nav .td_nav_list>li>a {
    color: #000000;
  }

  .td_site_header.td_style_1.td_type_4 .td_nav .td_nav_list>li>a:hover {
    opacity: 0.8;
  }
}

@media (max-width: 1199px) {
  .td_site_header.td_style_1.td_type_4 .td_nav_list_wrap {
    background-color: var(--accent-color);
  }

  .td_site_header.td_style_1.td_type_4 .td_nav {
    color: #000;
  }

  .td_site_header.td_style_1.td_type_4 .td_btn.td_style_1 .td_btn_in {
    background-color: #000;
    color: var(--heading-color);
  }

  .td_site_header.td_style_1.td_type_4 .td_btn.td_style_1 .td_btn_in.td_heading_bg::before {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .td_site_header.td_style_1.td_type_4 .td_circle_btn {
    border-color: #000;
  }

  .td_site_header.td_style_1.td_type_4 .td_circle_btn img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .td_site_header.td_style_1.td_type_4 .td_circle_btn:hover img {
    -webkit-filter: initial;
    filter: initial;
  }

  .td_site_header.td_style_1.td_type_4.td_heading_color .td_menu_toggle {
    color: #000;
  }
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky {
  background-color: var(--accent-color);
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_btn.td_style_1 .td_btn_in {
  background-color: #000;
  color: var(--heading-color);
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_btn.td_style_1 .td_btn_in.td_heading_bg::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_circle_btn {
  border-color: #000;
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_circle_btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.td_site_header.td_style_1.td_type_4.td_gescout_sticky .td_circle_btn:hover img {
  -webkit-filter: initial;
  filter: initial;
}

.td_site_header.td_style_1.td_type_5 {
  background-color: #000;
}

@media (min-width: 1600px) {
  .td_site_header.td_style_1.td_type_5 .td_main_header_left .td_site_branding {
    margin-right: 50px;
  }
}

.td_site_header.td_style_1.td_sticky_active {
  background-color: var(--heading-color);
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.td_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.td_side_header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  z-index: 1000;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.td_side_header .td_side_header_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: inherit;
  width: inherit;
  left: inherit;
  top: inherit;
  position: inherit;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.td_side_header .td_side_header_in {
  width: 500px;
  height: 100vh;
  background-color: var(--white-color);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  overflow: auto;
  padding: 70px 50px 50px 50px;
  position: relative;
  z-index: 2;
  right: -500px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 450px) {
  .td_side_header .td_side_header_in {
    padding: 70px 50px 50px 20px;
  }
}

.td_side_header .td_side_header_heading {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  margin: 0;
  text-align: justify;
  color: var(--body-color);

}

.td_side_header .td_side_header_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.td_side_header .td_side_header_box {
  padding: 30px 0;
}

.td_side_header .td_close {
  opacity: 0;
}

.td_side_header.active {
  opacity: 1;
  visibility: visible;
}

.td_side_header.active .td_side_header_overlay,
.td_side_header.active .td_close {
  opacity: 1;
}

.td_side_header.active .td_side_header_in {
  right: 0;
}

.td_side_header .td_side_header_contact_info li {
  padding-left: 32px;
  position: relative;
}

.td_side_header .td_side_header_contact_info li:not(:last-child) {
  margin-bottom: 20px;
}

.td_side_header .td_side_header_contact_info i {
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
  width: 18px;
  text-align: center;
}

.td_close {
  position: fixed;
  right: 30px;
  top: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  cursor: pointer;
  z-index: 2;
  z-index: 100;
  text-align: center;
  padding: 5px;
  height: 35px;
  width: 35px;
  font-size: 16px;
  color: white;
  background-color: var(--accent-color);
}



.td_close:hover {
  color: red;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.td_site_header_spacing_100 {
  height: 100px;
}

@media screen and (max-width: 1199px) {
  .td_site_header_spacing_100 {
    height: 80px;
  }

  .td_site_header.td_style_1 .container {
    max-width: 100%;
  }

  .td_site_header.td_style_1 .td_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .td_site_header.td_style_1 .td_top_header {
    display: none;
  }

  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in {
    padding: 8px 15px;
    gap: 5px;
  }
}

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

.td_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.td_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
}

.td_gescout_sticky .td_top_header_in {
  overflow: hidden;
}

.td_gescout_sticky.td_white_bg {
  background-color: #fff;
}

.td_gescout_sticky.td_site_header.td_style_1 .td_top_header_in {
  height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.td_gescout_sticky.td_fixed_sticky {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
}

.td_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
}

.td_site_branding {
  display: inline-block;
}

.td_site_branding+.td_nav {
  margin-left: 60px;
}

@media (max-width: 1600px) {
  .td_site_branding+.td_nav {
    margin-left: 40px;
  }
}

@media (max-width: 1540px) {
  .td_site_branding+.td_nav {
    margin-left: 30px;
  }
}

.td_main_header {
  position: relative;
}

.td_main_header .container-fluid {
  padding-right: 95px;
  padding-left: 95px;
}

@media screen and (min-width: 1200px) {

  .td_main_header_center,
  .td_top_header_center {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .td_site_header.td_style_1 .td_main_header_center {
    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;
    height: 100%;
    font-weight: bold;
    font-family:var(--heading-font) !important;
    font-size: 18px;
  }

  .td_site_header.td_style_1 .td_nav_list_wrap {
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .td_site_header.td_style_1 .td_nav_list_wrap_in {
    height: 100%;
  }

  .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;

  }

  .td_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 100%;
    line-height: 1.6em;
  }

  .td_nav .td_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit;
    gap: 2rem;
    color: #000;

  }

  .td_nav .td_nav_list>li {
    margin-right: 25px;
    height: inherit;
  }

  .td_nav .td_nav_list>li:last-child {
    margin-right: 0;
  }

  .td_nav .td_nav_list>li>a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .td_nav .td_nav_list>li>ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }

  .td_nav .td_nav_list>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .td_nav .td_nav_list>li.menu-item-has-children>a {
    position: relative;
  }

  .td_nav .td_nav_list>li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }

  .td_nav .td_nav_list li:not(.td_mega_menu) {
    position: relative;
  }

  .td_nav .td_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 7px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .td_nav .td_nav_list ul li:hover ul {
    top: 0px;
  }

  .td_nav .td_nav_list ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .td_nav .td_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }

  .td_nav .td_nav_list ul ul {
    top: 15px;
    left: 100%;
  }

  .td_menu_toggle,
  .td_munu_dropdown_toggle {
    display: none;
  }

  .td_nav .td_nav_list .td_mega_menu {
    position: relative;
  }

  .td_nav .td_nav_list .td_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 90px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 5px 5px;
  }

  .td_nav .td_nav_list .td_mega_wrapper h4 {
    padding: 8px 10px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    color: inherit;
  }

  .td_nav .td_nav_list .td_mega_wrapper a {
    padding: 7px 10px;
  }

  .td_nav .td_nav_list .td_mega_wrapper>li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }

  .td_nav .td_nav_list .td_mega_wrapper>li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
  }

  @media (max-width: 1366px) {
    .td_nav .td_nav_list {
      gap: 1.2rem;
    }

    .td_nav .td_nav_list>li {
      margin-right: 15px;
    }

    .td_nav .td_nav_list>li>a {
      padding: 8px 0;
      font-size: 16px;
    }

    .td_main_header .container-fluid {
      padding-left: 40px;
      padding-right: 40px;
    }
  }

  @media (max-width: 1199px) {
    .td_nav {
      display: none;
      flex-direction: column;
      width: 100%;
      left: 0;
      top: 100%;
      background: #fff;
      position: absolute;
      z-index: 1000;
    }

    .td_nav.open {
      display: flex;
    }

    .td_nav .td_nav_list {
      flex-direction: column;
      gap: 0;
    }

    .td_nav .td_nav_list>li {
      margin-right: 0;
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }

    .td_nav .td_nav_list>li>a {
      font-size: 16px;
    }
  }

  @media (max-width: 1024px) {
    .td_nav .td_nav_list {
      gap: 1rem;
    }

    .td_nav .td_nav_list>li {
      margin-right: 10px;
    }

    .td_nav .td_nav_list>li>a {
      padding: 8px 0;
      font-size: 15px;
    }

    .td_main_header .container-fluid {
      padding-left: 30px;
      padding-right: 30px;
    }

    .td_main_header_center {
      font-size: 16px;
    }
  }


  .td_nav .td_nav_list .td_mega_wrapper>li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .td_nav .td_nav_list .td_mega_menu:hover .td_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }

  .td_top_header+.td_main_header .td_nav .td_nav_list .td_mega_wrapper {
    top: 140px !important;
  }

  .td_gescout_show .td_top_header+.td_main_header .td_nav .td_nav_list .td_mega_wrapper {
    top: 90px !important;
  }

  .td_site_header.td_style_1.td_size_md .td_nav .td_nav_list .td_mega_wrapper {
    top: 85px !important;
  }

  .td_nav .td_nav_list>li ul:not(.td_mega_wrapper) .menu-item-has-children>a {
    position: relative;
  }
}


.td_hamburger_btn {
  width: 50px;
  height: 50px;
  padding: 15px;
  font-size: 28px;
  color: #8e56ff;
}

.td_side_header_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.td_side_header_modal.active {
  visibility: visible;
  opacity: 1;
}

.td_side_header_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.td_side_header_modal_content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90%;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 30px;
}

.td_side_header_modal.active .td_side_header_modal_content {
  transform: translateX(0);
}


.td-mobile-only {
  display: none;

}


@media (max-width: 991px) {
  .td-mobile-only {
    display: block;
    width: 200px;
    margin: 10px auto;
    text-align: center;
    border-radius: 4px;
    padding: 6px 10px
  }

  .td-desktop-only {
    display: none;
  }

  .td_main_header_center .td_nav_list {
    padding-bottom: 20px;
  }

  .td-mobile-only a {
    display: block;
    padding: 10px 15px;
    margin: 5px 0;
    background: var(--accent-color);
    border-radius: 4px;
    text-align: center;
    color: white;
  }

  .td-mobile-only a.td_apply_btn,
  .td-mobile-only a.td_login_btn {
    color: #fff;

  }

}


@media screen and (max-width: 1600px) {
  .td_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 1400px) {
  .td_nav .td_nav_list .td_mega_wrapper {
    width: 1116px !important;
  }

  .td_site_header_full_width .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .td_main_header .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }

  .td_nav .td_nav_list .td_mega_wrapper {
    width: 100% !important;
  }

  .td_site_header_full_width .container {
    padding: 0 15px;
  }

  .td_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }

  .td_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }

  .td_munu_dropdown_toggle span:before,
  .td_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .td_munu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .td_munu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-item-has-children .menu-item-has-children .td_munu_dropdown_toggle {
    padding: 20px 18px;
  }

  .td_site_branding {
    position: relative;
    z-index: 101;
  }

  .td_nav_list_wrap {
    position: fixed;
    width: 100vw;
    left: -100vw;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 100vh;
    padding-top: 90px;
  }

.td_nav_list_wrap.td_active {
  left: 0vw;
  width: 50%;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #f0f0f0;
}
.td_nav .td_nav_list_wrap_in {
  max-height: 100%;
  overflow: auto;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.td_nav .td_nav_list {
  width: 80%;
  padding: 0;
  margin: 0 auto;
  line-height: 1.6em;
  font-family: var(--heading-font);
  border-top: 1px solid #e0e0e0;
}
.td_nav .td_nav_list > li {
  border-bottom: 1px solid #d7d5d5;
  position: relative;
  transition: background 0.3s ease;
}


  .td_nav .td_nav_list ul {
    padding-left: 15px;
    display: none;
  }

  .td_nav .td_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }

  .td_nav .td_nav_list>li>a {
    font-size: 18px;
    line-height: 22px;
  }

  .td_nav .menu-item-has-children {
    position: relative;
  }


  .td_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;

  }

  .td_menu_toggle span,
  .td_menu_toggle span:before,
  .td_menu_toggle span:after {
    width: 100%;
    height: 4px;
    background-color: currentColor;
    display: block;
  }

  .td_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .td_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .td_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .td_site_header.td_style_1 .td_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }

  .td_site_header.td_style_1 .td_main_header_right {
    gap: 15px;
    font-family: var(--heading-font);
  }

  .td_site_header.td_style_1.td_heading_color .td_menu_toggle {
    color: var(--heading-color);
  }

  .td_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .td_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .td_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .td_nav .td_nav_list a {
    position: relative;
  }

  .td_site_header.td_style_1 .td_main_header_in {
    height: 80px;
    padding: 15px;
  }

  .td_site_header .current-menu-item>a:before {
    display: none;
  }

  .td_site_header.td_style_1 .td_main_header_center .td_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .td_site_header.td_style_1 {
    top: 0;
  }

  .td_nav .td_nav_list img {
    display: none;
  }

  .td_mega_wrapper h4 {
    font-size: inherit;
    margin: 0;
    padding: 12px 15px;
    line-height: 16px;
    color: inherit;
  }
}

@media screen and (max-width: 991px) {
  .td_site_header .container {
    max-width: 100%;
  }

  .td_site_header.td_style_1 .td_header_category_wrap {
    display: none;
  }
}

@media screen and (max-width: 575px) {

  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in i,
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in svg {
    display: none;
  }

  .td_site_header.td_style_1 .td_hero_toolbox_wrap .td_btn.td_style_1 {
    display: none;
  }

  .td_header_btns {
    gap: 10px;
  }

  .td_header_search_wrap {
    position: fixed;
    top: 60px;
    left: 14px;
    right: 14px;
  }

  .td_header_search_wrap .td_header_search {
    width: 100%;
  }

  .td_site_header.td_style_1.td_type_3 .td_main_header_right {
    gap: 15px;
  }
}

@media screen and (max-width: 420px) {
  .td_site_header.td_style_1 .td_btn.td_style_1 .td_btn_in {
    padding: 6px 10px;
    gap: 5px;
    font-size: 14px;
  }

  .td_site_header.td_style_1 .td_main_header_right {
    padding-right: 30px;
  }

  .td_site_header.td_style_1 .td_main_header_right {
    gap: 10px;
  }

  .td_circle_btn {
    height: 34px;
    width: 34px;
  }

  .td_hero_icon_btns {
    gap: 7px;
  }

  .td_hero_toolbox li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
  }

  .td_language_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .td_language_wrap .td_header_dropdown_btn span {
    display: none;
  }

  .td_language_wrap .td_header_dropdown_btn img {
    height: 22px;
  }
}

@media screen and (max-width: 370px) {
  .td_header_btns>*:nth-child(2) {
    display: none;
  }

  .td_site_header.td_style_1 .td_hero_text_btn span {
    display: none;
  }

  .td_site_header.td_style_1 .td_hero_text_btn img {
    height: 24px;
  }

  .td_site_header.td_style_1.td_type_1 .td_btn.td_style_1 {
    display: none;
  }

  .td_site_header.td_style_1.td_type_1 .td_main_header_right {
    gap: 0;
  }
}

@media screen and (max-width: 340px) {
  .td_site_header.td_style_1.td_type_2 .td_wishlist_btn {
    display: none;
  }
}



.td_nav_actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.td_apply_btn {
  display: flex;
  align-items: center;
  border: 2px solid var(--white-color);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  height: 45px;
  background-color: var(--accent-color) !important;

}

.td_login_btn {
  display: flex;
  align-items: center;
  border: 2px solid var(--white-color);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  height: 45px;
  background-color: var(--accent-color) !important;

}

.td_nav_actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  text-align: center;
  background-color: transparent;
}



.td_apply_btn:hover,
.td_login_btn:hover {
  border-color: #897DBB;
}


.td_apply_btn:hover {
  background-color: rgb(116, 163, 116);
  color: white;
}

.td_login_btn:hover {
  background-color: #897DBB;
  color: white;
}




/* (----media queries---) */

@media (max-width: 1023px) {
  .td_hamburger_btn {
    display: none;
    margin: 20px;
    padding: 20px;
    font-size: 26px;
    color: var(--accent-color);



  }
}

.td_main_header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;

}


.td_nav_actions {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .td_main_header_right {
    flex-direction: column;
    align-items: flex-start;
  }

  .td_nav_actions {
    display: none;
    flex-direction: column;

  }

  .td_hamburger_btn {
    display: none;
    margin: 20px;
    padding: 20px;


  }

  .td_apply_btn,
  .td_login_btn {
    display: none;
  }
}

@media (max-width: 1024px) and (max-height: 600px) {
  .td_nav_actions {
    position: static;
    margin: 10px;
  }

  .td_hamburger_btn {
    display: none;
    margin: 20px;
    position: relative;

  }
}

/* .................................
.footer of college page............. */

.tbc-footer {
  background: linear-gradient(90deg, #091d5b 20%, #C3D6F3 100%);
  color: #ffffff;
  padding: 50px 0 20px;
  position: relative;
  width: 100%;

}

.footer-school-title,
.contact-title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-school-title:after,
.contact-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

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

.footer-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--border-color);
  font-size: 14px;
}

.footer-list li a {
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

.footer-list li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.contact-info {
  margin-bottom: 25px;
}

.contact-info a,
.contact-info div {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.contact-info a:hover,
.contact-info div:hover {
  color: var(--accent-color);
}

.contact-info i {
  color: var(--white-color);
  width: 20px;
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  color: #ffffff;
  background-color: rgb(165, 167, 169);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #a1a9b3;
  font-size: 13px;
}

.developer-credit {
  color: #a1a9b3;
  font-size: 13px;
}

.developer-credit a {
  color: rgb(78, 92, 132);
  text-decoration: none;
  font-weight: 500;
}

.developer-credit a:hover {
  text-decoration: underline;
}


@media (max-width: 767px) {

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .col-md-6.text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }

  .footer-list li:before {
    font-size: 12px;
  }
}
