:root {
  --primary-color: #100f11;
  --secondary-color: #f6f6f7;
  --text-color: #000;
  --accent-color: #009846;
  /*--accent-color: #1d3c5d;*/
  --white-color: #ffffff;
  --divider-color: #100f1112;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Montserrat", sans-serif;
}

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--accent-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.about-img-1 .reveal img {
  /*height: 300px;*/
  margin-bottom: 20px;
}

.our-services .reveal img {
  height: 230px;
  margin-bottom: 20px;
}

.our-services .reveal.main-image img {
  height: 460px;
  margin-bottom: 20px;
}

.about-us-image.right-img .reveal img {
  height: 220px;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    line-height: 1em;
    color: #000;
    background: #f8ca4d;
    border: none;
    overflow: hidden;
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 45px;
    border-radius: 40px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover {
  background: #000;
  transform: scale(1.05);
  color: var(--white-color);
}

.btn-default::before {
  /*content: '';*/
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: 0;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: 0.4s ease-in-out;
}

.btn-default:hover:before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(1);
}

.btn-default::after {
  /*content: '';*/
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 0;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-default.btn-highlighted {
  background: transparent;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 15px 40px 15px 20px;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
  background: var(--white-color);
}

.btn-default.btn-highlighted::before {
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}

.scroll-down-arrow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    color: rgb(255 255 255 / 41%);
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
  	0%, 100% {
    	transform: translateX(-50%) translateY(0);
  	}
  	50% {
    	transform: translateX(-50%) translateY(10px);
  	}
}

.readmore-btn {
  position: relative;
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  padding: 10px 25px;
  background: var(--accent-color);
  
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
  color: var(--white-color);
}

.readmore-btn:after {
  /*content: '';*/
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  background-image: url(../images/arrow-accent.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

.readmore-btn:hover:after {
  transform: translate(0px, -50%) rotate(45deg);
  filter: brightness(0) invert(1);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0px;
  margin: 0px !important;
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
    /*font-size: 30px;*/
    font-weight: 500;
    line-height: 1.4em;
    color: #202020;
    margin-bottom: 10px;
    font-family: "Caveat", cursive;
}

.section-title p {
    font-family: "Caveat", cursive;
    line-height: 1.2;
    font-style: italic;
    font-weight: 600;
}

.section-title h1 {
  font-size: 40px;
  /*text-transform: capitalize;*/
  margin-bottom: 0;
  cursor: none;
  text-align: left;
}

.section-title h2 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}

.section-title p {
  margin-top: 30px;
  margin-bottom: 0;
}

.section-title p span {
  font-size: 20px;
  font-weight: 600;
}

.section-title-content p {
  margin: 0;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  text-align: left;
  margin-top: 20px;
}

.section-title.dark-section h3,
.section-title.dark-section h2,
.section-title.dark-section h1,
.section-title.dark-section p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.main-header {
  background: #1b3e81;
}

.navbar-brand a {
  color: #fff;
  margin-right: 10px;
}

.main-header .bg-section {
  max-width: 100%;
}

header.main-header .header-sticky {
  top: 0;
  margin: 0px;
  z-index: 100;
  position: relative;
  background: #fff;
  width: calc(100% - 0px);
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-top: none;
  max-width: 1660px;
  margin: 0 auto;
}

.navbar {
  padding: 0px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  /*margin: 0 20px 0 60px;*/
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  padding: 16px 10px !important;
  color: #000;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: #009847;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 0px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: #fff;
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: #009847;
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.header-contact-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-contact-box p {
  margin-bottom: 0px;
}
.header-contact-box p a {
  color: #fff;
  font-size: 15px;
  margin-right: 15px;
}
.header-contact-btn {
  display: flex;
  align-items: center;
}

.header-contact-box .header-booking-btn.nbtn a {
  color: #000;
  font-size: 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #000;
}

.header-contact-box .header-booking-btn.nbtn a:hover {
  color: #fff;
  background: #000;
}

.header-contact-btn .icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.header-contact-btn .icon-box img {
  width: 100%;
  max-width: 25px;
}

.header-contact-now-content {
  width: calc(100% - 65px);
}

.header-contact-now-content h3 {
  font-size: 20px;
}

.header-contact-now-content h3 a {
  color: inherit;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 0px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: var(--primary-color);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: var(--primary-color);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary-color);
}

.hero {
  background-color: var(--secondary-color);
}

.banner-left-content {
    position: absolute;
    left: 20px;
    top: 110%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 120px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 4px;
    white-space: nowrap;
}

.banner-right-content {
    position: absolute;
    right: 20px;
    top: 110%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 120px;
    font-weight: 600;
    color: rgb(255 255 255 / 19%);
    letter-spacing: 4px;
    white-space: nowrap;
}

.hero-section {
  width: 100% !important;
  position: relative;
  background-image: url("../images/header.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0 150px;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background: var(--primary-color);*/
  opacity: 70%;
  z-index: 1;
  background-image: linear-gradient(to left, #14377136, #1c4281);
}

.hero-section.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-section.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero-section.hero-slider-layout .hero-slide {
  position: relative;
  background: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 150px 0 00px;
  /*height: 100vh;*/
  height: 80vh;
}

.hero-section.hero-slider-layout .hero-slide.slide-2 {
  background: url("../images/hero-bg-2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-section.hero-slider-layout .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 70%;
  z-index: 1;
}

.hero-section.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero-section.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 10px;
  text-align: right;
  z-index: 2;
  color: #fff;
  right: 0;
  padding-right: 50px;
}

.top-header {
  background-color: #1b3e81; 
  border-bottom: 1px solid #ddd;
}

.topbar {
  background-color: #1b3e75;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.top-links {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

.top-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.toggle-button {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile-links {
  display: none;
  flex-direction: column;
  gap: 8px;
  background-color: #163766;
  padding: 10px 15px;
}

@media (max-width: 768px) {
  .top-links {
    display: none;
  }

  .toggle-button {
    display: block;
    color: #fff;
  }

  .mobile-links.active {
    display: flex;
  }

  .topbar {
    flex-direction: row;
  }
}

.bottom-header {
  background-color: #ffffff; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-nav > li {
  margin: 0 10px;
}

.navbar-nav .dropdown-menu {
  margin-top: 0;
}

.hero-section.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--dark-divider-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-section.hero-slider-layout
  .hero-pagination
  .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-content {
  position: relative;
  /*max-width: 980px;*/
  text-align: left;
  margin: 0 auto;
  z-index: 2;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 60px;
  margin-top: 15px;
}
.hero-content .section-title p {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}

.hero-btn {
  /*display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 20px 40px;*/
}

.hero-cta-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 50px;
  background-color: var(--white-color);
  padding: 60px 0px 0px 0px;
  /*margin-top: -230px;*/
  z-index: 1;
}

.hero-intro-video-image,
.hero-cta-contetnt {
  width: calc(50% - 25px);
}

.hero-intro-video-image {
  position: relative;
}

.hero-intro-video-image h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.hero-intro-video-image figure {
  display: block;
}

.hero-intro-video-image img {
  width: 100%;
  aspect-ratio: 1 / 0.57;
  object-fit: cover;
  filter: brightness(50%);
}

.video-play-button.btn-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-play-button a {
  position: relative;
  background: var(--accent-color);
  background-size: 200% auto;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  cursor: none;
}

.video-play-button a:hover {
  background: var(--white-color);
}

.video-play-button a:before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 40px solid var(--white-color);
  opacity: 40%;
  backdrop-filter: blur(200px);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 40px solid var(--white-color);
  opacity: 40%;
  backdrop-filter: blur(200px);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button a i {
  font-size: 20px;
  color: var(--white-color);
  margin-left: 3px;
  transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i {
  color: var(--accent-color);
}

.hero-cta-item {
  display: flex;
  margin-bottom: 40px;
}

.hero-cta-item:last-child {
  margin-bottom: 0;
}

.hero-cta-item .icon-box {
  margin-right: 30px;
}

.hero-cta-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.hero-cta-item-content {
  width: calc(100% - 0px);
}

.hero-cta-item-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero-cta-item-content p {
  /*margin: 0;*/
}

.hero-client-slider {
  padding: 0px 0 40px;
}

.hero-client-slider .company-logo {
  text-align: center;
}

.hero-client-slider .company-logo img {
  width: 100%;
  height: auto;
}

.about-us {
  padding: 60px 0;
}

.about-us-image {
  margin-right: 0px;
}

.about-img-1 figure,
.about-img-2 figure {
  display: block;
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  object-fit: cover;
}

.about-img-1 img {
  aspect-ratio: 1 / 0.89;
}

.home .about-img-1 img {
      aspect-ratio: 1 / 0.50;
    border-radius: 25px;
}
.about-img-2 {
  max-width: 315px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 7px solid var(--white-color);
  z-index: 1;
}

.about-img-2 img {
  aspect-ratio: 1 / 1.238;
}

.about-contact-box {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.about-contact-box:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 70px);
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.about-contact-box:hover:after {
  right: 0;
}

.about-contact-box .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contact-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}

.about-contact-content {
  position: relative;
  width: calc(100% - 70px);
  padding: 10px 45px 10px 20px;
  background: var(--secondary-color);
}

.about-contact-content p,
.about-contact-content h3 {
  position: relative;
  z-index: 1;
}

.about-contact-content p {
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.about-contact-box:hover .about-contact-content p {
  color: var(--primary-color);
}

.about-contact-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.about-contact-content h3 a {
  color: inherit;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.mission-vision-item {
  width: calc(50% - 15px);
}

.mission-vision-item h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.mission-vision-item p {
  margin: 0;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 50px;
}

.company-experience-box {
  width: calc(47% - 25px);
}

.company-experience-box {
  background-color: var(--accent-color);
  padding: 30px 45px;
  text-align: center;
}

.company-experience-box h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.company-experience-box h2 {
  font-size: 48px;
  margin-bottom: 5px;
}

.company-experience-box p {
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
}

.about-us-footer-content {
  width: calc(53% - 25px);
}

.our-services {
  position: relative;
  background: #fff;
  padding: 60px 0;
}

@keyframes servicebgmove {
  from {
    background-position: right bottom;
  }
  to {
    background-position: right 100vw bottom;
  }
}

.our-services .container {
  position: relative;
  z-index: 1;
}

.service-item {
  position: relative;
}

.service-image a,
.service-image figure {
  display: block;
  cursor: none;
}

.service-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    179.58deg,
    rgba(16, 15, 17, 0) 57.38%,
    rgba(16, 15, 17, 0.8) 83.52%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-image img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-body {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-item:hover .service-body {
  transform: translateY(0);
}

.service-item-content .icon-box {
  margin-bottom: 15px;
}

.service-item-content .icon-box img {
  width: 100%;
  max-width: 40px;
}

.service-title h3 {
  font-size: 24px;
  color: var(--white-color);
}

.service-title h3 a {
  color: inherit;
}

.service-readmore-btn {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-readmore-btn {
  visibility: visible;
  opacity: 1;
  margin-top: 15px;
}

.services-pagination {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.services-pagination .swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  background: var(--white-color);
  opacity: 1;
  margin: 0 3px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
}

.services-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.section-footer-text {
  margin-top: 50px;
  text-align: center;
}

.section-footer-text p {
  margin-bottom: 0;
}

.section-footer-text p a {
  color: var(--accent-color);
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.why-choose-us {
  padding: 60px 0 60px;
  background: url(../images/about-us-back.webp) no-repeat;
  background-position: top center;
  background-size: cover;
}

.why-choose-item {
  display: flex;
  margin-bottom: 20px;
}

.why-choose-item:last-child {
  margin-bottom: 0;
}

.why-choose-item .icon-box {
  margin-right: 30px;
}

.why-choose-item .icon-box img {
  max-width: 50px;
}

.why-choose-item-content {
  width: calc(100% - 80px);
}

.why-choose-item-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.why-choose-item-content p {
  margin: 0;
}

.why-choose-image img {
  width: 100%;
  aspect-ratio: 1 / 1.41;
  object-fit: cover;
}

.what-we-do {
  background: linear-gradient(
    180deg,
    var(--primary-color) 75%,
    transparent 25%
  );
  padding: 60px 0 50px;
}

.what-we-do-content {
  margin-right: 20px;
}

.what-we-do-list {
  padding: 0px;
  background: var(--white-color);
  /*box-shadow: 0px 20px 50px 0px #0000000d;*/
}

.what-we-do-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-we-do-list ul li {
  color: var(--primary-color);
  line-height: 1.5em;
  text-transform: capitalize;
  background: url("../images/icon-check.svg") no-repeat;
  background-position: left top;
  background-size: 24px auto;
  border-bottom: 1px solid var(--divider-color);
  padding: 0 0 10px 40px;
  margin-bottom: 10px;
}

.what-we-do-list ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.what-we-do-img figure {
  display: block;
}

.what-we-do-img img {
  width: 100%;
  aspect-ratio: 1 / 0.775;
  object-fit: cover;
}

.what-we-do-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  margin-top: 100px;
}

.what-we-do-info h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.our-courses {
  padding: 50px 0 70px;
}

.our-courses h5 {
  padding-top: 25px;
  margin-bottom: 0em;
}

.our-courses h5 a {
  color: #000;
}

.our-courses h5 a:hover {
  color: #22c55e;
}

.course-item {
  position: relative;
  height: calc(100% - 0px);
  margin-bottom: 20px;
  overflow: hidden;
}

.course-image a,
.course-image figure {
  display: block;
  cursor: none;
}

.course-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: linear-gradient(
    179.58deg,
    rgba(16, 15, 17, 0) 57.38%,
    rgba(16, 15, 17, 0.8) 83.52%
  );*/
  width: 100%;
  height: 100%;
  z-index: 1;
}

.course-image img {
  width: 100%;
  /*aspect-ratio: 1 / 1.18;*/
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.course-item:hover .course-image img {
  transform: scale(1.1);
}

.course-body {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  z-index: 1;
}

.course-item-content h3 {
  font-size: 24px;
  color: var(--white-color);
}

.course-item-content h3 a {
  color: inherit;
}

.course-readmore-btn {
  margin-top: 20px;
}

.how-it-work {
  background: url("../images/how-it-work-bg.png"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.how-it-work-image figure {
  display: block;
}

.how-it-work-image img {
  width: 100%;
  aspect-ratio: 1 / 0.623;
  object-fit: cover;
}

.how-it-work-steps {
  margin-left: 0px;
}

.how-work-step-item {
  position: relative;
  display: flex;
  margin-bottom: 30px;
}

.how-work-step-item:last-child {
  margin-bottom: 0;
}

.how-work-step-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(30px, 60px);
  border-left: 3px dashed var(--divider-color);
  height: 100%;
  z-index: 0;
}

.how-work-step-item:last-child:after {
  display: none;
}

.how-work-step-no {
  position: relative;
  background-color: var(--accent-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.peo .how-work-step-no {
  width: 120px;
  height: 50px;
}

.how-work-step-item.peo:after {
  left: 25px;
}

.how-work-step-no:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.how-work-step-item:hover .how-work-step-no:before {
  transform: scale(1);
}

.how-work-step-no h2 {
  position: relative;
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  color: #fff !important;
  margin-bottom: 0px !important;
}

.how-work-step-item:hover .how-work-step-no h2 {
  color: var(--accent-color);
}

.how-work-step-content {
  width: calc(100% - 90px);
}

.how-work-step-content a:hover {
  color: #1d3c5d;
}

.how-work-step-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  /*margin-bottom: 15px;*/
}

.how-work-step-content p {
  margin: 0;
}

.our-pricing {
  padding: 60px 0;
}

.pricing-item {
  background: var(--secondary-color);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.pricig-body {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.pricig-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricig-body ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.pricig-body ul li:last-child {
  margin-bottom: 0;
}

.pricig-body ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icon-check.svg") no-repeat;
  background-position: left top;
  background-size: cover;
  height: 22px;
  width: 22px;
}

.pricing-footer {
  margin-bottom: 40px;
}

.pricing-price {
  margin-bottom: 15px;
}

.pricing-price h2 {
  font-size: 48px;
  color: var(--accent-color);
}

.pricing-price h2 sub {
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  bottom: 0;
}

.pricing-content p {
  margin-bottom: 0;
}

.pricing-btn .btn-default {
  display: block;
  text-align: center;
  padding: 16px 20px;
}

.pricing-btn .btn-default::before {
  display: none;
}

.pricing-item.highlighted-box {
  background-color: var(--accent-color);
}

.pricing-item.highlighted-box .pricig-body ul li,
.pricing-item.highlighted-box .pricing-price h2,
.pricing-item.highlighted-box .pricing-price h2 sub,
.pricing-item.highlighted-box .pricing-content p,
.pricing-item.highlighted-box .pricing-btn a:hover {
  color: var(--primary-color);
}

.pricing-item.highlighted-box .pricig-body ul li::before {
  filter: brightness(0) invert(0);
}

.pricing-item.highlighted-box .pricing-btn .btn-default {
  background: var(--primary-color);
  color: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-btn .btn-default::after {
  background: var(--white-color);
}

.pricing-benefit-list {
  margin-top: 30px;
}

.pricing-benefit-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 60px;
}

.pricing-benefit-list ul li {
  display: flex;
  align-items: center;
}

.pricing-benefit-list ul li img {
  max-width: 20px;
  margin-right: 15px;
}

.book-appointment {
  position: relative;
  background: url("../images/book-appointment-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.book-appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 70%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.book-appointment .container {
  position: relative;
  z-index: 1;
}

.book-appointment-content {
  margin-right: 20px;
}

.book-appointment-content .section-title h3,
.book-appointment-content .section-title h2 {
  color: var(--white-color);
}

.appointment-info-list {
  display: flex;
  gap: 40px 80px;
  flex-wrap: wrap;
}

.appointment-info-item {
  width: calc(50% - 40px);
}

.appointment-info-item.location-info-item {
  width: 100%;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 40px;
}

.appointment-info-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.appointment-info-title img {
  width: 100%;
  max-width: 24px;
  margin-right: 15px;
}

.appointment-info-title h3 {
  font-size: 24px;
  color: var(--white-color);
}

.appointment-info-content p {
  color: var(--white-color);
  margin-bottom: 2px;
}

.appointment-info-content p:last-child {
  margin-bottom: 0;
}

.appointment-info-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.appointment-info-content p a:hover {
  color: var(--accent-color);
}

.book-appointment-form {
  background: var(--white-color);
  padding: 50px;
}

.book-appointment-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 0;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.book-appointment-form .form-control.form-select {
  padding: 17px 35px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
  font-weight: 500;
  color: var(--primary-color);
}

.book-appointment-form .form-control::placeholder {
  color: var(--text-color);
}

.our-testimonials {
  padding: 60px 0 30px;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  border: 1px solid var(--divider-color);
  padding: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: var(--accent-color);
}

.testimonial-rating-conuter h3 {
  font-size: 24px;
}

.testimonial-content {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.testimonial-content p {
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  max-width: 60px;
}

.author-content {
  width: calc(100% - 75px);
}

.author-content h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.testimonial-pagination {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.testimonial-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 3px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--accent-color);
}

.our-faqs {
  background: url(../images/driving-excellence-bg.png), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--accent-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 24px 60px 20px 30px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  background: transparent;
  border-bottom: none;
  padding: 24px 60px 24px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.accordion-button.collapsed {
    color: #000 !important;
}

.accordion-body li {
    color: #fff;
    margin-bottom: 15px;
    line-height: 25px;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  color: #000;
  transform: translateY(-50%) rotate(-180deg);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: var(--accent-color);
  padding: 20px 30px 24px;
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.faq-image {
  position: relative;
  margin-left: 20px;
}

.faq-image figure {
  display: block;
}

.faq-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 15, 17, 0) 4.85%,
    rgba(16, 15, 17, 0.9) 77.07%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.865;
  object-fit: cover;
}

.faq-image .appointment-info-list {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
}

.faq-image .appointment-info-list .appointment-info-item {
  position: relative;
}

.faq-image .appointment-info-list .appointment-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
  z-index: 1;
}

.faq-image
  .appointment-info-list
  .appointment-info-item:nth-child(2n + 2)::before,
.faq-image .appointment-info-list .appointment-info-item:last-child::before {
  display: none;
}

.our-blog {
  padding: 60px 0 70px;
}

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 20px;
}

.post-featured-image a {
  cursor: none;
  display: block;
  overflow: hidden;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  aspect-ratio: 1 / 0.873;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-content {
  margin-bottom: 20px;
}

.post-item-content h3 {
  font-size: 24px;
  line-height: 1.4em;
}

.post-item-content h3 a {
  display: inline-block;
  color: inherit;
}

.post-item-btn .readmore-btn:hover {
  color: var(--primary-color);
}

.post-item-btn .readmore-btn:hover:after {
  filter: brightness(0) invert(0);
}

.main-footer {
  background: #1c4281;
  padding: 30px 0 0;
}

.footer-logo {
  /*margin-bottom: 20px;*/
}

.top-call-section {
  background-color: #1c4281;
  color: #fff;
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #4f73b6;
  margin-bottom: 30px;
}

.call-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 84%;
}

.call-left .icon {
  background-color: #fff;
  color: #1b3e75;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.call-left .text {
  font-size: 16px;
  font-weight: 500;
}

.call-right {
  /*text-align: right;*/
  font-size: 14px;
  /*flex: 1 1 200px;*/
}

.call-right span {
  display: block;
  font-size: 13px;
}

.call-right strong {
  font-size: 18px;
}

@media (max-width: 768px) {
  .top-call-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .call-left,
  .call-right {
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
}

.about-footer-content {
  margin-bottom: 30px;
}

.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-contact-list {
  display: inline-block;
  background-color: var(--accent-color);
  padding: 15px;
}

.footer-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list ul li {
  margin-bottom: 15px;
}

.footer-contact-list ul li:last-child {
  margin-bottom: 0;
}

.footer-contact-list ul li a {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li a:hover {
  color: var(--white-color);
}

.footer-contact-list ul li a img {
  width: 100%;
  max-width: 20px;
  margin-right: 12px;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li a:hover img {
  filter: brightness(0) invert(1);
}

.footer-link-box {
  margin-left: 20px;
}

.footer-links {
  padding-left: 0px;
}

.footer-links::before {
  content: "✦";
  margin-right: 6px;
  color: #fff;
  /*content: '';*/
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.footer-links:nth-child(3n + 3)::before,
.footer-links:last-child::before {
  display: none;
}

.footer-links h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.7em;
  margin-bottom: 5px;
  font-size: 16px;
}

.footer-link-box i {
  padding-right: 5px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
  border: 1px solid oklch(70.7% 0.022 261.325);
  padding: 8px;
  border-radius: 50%;
}

.footer-social a:hover {
  color: #fdd835;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 40px;
  width: 45px;
  text-align: center;
  right: 10px;
  z-index: 999;
  font-size: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  outline: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

#backToTop:hover {
  background-color: #0056b3;
}

.footer-bottom {
  color: #fff;
  font-size: 16px;
}

.footer-bottom a {
  color: #f17721;
}

.social-icons {
  /*position: fixed;
    top: 20%;
    left: 0px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #000;
    padding: 10px 10px 10px 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;*/
}

.social-icons a {
  /*background: #333;*/
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  font-size: 16px;
}

.social-icons a:hover {
  background: #009541;
}

.footer-links ul li:before {
  content: "✦";
  margin-right: 6px;
  color: #fff;
}

.main-footer p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-contact-info,
.footer-newsletter-form {
  width: calc(39% - 53.33px);
}

.footer-info-item {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.footer-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-info-item .icon-box {
  margin-right: 10px;
}

.footer-info-item .icon-box img {
  width: 100%;
  max-width: 24px;
}

.footer-info-content {
  width: calc(100% - 34px);
}

.footer-info-content p {
  color: var(--white-color);
  margin-bottom: 2px;
}

.footer-info-content p:last-child {
  margin-bottom: 0;
}

.footer-newsletter-form .form-group .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 18px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--text-color);
}

.footer-newsletter-form .form-group .btn-default {
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  margin-top: 20px;
}

.footer-newsletter-form .form-group .btn-default:hover {
  color: var(--primary-color);
}

.footer-newsletter-form .form-group .btn-default::after {
  background: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default::before {
  display: none;
}

.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 30px 0 20px;
  text-align: center;
  margin-top: 30px;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-social-links {
  text-align: right;
}

.footer-social-links ul {
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a {
  background: var(--white-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
  background: var(--accent-color);
}

.footer-social-links ul li a i {
  font-size: 22px;
  color: inherit;
}

.page-header {
  background-color: var(--secondary-color);
  padding-bottom: 0px;
}

.page-header-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 115px 0;
}

.page-header-section:before {
  /*content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 70%;*/
}

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 50px;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 15px;
  cursor: none;
}

.page-header-box h1 span {
  color: var(--accent-color);
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
}

.page-header-section {
  background: linear-gradient(90deg, #25457a, #217c79);
  padding: 80px 0;
  background-size: cover;
}

.header-content-box {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-content-box h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.header-content-box p {
  font-size: 16px;
  color: #1e3a8a;
  margin: 0;
}

.section-line {
  display: block;
  width: 40px;
  height: 4px;
  background: #22c55e;
  margin-bottom: 15px;
}

.header-image {
  max-width: 90%;
  animation: float 5s ease-in-out infinite;
}


@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}


@media (max-width: 991px) {
  .header-content-box {
    text-align: center;
    margin-bottom: 20px;
  }
  .section-line {
    display: none;
  }
  .header-content-box h2 {
    font-size: 20px;
  }
}

.bg-section {
  background-color: #1b3e75;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 16px;
  padding: 10px 15px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #009741;
}

.navbar-brand img {
  height: 80px;
  padding: 3px 0px;
}

.navbar-toggler {
  border: none;
  color: #000;
  font-size: 24px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
  }
}

.driving-excellence {
  position: relative;
  padding: 60px 0;
  background: url("../images/driving-excellence-bg.png"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto;
}

.excellence-counter-item {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.excellence-counter-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.excellence-body-counter {
  width: 20%;
}

.excellence-body-counter h2 {
  font-size: 48px;
  text-transform: uppercase;
}

.excellence-counter-content {
  width: 80%;
}

.excellence-counter-content h3 {
  font-size: 24px;
  line-height: 1.4em;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.excellence-counter-content p {
  margin: 0;
}

.driving-excellence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 30px;
}

.excellence-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--white-color);
  padding: 30px;
  overflow: hidden;
}

.excellence-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

.excellence-item:hover:after {
  top: auto;
  height: 100%;
}

.excellence-item .icon-box {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.excellence-item .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.excellence-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.excellence-item-content {
  position: relative;
  z-index: 1;
}

.excellence-item-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.excellence-item-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.excellence-item:hover .excellence-item-content p {
  color: var(--primary-color);
}

.student-experience {
  padding: 50px 0 100px;
}

.student-experience-image {
  position: relative;
  background: url("../images/student-experience-image-bg-2.svg") no-repeat;
  background-position: top right;
  background-size: 80px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-right: 20px;
  align-items: end;
}

.student-experience-image:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 58px;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%);
  background: url("../images/student-experience-image-bg-1.svg") no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: 0;
}

.student-experience-img-box-1 {
  position: relative;
  width: calc(45% - 15px);
  padding-bottom: 40px;
  z-index: 1;
}

.student-experience-img-box-2 {
  position: relative;
  width: calc(55% - 15px);
  z-index: 1;
}

.student-experience-img-1 figure,
.student-experience-img-2 figure,
.student-experience-img-3 figure,
.student-experience-img-4 figure {
  display: block;
}

.student-experience-img-1 img,
.student-experience-img-2 img,
.student-experience-img-3 img,
.student-experience-img-4 img {
  width: 100%;
  object-fit: cover;
}

.student-experience-img-1 {
  margin-bottom: 30px;
}

.student-experience-img-1 img {
  aspect-ratio: 1 / 1.475;
}

.student-experience-img-2 img {
  aspect-ratio: 1 / 1.17;
}

.student-experience-img-3 {
  margin-bottom: 30px;
}

.student-experience-img-3 img {
  aspect-ratio: 1 / 0.87;
}

.student-experience-img-4 img {
  aspect-ratio: 1 / 1.277;
}

.student-experience-body {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.student-experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.student-experience-item:last-child {
  margin-bottom: 0;
}

.student-experience-item .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.student-experience-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.student-experience-item:hover .icon-box:before {
  transform: scale(1);
}

.student-experience-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 50px;
  z-index: 1;
}

.student-experience-item-content {
  width: calc(100% - 110px);
}

.student-experience-item-content h3 {
  font-size: 24px;
  line-height: 1.4em;
  text-transform: capitalize;
}

.student-experience-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}

.student-experience-rating h3 {
  color: var(--accent-color);
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.student-experience-rating p {
  text-transform: capitalize;
  margin: 0;
}

.our-team {
  padding: 60px 0 70px;
}

.team-item {
  background: var(--secondary-color);
  height: calc(100% - 40px);
  margin-bottom: 0px;
}

.team-image a {
  display: block;
  cursor: none;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  /*aspect-ratio: 1 / 1.126;*/
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
  transform: scale(1.1);
}

.team-body {
  padding: 20px;
}

.team-content {
  margin-bottom: 20px;
}

.team-content h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.team-content h3 a {
  color: inherit;
}

.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

.team-social-icon ul li a {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
  color: inherit;
  font-size: 16px;
}

.team-social-icon ul li a:hover {
  color: #fff;
  background: var(--accent-color);
}

.our-core-value {
  position: relative;
  padding: 60px 0;
  background: url("../images/driving-excellence-bg.png"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.core-value-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.core-value-content {
  width: calc(55% - 15px);
}

.core-value-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.core-value-content-box {
  width: calc(53% - 15px);
}

.core-value-item {
  margin-bottom: 40px;
}

.core-value-item .icon-box {
  margin-bottom: 20px;
}

.core-value-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.core-value-item-content h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.core-value-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.core-value-list ul li {
  background: url("../images/icon-check.svg") no-repeat;
  background-position: left top;
  background-size: 22px auto;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.core-value-list ul li:last-child {
  margin-bottom: 0;
}

.core-value-btn {
  margin-top: 40px;
}

.core-value-body-img {
  width: calc(47% - 15px);
}

.core-value-body-img figure {
  display: block;
}

.core-value-body-img img {
  width: 100%;
  aspect-ratio: 1 / 1.21;
  object-fit: cover;
}

.core-value-image {
  position: relative;
  width: calc(45% - 15px);
  padding-bottom: 45px;
}

.core-value-img figure {
  display: block;
}

.core-value-img img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
}

.footer-contact-list.core-value-contact-info {
  position: absolute;
  bottom: 0;
  left: 55%;
  width: max-content;
  transform: translateX(-50%);
  border: 3px solid var(--secondary-color);
  animation: contactbox 3s infinite linear alternate;
  z-index: 1;
}

@keyframes contactbox {
  50% {
    left: 45%;
  }
}

.our-faqs.about-our-faqs {
  background: transparent;
}

.page-services {
  padding: 60px 0 70px;
}

.page-services .service-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-service-single {
  padding: 60px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}

.page-single-category-list {
  border: 1px solid var(--divider-color);
  margin-bottom: 60px;
}

.page-single-category-list h3 {
  font-size: 24px;
  color: var(--white-color);
  text-transform: uppercase;
  background: var(--accent-color);
  padding: 18px 30px;
}

.page-single-category-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}

.page-single-category-list ul li {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.page-single-category-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.page-single-category-list ul li a {
  position: relative;
  display: block;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--text-color);
  padding-right: 30px;
  transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li:hover a {
  color: var(--primary-color);
}

.page-single-category-list ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/arrow-accent.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 14px;
  height: 14px;
  transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(0);
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/sidebar-cta-bg.jpg"), no-repeat;
  background-size: cover;
  padding: 40px 30px;
}

.sidebar-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.sidebar-cta-logo {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 173px;
}

.cta-content {
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.cta-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.cta-contact-buttons {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 1;
}

.cta-contact-buttons .btn-default:hover {
  color: var(--primary-color);
}

.cta-contact-buttons .btn-default::after {
  background: var(--white-color);
}

.cta-contact-buttons .btn-default:hover:before {
  filter: none;
}

.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.cta-contact-btn img {
  width: 100%;
  max-width: 20px;
  margin-right: 5px;
}

.cta-contact-btn:hover {
  color: var(--accent-color);
}

.service-single-slider {
  margin-bottom: 40px;
}

.service-single-slider .swiper-slide figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 66.79%,
    rgba(16, 15, 17, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-single-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
}

.service-single-slider .service-pagination {
  position: absolute;
  bottom: 30px;
  text-align: center;
  z-index: 1;
}

.service-single-slider .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: var(--white-color);
  opacity: 1;
  margin: 0 3px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
}

.service-single-slider .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--accent-color);
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-entry h2 span {
  color: var(--accent-color);
}

.service-entry h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-entry ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-entry ul li {
  background: url("../images/icon-check.svg") no-repeat;
  background-position: left top 2px;
  background-size: 22px auto;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.service-entry ul li:last-child {
  margin-bottom: 0;
}

.service-expert-box,
.service-technique-box {
  margin-top: 60px;
}

.service-expert-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-expert-item {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.service-expert-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-expert-content,
.service-expert-image {
  width: calc(50% - 15px);
}

.service-expert-content {
  background: var(--accent-color);
  padding: 40px;
}

.service-expert-content .icon-box {
  margin-bottom: 70px;
}

.service-expert-content .icon-box img {
  width: 100%;
  max-width: 60px;
}

.service-expert-item-content p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.service-expert-image figure {
  display: block;
  height: 100%;
}

.service-expert-image img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.service-technique-image {
  margin-top: 40px;
}

.service-technique-image figure {
  display: block;
}

.service-technique-image img {
  width: 100%;
  aspect-ratio: 1 / 0.346;
  object-fit: cover;
}

.service-technique-list-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 40px;
}

.service-technique-list-item {
  width: calc(50% - 15px);
}

.page-blog {
  padding: 60px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 0px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.page-single-post {
  padding: 60px 0;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 0.417em;
}

.post-entry h1 {
  font-size: 80px;
}

.post-entry h2 {
  font-size: 48px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--accent-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 50px;
  border-radius: 0px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-family: var(--accent-font);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 0px;
  padding: 11px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 0px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--primary-color);
  color: var(--white-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

.page-courses {
  padding: 60px 0 70px;
}

.page-course-single {
  padding: 60px 0 0 0;
}

.course-category-list {
  margin-bottom: 60px;
}

.course-category-list h3 {
  font-size: 24px;
  color: var(--white-color);
  text-transform: uppercase;
  background: var(--accent-color);
  padding: 18px 30px;
}

.course-category-list ul {
  background: var(--secondary-color);
  margin: 0;
  padding: 30px;
  list-style: none;
}

.course-category-list ul li {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.course-category-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-category-list ul li span {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  width: 52%;
}

.course-featured-image {
  margin-bottom: 40px;
}

.course-featured-image figure {
  display: block;
}

.course-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
}

.course-entry {
  margin-bottom: 60px;
}

.course-entry p {
  margin-bottom: 20px;
}

.course-entry p:last-child {
  margin-bottom: 0;
}

.course-entry h2 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.course-entry h2 span {
  color: var(--accent-color);
}

.course-entry ul {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.course-entry ul li {
  width: calc(50% - 15px);
  background: url("../images/icon-check.svg") no-repeat;
  background-position: left top 2px;
  background-size: 22px auto;
  line-height: 1.5em;
  padding-left: 30px;
}

.course-confidence-box,
.course-navigate-box {
  margin-top: 60px;
}

.course-confidence-box ul {
  margin-top: 40px;
}

.course-navigate-info {
  background: var(--secondary-color);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  margin-top: 40px;
}

.course-navigate-info-item {
  width: calc(25% - 20px);
}

.course-navigate-info-item .icon-box {
  margin-bottom: 30px;
}

.course-navigate-info-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.course-navigate-item-content h3 {
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.course-navigate-item-content h3 b {
  font-family: var(--accent-font);
  font-size: 24px;
  font-weight: 700;
  margin-right: 5px;
}

.course-navigate-video-image {
  position: relative;
  width: calc(50% - 20px);
}

.course-navigate-image figure {
  display: block;
}

.course-navigate-image img {
  width: 100%;
  aspect-ratio: 1 / 0.511;
  object-fit: cover;
  filter: brightness(60%);
}

.page-team {
  padding: 0px 0 60px;
}

.page-team-single {
  padding: 60px 0;
}

.team-about-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
  margin-bottom: 0px;
}

.team-single-image {
  width: calc(50% - 30px);
}

.team-single-image figure {
  display: block;
}

.team-single-image img {
  width: 100%;
  aspect-ratio: 1 / 1.01;
  object-fit: cover;
}

.team-about-content {
  width: calc(50% - 30px);
}

.team-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.team-contact-box {
  width: calc(50% - 15px);
  display: flex;
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  padding: 30px 20px;
  box-shadow: 0px 20px 50px 0px #0000000d;
}

.team-contact-box .icon-box {
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.team-contact-box .icon-box img {
  width: 100%;
  max-width: 24px;
}

.team-contact-content {
  width: calc(100% - 55px);
}

.team-contact-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-contact-content p {
  margin: 0;
}

.team-about-content .team-social-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 10px;
  margin-bottom: 0px;
}

.team-social-icon h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.team-emergency-box {
  background: var(--accent-color);
  padding: 20px;
}

.team-emergency-box ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.team-emergency-box ul li {
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.team-emergency-box ul li a {
  display: block;
  color: inherit;
}

.team-emergency-box ul li img {
  max-width: 24px;
  margin-right: 10px;
}

.team-education-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.team-education-qualification,
.team-contact-form {
  width: calc(50% - 30px);
}

.team-education-qualification .section-title {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.team-qualification-item {
  display: flex;
  margin-bottom: 40px;
}

.team-qualification-item:last-child {
  margin-bottom: 0;
}

.team-qualification-item .icon-box {
  background: var(--accent-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.team-qualification-item .icon-box img {
  width: 100%;
  max-width: 30px;
}

.team-qualification-content {
  width: calc(100% - 90px);
}

.team-qualification-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.team-qualification-content p {
  margin: 0;
}

.page-pricing {
  padding: 60px 0;
}

.page-testimonials {
  padding: 60px 0 70px;
}

.page-testimonials .testimonial-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery {
  padding: 60px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
}

.page-video-gallery {
  padding: 60px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
}

.page-faqs {
  padding: 60px 0;
}

.page-faqs-catagery .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

.page-contact-us {
  padding: 60px 0;
}

.contact-us-box {
  display: flex;
  flex-wrap: wrap;
}

.contact-us-content,
.contact-us-form {
  width: 50%;
}

.contact-us-content {
  position: relative;
  background: url("../images/facility-6.webp") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px;
}

.contact-us-content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background: linear-gradient(
    270.39deg,
    rgba(16, 15, 17, 0) 0.34%,
    #100f11 99.66%
  );*/
  z-index: 0;
}

.contact-info-item {
  position: relative;
  display: flex;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
  z-index: 1;
}

.contact-info-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  transform: scale(0);
  height: 100%;
  width: 100%;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.contact-info-content {
  width: calc(100% - 80px);
}

.contact-info-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-info-content h3 {
  color: var(--accent-color);
  font-size: 24px;
}

.contact-info-content h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-info-content h3 a:hover {
  color: var(--white-color);
}

.contact-social-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px 20px;
  z-index: 1;
}

.contact-social-list h3 {
  color: var(--accent-color);
  font-size: 24px;
  text-transform: capitalize;
}

.contact-social-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.contact-social-list ul li a {
  background: var(--white-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.contact-social-list ul li a i {
  font-size: 24px;
  color: inherit;
}

.contact-us-form {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0px 20px 50px 0px #0000000d;
  padding: 50px;
}

.contact-us-form .section-title p {
  margin-top: 20px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  background-color: var(--white-color);
  border: 1px solid #100f111f;
  border-radius: 5px;
  padding: 15px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .btn-default {
  color: #fff;
  background: #22c55e;
  padding: 15px 55px;
}

.contact-form .btn-default:hover {
  background: #000;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.contact-form p {
    margin-bottom: 0.4em;
}

.contact-form select {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    border-radius: 5px;
    padding: 15px 20px;
    box-shadow: none;
    outline: none;
    width: 100%;
    border: 1px solid #100f111f;
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 800px;
}

.page-book-appointment {
  padding: 60px 0;
}

.page-book-appointment .book-appointment-form {
  border: 1px solid var(--divider-color);
  background-color: var(--white-color);
  box-shadow: 0px 20px 50px 0px #0000000d;
}

.page-appointment-content .appointment-info-title h3 {
  color: var(--primary-color);
}

.page-appointment-content .appointment-info-content p {
  color: var(--text-color);
}

.page-appointment-content .appointment-info-item.location-info-item {
  border-color: var(--divider-color);
}

.error-page {
  padding: 60px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 60%;
}

.error-page-content {
  text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title {
  margin-bottom: 20px;
}

/************* CUSTOM CSS *****************/
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h4 {
  margin: 0;
  font-weight: bold;
}

.swiper-button {
  background: #eee;
  border-radius: 50%;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
}

.swiper-button i {
  color: #333;
}

.event-card,
.announcement-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
}

.announce-swiper {
  border-radius: 10px;
  border: 1px solid #d8d7d7;
}

.event-card img {
  width: 32%;
  object-fit: cover;
}

.event-info {
  padding: 15px;
  flex: 1;
}

.event-info h5 {
  font-weight: bold;
  color: #1e355e;
}

.event-info p {
  margin: 3px 0;
  font-size: 14px;
}

.announcement-card {
  gap: 15px;
  display: flex;
  padding: 20px 15px;
  border-radius: 0px;
  border-bottom: 1px solid #d8d7d7;
}

.announcement-card .date {
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  font-weight: bold;
  height: 40px;
  display: inline-grid;
}

.announcement-card .date span:first-child {
  font-size: 13px;
}

.date .month {
  height: 28px;
  padding: 5px 15px;
  text-align: center;
  border-radius: 5px;
  background: #1e355e;
}

.announcement-card .date span:last-child {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
}

.announcement-details {
  flex: 1;
}

.announcement-details h6 {
  color: #1e355e;
  font-weight: bold;
  margin-bottom: 5px;
}

.announcement-details p {
  margin: 0;
  font-size: 14px;
}

.announcement-location {
  margin-top: 5px;
  font-size: 13px;
  color: #333;
}

.announcement-location i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-card img {
    width: 100%;
    height: 200px;
  }

  .announcement-card {
    flex-direction: column;
  }
}

.bg-grey {
  background: #f6f6f7;
}

.courses-section {
  position: relative;
  background: #fff;
  padding: 60px 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card .icon-bg {
  /*width: 40px;*/
  /*height: 40px;*/
  /*min-width: 40px;*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: white;
}

.light-green {
  background: #eafaf5;
}
.light-pink {
  background: #fff4f5;
}
.light-yellow {
  background: #fff8e6;
}
.light-cream {
  background: #fdf9f2;
}
.light-purple {
  background: #f9f0fd;
}
.light-blue {
  background: #def2fe;
}
.light-indigo {
  background: #efeffb;
}
.light-violet {
  background: #f7f3fe;
}
.light-red {
  background: #fededf;
}

.facility-section {
  padding: 60px 0px;
  background: #f2f2ea;
}

.facility-left {
  flex: 1 1 250px;
}

.facility-left h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 5px;
}

.facility-left h2 {
  font-size: 28px;
  color: #1c3c6b;
  margin: 0 0 20px;
}

.facility-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.facility-grid {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  /*gap: 20px;*/
}

.facility-box {
  text-align: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: 0.3s;
  border-left: 1px solid #e1dfdfde;
  border-right: 1px solid #e1dfdfde;
  border-bottom: 1px solid #e1dfdfde;
  border-top: none;
}
.facility-box.line1 {
  border-left: none;
  border-bottom: none;
}
.facility-box.line2 {
  border-left: none;
  border-bottom: none;
}
.facility-box.line3 {
  border-bottom: none;
}

.facility-box.line4 {
  border-right: none;
  border-bottom: none;
}
.facility-box.line5 {
  border-right: 0px;
}
.facility-box.line {
  border: 0px;
}
.facility-box.active,
.facility-box:hover {
  background-color: #3498db;
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-box img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.facility-box.active img,
.facility-box:hover img {
  filter: brightness(0) invert(1);
}

.facility-box span {
  font-size: 14px;
  display: block;
}

@media (max-width: 768px) {
  .facility-section {
    flex-direction: column;
    align-items: center;
  }

  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stats-section {
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #1c4281;
  padding: 30px 120px 10px;
  color: white;
}

.stats-section .section-title {
  margin-bottom: 10px;
}

.stats-section h2 {
  color: #fff;
  font-size: 25px;
}

.stats-section h3 {
  color: #fff;
}

.stats-section .icon-circle {
  margin: 0px;
  width: 60px;
  height: 76px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 250px;
  margin: 15px;
  max-width: 100%;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #4d9dfb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.stat-text h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.stat-text p {
  margin: 0;
  font-size: 18px;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .stats-section {
    justify-content: center;
  }

  .stat-box {
    max-width: 100%;
    justify-content: flex-start;
  }
}

.sports-section {
  text-align: center;
  /*padding: 30px 20px;*/
  font-family: Arial, sans-serif;
}

.sports-section h4 {
  color: #888;
  margin-bottom: 5px;
}

.sports-section h2 {
  color: #1b2d4a;
  font-size: 28px;
  margin-bottom: 30px;
}

.sports-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.sports-card {
  position: relative;
  width: 350px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sports-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sports-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  /*padding: 20px;*/
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sports-card:hover .overlay {
  opacity: 1;
}

.overlay-content {
  color: #000;
  padding: 10px;
  margin-right: 10px;
  background: #fff;
  text-align: left;
}

.overlay-content h3 {
  margin: 0;
  font-size: 20px;
}

.overlay-content p {
  font-size: 14px;
  margin-top: 5px;
}

.our-services.why-section {
  background: #f0f7ff;
}
.left {
  flex: 1;
  min-width: 280px;
}
.tabs button {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}
.tabs button:hover {
  color: #fff;
  background: #009846;
}
.tabs button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #004080;
}
.tab-content {
  font-size: 15px;
  color: #333;
  margin-top: 0px;
  margin-bottom: 20px;
}
.tab-content .inter-border {
  text-align: center;
  border-radius: 15px;
  border: 1px solid #efeaea;
}
.tab-content .inter-border img {
  padding: 15px;
}
.tab-content .inter-border h4 {
  padding: 0px 15px 0px;
  text-align: center;
}
.tab-content .inter-border p {
  padding: 0px 15px 0px;
  text-align: center;
}
.tab-content .inter-border button {
  border: none;
  padding: 10px 30px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #198754;
}
.tab-content .inter-border button:hover {
  background: #000;
}
.tab-content .inter-border button a {
  color: #fff;
}
.top-space {
  margin-top: 30px;
}
.top-space .box.box1 {
  margin-bottom: 10px;
}
.bottom-space .box.box3 {
  margin-bottom: 10px;
}
.tab-content ul {
  padding-left: 0px;
  list-style-type: none;
}
.left li::marker {
  content: "";
}
.tab-content ul li {
  padding-bottom: 15px;
}
.tab-content ul li::before {
  content: "✨";
  margin-right: 5px;
}
.about-btn {
  padding: 10px 20px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  flex: 1;
}
.box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.box-number {
  position: absolute;
  bottom: 50px;
  left: 70%;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  
  padding: 5px 10px;
  border-radius: 4px;
  float: right;
}
.box-caption {
  background: #1e3a8a;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.college-section {
  margin: 0 auto;
  text-align: center;
  padding: 90px 0px;
}

.college-section h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.college-section p.subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.college-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.college-image {
  flex: 1;
  min-width: 300px;
}

.college-image img {
  width: 60%;
  border-radius: 12px;
  max-height: 450px;
  object-fit: cover;
  float: left;
}

.college-content {
  position: absolute;
  right: 0;
  bottom: 30px;
  background-color: #ecefe9;
  padding: 50px 60px;
  max-width: 600px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.college-content small {
  text-transform: uppercase;
  color: #666;
  font-weight: bold;
}

.college-content h3 {
  font-size: 24px;
  color: #1e1e1e;
  margin: 10px 0;
}

.college-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.college-content a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #1e3a8a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

@media (max-width: 900px) {
  .college-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .college-content {
    position: static;
    margin-top: -20px;
    max-width: 100%;
  }
}

.gallery-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-section small {
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-image {
  width: 100%;
  overflow: hidden;
}

.gallery-image img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-content {
  padding: 25px 30px 10px 0px;
  text-align: left;
}

.gallery-content .date {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.gallery-content h4 {
  font-size: 17px;
  color: #111;
  margin: 0;
}

@media (max-width: 600px) {
  .gallery-content h4 {
    font-size: 16px;
  }
}

/***************************************************/
@media only screen and (max-width: 1840px) {
  .bg-section {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1560px) {
  .bg-section {
    width: calc(100% - 0px);
    margin-left: 15px;
    margin-right: 15px;
  }

  .our-services::after {
    bottom: 11px;
    width: 233px;
    height: 230px;
  }
}

@media only screen and (max-width: 1024px) {
  .header-contact-btn {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  .navbar {
    padding: 20px 0;
  }

  .main-header .navbar-brand img {
    max-width: 150px;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .bg-section {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0;
  }

  .btn-default {
    font-size: 16px;
    padding: 14px 35px 14px 15px;
  }

  .btn-default.btn-highlighted {
    padding: 11px 35px 11px 15px;
  }

  .btn-default::before {
    right: 15px;
  }

  .readmore-btn {
    font-size: 16px;
    padding-right: 20px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-row .section-title.section-title-center {
    max-width: 100%;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 55px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
  }

  .section-content-btn .section-btn {
    margin-top: 15px;
  }

  .hero-section {
    padding: 50px 0 100px;
  }

  .hero-section.hero-slider-layout .hero-slide {
    padding: 50px 0 250px;
  }

  .hero-section.hero-slider-layout .hero-pagination {
    bottom: 215px;
  }

  .hero-section.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .hero-content .section-title p {
    font-size: 18px;
  }

  .hero-btn {
    gap: 20px 30px;
  }

  .hero-cta-box {
    padding: 50px;
    margin-top: -200px;
  }

  .hero-intro-video-image,
  .hero-cta-contetnt {
    width: 100%;
  }

  .hero-cta-item {
    margin-bottom: 30px;
  }

  .hero-cta-item .icon-box {
    margin-right: 20px;
  }

  .hero-cta-item-content {
    width: calc(100% - 70px);
  }

  .hero-cta-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-client-slider {
    padding: 30px 0;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-image {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .about-contact-box .icon-box img {
    max-width: 30px;
  }

  .about-us-body {
    margin-bottom: 30px;
  }

  .mission-vision-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .company-experience-box {
    padding: 25px;
  }

  .company-experience-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .company-experience-box h2 {
    font-size: 38px;
  }

  .our-services {
    padding: 50px 0;
  }

  .our-services::before {
    height: 20%;
  }

  .our-services::after {
    bottom: 8px;
    width: 150px;
    height: 148px;
  }

  .service-image img {
    aspect-ratio: 1 / 1.1;
  }

  .service-body {
    left: 20px;
    bottom: 20px;
  }

  .service-item-content .icon-box {
    margin-bottom: 10px;
  }

  .service-title h3 {
    font-size: 22px;
  }

  .services-pagination {
    margin-top: 40px;
  }

  .services-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }

  .section-footer-text {
    margin-top: 20px;
  }

  .our-services .section-footer-text {
    margin-bottom: 30px;
  }

  .why-choose-us {
    padding: 50px 0 0;
    background-size: 90% auto;
  }

  .why-choose-box,
  .why-choose-item {
    margin-bottom: 30px;
  }

  .why-choose-item .icon-box {
    margin-right: 20px;
  }

  .why-choose-item-content {
    width: calc(100% - 70px);
  }

  .why-choose-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .why-choose-image {
    text-align: center;
  }

  .why-choose-image img {
    max-width: 50%;
  }

  .what-we-do {
    padding: 50px 0 25px;
  }

  .what-we-do-content {
    margin: 0 0 30px 0;
  }

  .what-we-do-list {
    padding: 30px;
  }

  .what-we-do-list ul li {
    background-size: 20px auto;
    padding: 0 0 20px 30px;
    margin-bottom: 20px;
  }

  .what-we-do-img img {
    aspect-ratio: 1 / 0.56;
  }

  .what-we-do-info {
    gap: 20px 30px;
    margin-top: 40px;
  }

  .what-we-do-info h3 {
    font-size: 22px;
  }

  .our-courses {
    padding: 25px 0 20px;
  }

  .course-image img {
    aspect-ratio: 1 / 1.08;
  }

  .course-body {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }

  .course-item-content h3 {
    font-size: 22px;
  }

  .course-readmore-btn {
    margin-top: 15px;
  }

  .how-it-work {
    padding: 50px 0;
  }

  .how-it-work-content {
    margin-bottom: 30px;
  }

  .how-it-work-image img {
    aspect-ratio: 1 / 0.56;
  }

  .how-it-work-steps {
    margin: 0;
  }

  .how-work-step-item {
    margin-bottom: 40px;
  }

  .how-work-step-item:after {
    transform: translate(25px, 50px);
  }

  .how-work-step-no {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }

  .how-work-step-no h2 {
    font-size: 24px;
  }

  .how-work-step-content {
    width: calc(100% - 70px);
  }

  .how-work-step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .pricing-item {
    padding: 30px;
  }

  .pricing-header {
    margin-bottom: 20px;
  }

  .pricing-header h3 {
    font-size: 22px;
  }

  .pricig-body ul li {
    padding-left: 25px;
    margin-bottom: 15px;
  }

  .pricig-body ul li:before {
    height: 18px;
    width: 18px;
    top: 2px;
  }

  .pricig-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-footer {
    margin-bottom: 30px;
  }

  .pricing-price {
    margin-bottom: 10px;
  }

  .pricing-price h2 {
    font-size: 38px;
  }

  .pricing-price h2 sub {
    font-size: 16px;
  }

  .pricing-btn .btn-default {
    padding: 14px 15px;
  }

  .pricing-benefit-list {
    margin-top: 5px;
  }

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .pricing-benefit-list ul li img {
    max-width: 18px;
    margin-right: 10px;
  }

  .book-appointment {
    padding: 50px 0;
  }

  .book-appointment-content {
    margin: 0 0 30px 0;
  }

  .appointment-info-list {
    gap: 30px 80px;
  }

  .appointment-info-title {
    margin-bottom: 10px;
  }

  .appointment-info-title img {
    max-width: 22px;
    margin-right: 10px;
  }

  .appointment-info-title h3 {
    font-size: 22px;
  }

  .appointment-info-item.location-info-item {
    padding-top: 30px;
  }

  .book-appointment-form {
    padding: 30px;
  }

  .book-appointment-form .form-control {
    padding: 14px 15px;
  }

  .our-testimonials {
    padding: 50px 0;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-header {
    gap: 10px;
    margin-bottom: 15px;
  }

  .testimonial-rating-conuter h3 {
    font-size: 22px;
  }

  .testimonial-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .author-image img {
    max-width: 50px;
  }

  .author-content {
    width: calc(100% - 65px);
  }

  .author-content h3 {
    font-size: 22px;
  }

  .testimonial-pagination {
    margin-top: 30px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faq-accordion .accordion-header .accordion-button.collapsed {
    padding: 15px 45px 15px 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    padding: 15px 45px 15px 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 20px;
    font-size: 20px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px 20px 20px;
  }

  .faq-image {
    margin: 30px 0 0;
  }

  .faq-image figure img {
    aspect-ratio: 1 / 0.66;
  }

  .faq-image .appointment-info-list {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 15px;
  }

  .post-item-content {
    margin-bottom: 15px;
  }

  .post-item-content h3 {
    font-size: 22px;
  }

  .main-footer {
    padding: 40px 0 0;
  }

  .about-footer {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .about-footer-content {
    margin-bottom: 20px;
  }

  .footer-contact-list ul li {
    margin-bottom: 10px;
  }

  .footer-link-box {
    margin-left: 0;
    gap: 30px 40px;
    margin-bottom: 30px;
  }

  .footer-links {
    width: calc(22% - 26.67px);
  }

  .footer-links::before {
    right: -20px;
  }

  .footer-links h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-contact-info,
  .footer-newsletter-form {
    width: calc(39% - 26.67px);
  }

  .footer-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-newsletter-form .form-group .form-control {
    padding: 12px 16px;
  }

  .footer-newsletter-form .form-group .btn-default {
    padding: 16px;
    margin-top: 15px;
  }

  .footer-copyright {
    margin-top: 30px;
    padding: 30px 0;
  }

  .page-header {
    padding-bottom: 0px;
  }

  .page-header-section {
    padding: 80px 0;
    background-position: left !important;
  }

  .page-header-box h1 {
    font-size: 55px;
    margin-bottom: 10px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 18px;
  }

  .driving-excellence {
    padding: 50px 0;
  }

  .driving-excellence-content {
    margin-bottom: 30px;
  }

  .excellence-counter-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .excellence-body-counter {
    width: 12%;
  }

  .excellence-body-counter h2 {
    font-size: 38px;
  }

  .excellence-counter-content {
    width: 88%;
  }

  .excellence-counter-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .driving-excellence-list {
    margin-left: 0;
  }

  .excellence-item {
    padding: 20px;
  }

  .excellence-item .icon-box {
    margin-bottom: 30px;
  }

  .excellence-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .student-experience {
    padding: 25px 0 50px;
  }

  .student-experience-image {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .student-experience-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .student-experience-item .icon-box {
    width: 70px;
    height: 70px;
    margin-right: 20px;
  }

  .student-experience-item .icon-box img {
    max-width: 40px;
  }

  .student-experience-item-content {
    width: calc(100% - 90px);
  }

  .student-experience-item-content h3 {
    font-size: 22px;
  }

  .student-experience-rating h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-image img {
    aspect-ratio: 1 / 0.98;
  }

  .team-content {
    margin-bottom: 15px;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .our-core-value {
    padding: 50px 0;
  }

  .core-value-content,
  .core-value-image {
    width: 100%;
  }

  .core-value-item {
    margin-bottom: 30px;
  }

  .core-value-item-content h3 {
    font-size: 22px;
  }

  .core-value-list ul li {
    background-position: left top 2px;
    background-size: 18px auto;
    padding-left: 25px;
  }

  .core-value-btn {
    margin-top: 30px;
  }

  .core-value-body-img img {
    aspect-ratio: 1 / 0.9;
  }

  .core-value-img img {
    aspect-ratio: 1 / 0.6;
    object-position: top center;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .page-single-category-list {
    margin-bottom: 30px;
  }

  .page-single-category-list h3 {
    font-size: 22px;
    padding: 14px 20px;
  }

  .page-single-category-list ul {
    padding: 20px;
  }

  .page-single-category-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-single-category-list ul li a {
    padding-right: 25px;
  }

  .page-single-category-list ul li a::before {
    width: 12px;
    height: 12px;
  }

  .sidebar-cta-box {
    padding: 30px 20px;
  }

  .sidebar-cta-logo {
    margin-bottom: 30px;
  }

  .cta-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-single-slider {
    margin-bottom: 30px;
  }

  .service-single-slider .service-pagination {
    bottom: 20px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-entry p {
    margin-bottom: 10px;
  }

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .service-entry h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-entry ul li {
    padding-left: 25px;
    margin-bottom: 15px;
    background-size: 16px auto;
  }

  .service-expert-box,
  .service-technique-box {
    margin-top: 40px;
  }

  .service-expert-item-list {
    margin-top: 30px;
  }

  .service-expert-content {
    padding: 30px;
  }

  .service-expert-content .icon-box {
    margin-bottom: 40px;
  }

  .service-expert-content .icon-box img {
    max-width: 50px;
  }

  .service-expert-image img {
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
  }

  .service-technique-image,
  .service-technique-list-box {
    margin-top: 30px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-single-meta ol li {
    font-size: 16px;
  }

  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.4em;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    font-size: 22px;
  }

  .post-tags .tag-links a {
    padding: 10px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-courses {
    padding: 50px 0 20px;
  }

  .page-course-single {
    padding: 50px 0;
  }

  .course-category-list {
    margin-bottom: 30px;
  }

  .course-category-list h3 {
    font-size: 22px;
    padding: 14px 20px;
  }

  .course-category-list ul {
    padding: 20px;
  }

  .course-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .course-featured-image {
    margin-bottom: 30px;
  }

  .course-featured-image img {
    aspect-ratio: 1 / 0.49;
  }

  .course-entry {
    margin-bottom: 40px;
  }

  .course-entry p {
    margin-bottom: 15px;
  }

  .course-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .course-entry ul {
    gap: 15px 20px;
    margin-bottom: 15px;
  }

  .course-entry ul li {
    width: calc(50% - 10px);
    padding-left: 25px;
    background-size: 16px auto;
  }

  .course-confidence-box,
  .course-navigate-box {
    margin-top: 40px;
  }

  .course-confidence-box ul {
    margin-top: 30px;
  }

  .course-navigate-info {
    padding: 20px;
    margin-top: 30px;
  }

  .course-navigate-info-item .icon-box {
    margin-bottom: 20px;
  }

  .course-navigate-info-item .icon-box img {
    max-width: 40px;
  }

  .course-navigate-item-content h3 b {
    font-size: 22px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-about-box {
    margin-bottom: 50px;
  }

  .team-single-image,
  .team-about-content {
    width: 100%;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.8;
  }

  .team-about-content .team-social-icon,
  .team-contact-list {
    margin-bottom: 30px;
  }

  .team-contact-box {
    padding: 20px;
  }

  .team-contact-content h3 {
    font-size: 22px;
  }

  .team-social-icon h3 {
    font-size: 22px;
  }

  .team-emergency-box {
    padding: 15px;
  }

  .team-education-qualification,
  .team-contact-form {
    width: 100%;
  }

  .team-education-qualification .section-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .team-qualification-item {
    margin-bottom: 30px;
  }

  .team-qualification-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }

  .team-qualification-item .icon-box img {
    max-width: 26px;
  }

  .team-qualification-content {
    width: calc(100% - 70px);
  }

  .team-qualification-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs-catagery .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .contact-us-content,
  .contact-us-form {
    width: 100%;
  }

  .contact-us-content {
    padding: 50px;
  }

  .contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .contact-info-item .icon-box {
    height: 50px;
    width: 50px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-info-content {
    width: calc(100% - 70px);
  }

  .contact-info-content h3 {
    font-size: 22px;
  }

  .contact-social-list h3 {
    font-size: 22px;
  }

  .contact-social-list ul li a {
    width: 40px;
    height: 40px;
  }

  .contact-social-list ul li a i {
    font-size: 22px;
  }

  .contact-us-form {
    padding: 30px;
  }

  .contact-form .form-control {
    font-size: 16px;
    padding: 15px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 500px;
  }

  .page-book-appointment {
    padding: 50px 0;
  }

  .page-appointment-content {
    margin-bottom: 30px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-content-body p,
  .error-page-content .section-title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content .section-title p {
    font-size: 16px;
  }

  .hero-cta-box {
    padding: 30px;
  }

  .hero-cta-item .icon-box {
    margin-right: 10px;
  }

  .hero-cta-item .icon-box img {
    max-width: 40px;
  }

  .hero-cta-item-content {
    width: calc(100% - 50px);
  }

  .hero-cta-item-content h3 {
    font-size: 20px;
  }

  .hero-client-slider .company-logo img {
    height: 40px;
  }

  .about-us-image {
    max-width: 100%;
    background-size: 60px auto;
    background-position: top 48px right 10px;
    padding: 0 80px 100px 0;
  }

  .about-img-2 {
    max-width: 180px;
    border-width: 5px;
  }

  .about-contact-box {
    bottom: 25px;
  }

  .about-contact-box .icon-box {
    width: 45px;
    height: 45px;
  }

  .about-contact-box .icon-box img {
    max-width: 20px;
  }

  .about-contact-box:after {
    right: calc(100% - 45px);
  }

  .about-contact-content {
    width: calc(100% - 45px);
    padding: 5px 10px 5px 5px;
  }

  .about-contact-content p {
    margin-bottom: 2px;
  }

  .about-contact-content h3 {
    font-size: 16px;
  }

  .about-us-body {
    gap: 20px;
  }

  .mission-vision-item {
    width: 100%;
  }

  .mission-vision-item h3 {
    font-size: 20px;
  }

  .company-experience-box,
  .about-us-footer-content {
    width: 100%;
  }

  .company-experience-box {
    padding: 20px;
  }

  .company-experience-box h3 {
    font-size: 20px;
  }

  .company-experience-box h2 {
    font-size: 26px;
  }

  .our-services::before {
    animation: none;
  }

  .our-services::after {
    width: 100px;
    height: 98px;
  }

  .service-item-content .icon-box img {
    max-width: 35px;
  }

  .service-title h3 {
    font-size: 20px;
  }

  .why-choose-item .icon-box img {
    max-width: 40px;
  }

  .why-choose-item-content {
    width: calc(100% - 50px);
  }

  .why-choose-item-content h3 {
    font-size: 20px;
  }

  .why-choose-image img {
    max-width: 60%;
  }

  .what-we-do {
    background: linear-gradient(
      180deg,
      var(--primary-color) 87%,
      transparent 23%
    );
  }

  .what-we-do-list {
    padding: 20px;
  }

  .what-we-do-list ul li {
    padding: 0 0 15px 30px;
    margin-bottom: 15px;
  }

  .what-we-do-info {
    gap: 15px;
    margin-top: 30px;
  }

  .what-we-do-info h3 {
    font-size: 20px;
  }

  .course-item-content h3 {
    font-size: 20px;
  }

  .how-work-step-item {
    margin-bottom: 30px;
  }

  .how-work-step-item:after {
    transform: translate(20px, 40px);
  }

  .how-work-step-no {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .how-work-step-no h2 {
    font-size: 20px;
  }

  .how-work-step-content {
    width: calc(100% - 50px);
  }

  .how-work-step-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .pricing-item {
    padding: 20px;
  }

  .pricing-header h3 {
    font-size: 20px;
  }

  .pricing-price h2 {
    font-size: 26px;
  }

  .pricing-benefit-list ul {
    gap: 10px;
  }

  .pricing-benefit-list ul li {
    width: calc(50% - 5px);
    font-size: 12px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .appointment-info-list {
    gap: 25px;
  }

  .appointment-info-item {
    width: 100%;
  }

  .appointment-info-item.location-info-item {
    padding-top: 0;
    border-top: none;
  }

  .appointment-info-title h3 {
    font-size: 20px;
  }

  .appointment-info-title img {
    max-width: 20px;
  }

  .book-appointment-form {
    padding: 20px;
  }

  .testimonial-rating-conuter h3,
  .author-content h3 {
    font-size: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    padding: 15px 40px 15px 15px;
  }

  .faq-accordion .accordion-header .accordion-button.collapsed {
    padding: 15px 40px 15px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 18px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq-image figure img {
    aspect-ratio: 1 / 1.05;
  }

  .faq-image .appointment-info-list {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .post-item-content h3 {
    font-size: 20px;
  }

  .footer-contact-list {
    display: block;
  }

  .footer-links,
  .footer-contact-info,
  .footer-newsletter-form {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-info-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
    margin-top: 0px;
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .excellence-body-counter {
    width: 20%;
  }

  .excellence-body-counter h2 {
    font-size: 28px;
  }

  .excellence-counter-content {
    width: 80%;
  }

  .excellence-counter-content h3 {
    font-size: 20px;
  }

  .excellence-item {
    width: 100%;
  }

  .excellence-item .icon-box {
    margin-bottom: 20px;
  }

  .excellence-item .icon-box img {
    max-width: 40px;
  }

  .excellence-item-content h3 {
    font-size: 20px;
  }

  .student-experience-image {
    max-width: 100%;
    gap: 20px;
    padding-right: 10px;
    background-size: 60px auto;
  }

  .student-experience-image:after {
    width: 60px;
    height: 38px;
  }

  .student-experience-img-box-1 {
    width: calc(45% - 10px);
    padding-bottom: 20px;
  }

  .student-experience-img-box-2 {
    width: calc(55% - 10px);
  }

  .student-experience-img-1,
  .student-experience-img-3 {
    margin-bottom: 20px;
  }

  .student-experience-item .icon-box {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }

  .student-experience-item .icon-box img {
    max-width: 35px;
  }

  .student-experience-item-content {
    width: calc(100% - 70px);
  }

  .student-experience-item-content h3 {
    font-size: 20px;
  }

  .student-experience-footer {
    gap: 20px;
  }

  .student-experience-rating h3 {
    font-size: 20px;
  }

  .student-experience-rating p {
    font-size: 14px;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .core-value-content-box,
  .core-value-body-img {
    width: 100%;
  }

  .core-value-item {
    margin-bottom: 20px;
  }

  .core-value-item .icon-box {
    margin-bottom: 10px;
  }

  .core-value-item .icon-box img {
    max-width: 40px;
  }

  .core-value-btn {
    margin-top: 20px;
  }

  .page-single-category-list h3,
  .cta-content h3 {
    font-size: 20px;
  }

  .service-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.8;
  }

  .service-single-slider .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }

  .service-single-slider .swiper-pagination-bullet-active {
    width: 16px;
  }

  .service-single-slider {
    margin-bottom: 20px;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 20px;
  }

  .service-entry ul li {
    margin-bottom: 10px;
  }

  .service-expert-box,
  .service-technique-box {
    margin-top: 30px;
  }

  .service-expert-item-list,
  .service-expert-item {
    gap: 20px;
  }

  .service-expert-content,
  .service-expert-image {
    width: 100%;
  }

  .service-expert-content {
    padding: 20px;
  }

  .service-expert-content .icon-box {
    margin-bottom: 25px;
  }

  .service-expert-content .icon-box img {
    max-width: 40px;
  }

  .service-expert-image figure {
    height: auto;
  }

  .service-expert-image img {
    aspect-ratio: 1 / 0.625;
  }

  .service-technique-image,
  .service-technique-list-box {
    margin-top: 20px;
  }

  .service-technique-image img {
    aspect-ratio: 1 / 0.61;
  }

  .service-technique-list-item {
    width: 100%;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 20px;
  }

  .post-tags .tag-links a {
    font-size: 16px;
  }

  .course-category-list h3 {
    font-size: 20px;
  }

  .course-category-list ul li {
    font-size: 18px;
  }

  .course-featured-image {
    margin-bottom: 20px;
  }

  .course-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .course-entry {
    margin-bottom: 30px;
  }

  .course-entry h2 {
    font-size: 26px;
  }

  .course-entry ul {
    gap: 10px;
  }

  .course-entry ul li {
    width: 100%;
  }

  .course-confidence-box,
  .course-navigate-box {
    margin-top: 30px;
  }

  .course-confidence-box ul {
    margin-top: 20px;
  }

  .course-navigate-info {
    gap: 20px;
  }

  .course-navigate-info-item {
    width: calc(50% - 10px);
  }

  .course-navigate-item-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .course-navigate-item-content h3 b {
    font-size: 20px;
  }

  .course-navigate-item-content p {
    font-size: 14px;
  }

  .course-navigate-video-image {
    width: 100%;
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.05;
  }

  .team-contact-list {
    gap: 20px;
  }

  .team-contact-box {
    width: 100%;
  }

  .team-contact-content h3 {
    font-size: 20px;
  }

  .team-social-icon h3 {
    font-size: 20px;
  }

  .team-emergency-box ul li img {
    max-width: 20px;
  }

  .team-qualification-item .icon-box {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .team-qualification-item .icon-box img {
    max-width: 22px;
  }

  .team-qualification-content {
    width: calc(100% - 50px);
  }

  .team-qualification-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .contact-us-content {
    padding: 40%;
  }

  .contact-info-item .icon-box {
    height: 40px;
    width: 40px;
    margin-right: 10px;
  }

  .contact-info-item .icon-box img {
    max-width: 22px;
  }

  .contact-info-content {
    width: calc(100% - 50px);
  }

  .contact-info-content h3 {
    font-size: 20px;
  }

  .contact-social-list h3 {
    font-size: 20px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  .error-page-image img {
    max-width: 100%;
  }
}

/****************************/
.vision-mission-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: center;
}

.vision-box,
.mission-box {
  overflow: hidden;
  max-width: 500px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.vision-box {
  margin-top: 35px;
  border-radius: 20px 0px 20px 20px;
  background-color: #153c7c;
  color: #fff;
}

.mission-box {
  background-color: #f4c542;
  color: #000;
  border-radius: 20px 20px 20px 0px;
  margin-bottom: 35px;
}

.vision-box .text,
.mission-box .text {
  padding: 40px;
}

.vision-box h3,
.mission-box h3 {
  color: #fff;
  font-size: 26px;
  font-family: "Pacifico", cursive;
  margin-bottom: 15px;
}

.vision-box p,
.mission-box p {
  font-size: 15px;
  line-height: 1.6;
}

.vision-box img,
.mission-box img {
  width: 100%;
    display: block;
    height: 352px;
    object-fit: cover;
}

@media (max-width: 768px) {
  .vision-mission-container {
    flex-direction: column;
    align-items: center;
  }

  .vision-box,
  .mission-box {
    max-width: 100%;
  }
}
.why-choose-us h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.programs-section {
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.programs-section h5 {
  font-family: "Pacifico", cursive;
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

.programs-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0px;
}

.program-card {
  padding: 30px 20px;
  transition: 0.3s ease;
  text-align: center;
  box-shadow: 0 0 0 transparent;
}
.bt1 {
  border-right: 1px solid #153c7c;
  border-bottom: 1px solid #153c7c;
}
.bt1:hover {
  box-shadow: 0 8px 19px 5px #00000014;
}
.bt2 {
  border-bottom: 1px solid #153c7c;
}
.bt2:hover {
  box-shadow: 0 8px 19px 5px #00000014;
}
.bt3 {
  border-right: 1px solid #153c7c;
}
.bt3:hover {
  box-shadow: 0 8px 19px 5px #00000014;
}
.bt4 {
  border: none;
}
.bt4:hover {
  box-shadow: 0 8px 19px 5px #00000014;
}
.bg-1 {
  background-color: #e9f2ff;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #153c7c;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.program-card:hover .icon-circle {
  background-color: #f4c542;
}

.program-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.program-desc {
  font-size: 15px;
  color: #000;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 600px) {
  .programs-section h2 {
    font-size: 26px;
  }
}
.image-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 180px;
  height: 420px;
}

.center-column {
  flex: 2;
  min-width: 280px;
  height: 420px;
}

.side-column img,
.center-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.center-column img {
  height: 100%;
  max-height: 420px;
}

.side-column img {
  height: 48%;
  min-height: 180px;
}

.news-btn {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.news-btn a {
  background: #f8ca4d;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .image-grid {
    flex-direction: column;
  }

  .side-column {
    flex-direction: row;
    gap: 10px;
  }

  .side-column img {
    height: auto;
    width: 48%;
  }

  .center-column img {
    max-height: none;
  }
}
.testimonial-slider.stu-feedback .swiper-slide {
  width: 100% !important;
  text-align: center;
}
.testimonial-section {
  width: 100%;
  max-width: 800px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  /*box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
  border-radius: 10px;
  background-color: #fff;
}

.testimonial-header h4 {
  font-family: "Georgia", serif;
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.testimonial-slide {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.quote-icon {
  font-size: 100px;
  color: #17438b;
  margin: 10px 0;
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testi-author {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}
.author {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.testimonial-role {
  font-size: 14px;
  color: #777;
}

.navigation {
  margin-top: 30px;
}

.nav-btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  background-color: #fcefd5;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: #ffd98f;
}

@media (max-width: 600px) {
  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-header h2 {
    font-size: 22px;
  }
}
.facilities-section {
  max-width: 1200px;
  margin: 0 auto;
}

.top-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.top-left {
  flex: 1 1 45%;
}

.top-left h4 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.top-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.top-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  background-color: #ffd64f;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #f6c732;
}

.top-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-right img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.bottom-grid .grid-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.bottom-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.overlay h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.overlay p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
  }

  .top-left,
  .top-right {
    flex: 1 1 100%;
  }

  .top-left h2 {
    font-size: 26px;
  }
}

.page-btn {
  width: 100%;
  margin-top: 30px;
}
.page-btn a {
  background: #f8ca4d;
  border-radius: 25px;
}
.facility-section h6 {
  text-align: left;
  font-size: 20px;
}
.facility-section h6 a {
  color: #fff;
  bottom: 20px;
  position: relative;
}
.facility-section p {
  color: #fff;
  font-size: 14px;
  text-align: left;
}
.facility-section .service-body {
  bottom: 0px;
}
.color-black {
  font-size: 18px !important;
  color: #000 !important;
}
.logo-slider .section-title {
  margin-bottom: 0px;
}
.logo-slider .hero-client-slider .company-logo img {
  height: 100%;
  opacity: 0.5;
}
.logo-slider .hero-client-slider .company-logo img:hover {
  opacity: 1;
}
.our-services.logo-slider {
  padding-bottom: 0px;
  padding-top: 20px;
}
.event-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    .event-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
.event-card {
  transition: 0.3s;
}
.event-card:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.event-card:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to bottom, #20202000, #202020d1);
}
.event-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 15px 35px;
    background: #1c4281;
    border: 1px solid #ffffff;
}
.event-caption a {
  color: #fff;
}
.news-card .event-caption {
    bottom: 60px;
    padding: 10px 35px;
    background-color: #1c428180;
}
.event-card.img-hit {
    height: 195px;
}
.event-content {
    position: absolute;
    bottom: 0px;
    left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 15px 35px;
}
.our-services .btn-default {
    padding: 10px 25px;
    text-align: center;
}
.service-image .image-anime {
    border-radius: 25px;
}


@media (max-width: 480px) {
  .vision-box,
  .mission-box {
    flex: 100%;
    margin-bottom: 20px;
  }
  .bt1 {
    border-right: none;
  }
  .bt3 {
    border-right: none;
    border-bottom: 1px solid #153c7c;
  }
  .about-us-image {
    padding: 0 0px 0px 0;
  }
  .about-img-1 .reveal img {
    height: 200px;
    border-radius: 20px;
  }
  .stats-section {
    padding: 30px;
  }
  .top-call-section {
    flex-direction: row;
    text-align: center;
    gap: 15px;
    padding: 0px 20px;
    padding-bottom: 20px;
  }
  .event-card.img-hit {
      height: 100%;
  }
  .mbt {
      margin-top: 1.5rem;
  }
  .banner-left-content {
      left: 10px;
      font-size: 50px;
  }
  .banner-right-content {
      right: 10px;
      font-size: 60px;
  }
}
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #00000066;
  padding: 8px;
  z-index: 9999;
  border-radius: 10px 0px 0px 10px;
}
.social-bar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.facebook { background: #1877F2; }
.twitter { background: #000000; } 
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.linkedin { background: #0077B5; }
.youtube { background: #FF0000; }
.social-bar a:hover { transform: scale(1.1); opacity: 0.9; }
.social-toggle {
  display: none !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
}
@media (max-width: 768px) {
  .social-bar {
    display: none;
    top: auto;
    bottom: 200px;
    right: 0px;
    transform: none;
    flex-direction: row;
    background: #111;
    padding: 10px;
    border-radius: 30px;
  }
  .social-toggle {
    display: flex !important;
    right: 5px;
    bottom: 150px;
  }
  #backToTop {
    bottom: 100px;
  }
}
.tabs {
  width: 100%;
  max-width: 350px;
  /*max-height: 700px;*/
  /*overflow-y: auto;*/
  background: #fff;
  border-right: 2px solid #eee;
}
.tabs button {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  background: #f4f4f4;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  line-height: 25px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.tabs button.active {
  background: #1d3c5d;
  color: #fff;
}
.content {
  flex: 1;
  padding: 0px 20px;
  background: #fff;
}
.content p {
  /*text-align: center;*/
}
.content table td {
  padding: 10px;
  border: 1px solid #d3cbcb;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.tab-content h2 {
  color: #0d3577;
  margin-bottom: 15px;
}
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #002f5f;
  color: #fff;
}
.tab-link.active {
  font-weight: bold; 
}
@media (max-width: 768px) {
  .tabs {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    display: none;
    flex-direction: column;
    border: 1px solid #ccc;
  }
  .tabs.open {
    display: flex;
  }
  .container {
    flex-direction: column;
  }
  .tabs button {
    font-size: 16px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
  }
  .carousel img {
    max-width: 90%;
    margin: auto;
    padding-bottom: 20px;
  }
  .tabs {
    max-width: 100%;
    display: flex;
    overflow-x: auto;
  }
  .tabs button {
    flex: 1;
    white-space: nowrap;
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
  .carousel img {
    max-width: 80%;
    margin: auto;
  }
  .tabs {
    display: none;
    flex-direction: column;
    gap: 5px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    position: relative;
  }
  .tabs.active {
    width: 95%;
    display: block;
    position: sticky;
  }
  .tab-link {
    background: none;
    border: none;
    padding: 10px;
    text-align: left;
    font-size: 18px;
    width: 100%;
  }
  .header-booking-btn.nbtn {
    margin-bottom: 20px;
  }
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
  }
  .mobile-header h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
  }
  .hamburger {
    font-size: 30px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
  }
  .tab-content h2 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .how-work-step-no h2 {
    margin: 0px;
  }
  .page-course-single {
    padding-top: 0px;
  }
}
.carrer-sec {
  padding: 60px 0;
}
.carrer-sec .about-img-1 img {
  aspect-ratio: 1 / 0.69;
}
.ready-join-section {
  background: #f9f2f4;  
  padding: 40px 0px 60px;
}

.join-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e3a8a; 
  margin-bottom: 15px;
}

.join-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.join-link {
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  transition: 0.3s;
}

.join-link:hover {
  text-decoration: underline;
}

.video-box {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .join-content {
    text-align: center;
    margin-bottom: 20px;
  }
}

.content-sec {
  padding-bottom: 30px;
}
.content-sec .section-title-content h2 {
  color: #1b3e75;
  margin-bottom: 10px;
}
.content-sec .section-title-content p {
  margin-bottom: 20px;
}
.tab-section {
  padding: 0px 0px;
}
.ai-section {
    padding: 80px 0;
    width: 100%;
    background-image: url(../images/bba-bg.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}
.ai-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}
.ai-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ddd;
}
.btn-download {
  display: inline-block;
  padding: 12px 28px;
  background: #22c55e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-download:hover {
  background: #16a34a;
}
.ai-image {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
@media (max-width: 991px) {
  .ai-content {
    text-align: center;
    margin-bottom: 30px;
  }
  .ai-content h2 {
    font-size: 26px;
  }
}
.gallery-sec {
  padding: 30px 0px 60px 0px;
}
.gallerySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallerySwiper img {
  width: 100%;
  height: 256px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 16px;
}
.gallery-header {
  display: flex;
  padding-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
.gallery-header .section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.gallery-nav {
  display: flex;
  gap: 10px;
}
.gallery-nav .swiper-button-prev,
.gallery-nav .swiper-button-next {
  position: relative; /* prevent overlap */
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: #0d1b2a;
  left: 0px;
  right: auto;
}
.gallery-nav .swiper-button-prev::after,
.gallery-nav .swiper-button-next::after {
  font-size: 16px;
}
.about-us-content.career-content .section-title {
  margin-bottom: 10px;
}
.recruitersSwiper img {
  max-width: 100%;
  height: auto;
  padding: 10px;
  object-fit: contain;
  border: 1px solid #e8e5e5;
  border-radius: 10px;
}
.recruiters-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.kpr-space h4 {
    margin-bottom: 15px;
}
.page-team h3 {
    text-align: center;
    padding-bottom: 20px;
}
.page-team img {
  /*border-radius: 20px 20px 0px 0px;*/
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 20px;
  background: #fff;
  /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);*/
  position: relative;
  flex-wrap: wrap;
}
.logo img {
  max-height: 75px;
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links > a,
.nav-links .dropdown > a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 16px;
  padding: 10px 6px;
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

/* LEVEL 1 DROPDOWN */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  z-index: 1000;
}
.dropdown:hover > .dropdown-content {
  display: block;
}
.dropdown-content ul {
  padding: 0px;
  margin-bottom: 0rem;
  list-style-type: none;
}
.dropdown-content ul li {
  /*padding: 15px;*/
}
.dropdown-content ul li a {
  color: #000;
  font-size: 16px;
  padding: 15px;
  width: 100%;
  display: block;
}
.dropdown-content ul li:hover {
    background: #009846;
}
.dropdown-content ul li a:hover {
    color: #fff;
}

/* Left column items (like screenshot) */
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
.menu-item:hover {
  background: #eef2f6;
}
.menu-item i {
  opacity: 0.7;
}

/* LEVEL 2 (submenu on the right) */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-content {
  top: 0px;
  left: 100%;
  min-width: 260px;
  background: #fff;
  border-left: 0;
  z-index: 1001;
}
.dropdown-submenu:hover > .dropdown-content {
  display: block;
}

.submenu-panel a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: #0a0a0a;
  font-weight: 600;
  background: #fff;
}
.submenu-panel a:hover {
  background: #f7f9fb;
}
/* ICON ROTATION ON OPEN (mobile) */
.dropdown.open > a .chev {
  transform: rotate(180deg);
}
.dropdown-submenu.open > a .chev-right {
  transform: rotate(90deg);
}
.chev,
.chev-right {
  transition: transform 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  .logo {
    order: -1;
    margin: 0 auto;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: 0;
    min-width: unset;
    width: 100%;
  }
  .dropdown:hover > .dropdown-content,
  .dropdown-submenu:hover > .dropdown-content {
    display: none;
  } /* disable hover on touch */

  .dropdown.open > .dropdown-content,
  .dropdown-submenu.open > .dropdown-content {
    display: block;
  }

  .menu-item {
    padding: 14px 16px;
  }
  .submenu-panel a {
    padding: 12px 16px;
  }
}
.about-us-content .section-title {
  margin-bottom: 20px;
}
.tec-content p {
  margin-bottom: 10px;
}
.kpr-space p {
  margin-bottom: 15px;
}
.kpr-space .team-item {
  height: calc(100% - 20px);
}
.kpr-space a {
  color: #000;
}
.footer-link-box a {
  color: #fff;
}
.footer-link-box a:hover {
  color: var(--accent-color);
}
.main-footer .about-footer-content {
  margin-bottom: 10px;
}
.team-image.placement img {
    aspect-ratio: 1 / 1.126;
}
.call-right a {
  color: #fff;
}
.call-right a:hover {
  color: var(--accent-color);
}
.about-us h6 {
  margin-bottom: 10px;
}
.gallery-container {
      max-width: 100%;
      margin: auto;
      text-align: center;
      padding: 0px;
    }

    .main-image {
      width: 100%;
      max-height: 500px;
      object-fit: cover;
      border-radius: 10px;
    }

    .thumbnails {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      margin-top: 15px;
      padding-bottom: 10px;
    }

    .thumbnails img {
      height: 80px;
      border-radius: 5px;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .thumbnails img:hover {
      transform: scale(1.1);
    }

    .arrow {
      position: absolute;
      top: 50%;
          width: 45px;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      font-size: 24px;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
    }

    .arrow.left {
      left: 20px;
          display: block;
          min-width: 45px;
    }

    .arrow.right {
      right: 20px;
          display: block;
    }

    @media(max-width:768px){
      .main-image{
        max-height: 300px;
      }
      .thumbnails img{
        height: 60px;
      }
    }
.kpr-space .page-gallery-box .photo-gallery img {
  aspect-ratio: 1;
}
#Facult_Profile {
  width: 100%;
}
#Facult_Profile p {
  text-align: center;
  margin-bottom: 0px;
}
#Facult_Profile .team-body {
  padding: 20px;
  min-height: 40%;
  background: #f6f6f7;
}
#Facult_Profile a {
  color: #000;
}
#Facult_Profile a:hover {
  color: #009846;
}
#Facult_Profile .link a {
  color: #009846;
  padding-top: 10px;
}
#Facult_Profile .button {
  text-align: center;
  margin-top: 50px;
}
#Facult_Profile .button a {
  background-color: #1d3c5d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.page-course-single.faculty {
    padding: 60px 0px;
}
.page-course-single.faculty p {
    text-align: center;
    margin-bottom: 10px;
}
.page-course-single.faculty p a {
    color: #000;
}
.page-course-single.faculty p a:hover {
  color: #009846;
}
.page-course-single.faculty .team-item {
    min-height: 100%;
}
.page-course-single.faculty .link {
  margin-bottom: 0px;
}
.page-course-single.faculty .link a {
  color: #009846;
}
.faculty-profile-page .team-single-image {
    width: calc(30% - 30px);
}
.faculty-profile-page .team-about-box {
  align-items: flex-start;
}
.faculty-profile-page .team-about-content {
    width: calc(70% - 30px);
}




@media (max-width: 480px) {
.footer-bottom {
  line-height: 25px;
}
.call-left .icon {
  width: 55px;
}
.ai-section {
  background-position: left;
}
.faculty-profile-page .team-about-box {
    align-items: flex-start;
    display: block;
    width: 100%;
}
.faculty-profile-page .team-single-image {
    width: calc(100% - 0px);
}
.faculty-profile-page .team-about-content {
    width: calc(100% - 0px);
}
.faculty-profile-page .title {
    margin-top: 25px;
}




}