@import url('https://fonts.cdnfonts.com/css/refina');
:root {
  --primary-color: #002855;
  --Secondary-color: #F98513;
  --theme-color: #fefcfa;
  --shade-color: #9BACD8;
  --title-color: #907C4B;
  --body-color: #001A52;
  --gray-color: #383838;
  --warning-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-color: #f5f5f5;
  --dark-color: #15161C;
  --white-color: #fff;
  --black-color: #000;
  --hr-color: #000;
  --Refina-font: 'Refina', sans-serif;
  --Lato-sans-font:  "Lato", sans-serif;
 	--Bilbo-Swash: "Bilbo Swash Caps", cursive;
  --icon-font: "FontAwesome";
  --body-fz: 16px;
}

/* 01 Default CSS */
html, body {
  scroll-behavior: smooth !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

body {
  color: var(--body-color);
  background-color: var(--theme-color);
  font-size: var(--body-fz);
  font-family: var(--Lato-sans-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 24px;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: var(--title-color);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--Refina-font);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 300px) and (max-width: 768px) {
  h1 {
  font-size: 32px;
  line-height: 1.3;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

h4 {
  font-size: 22px;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}
}

hr {
  margin: 20px 0;
  border-color: var(--hr-color);
}

ol {
  list-style: decimal;
}
/* li{
  list-style: none;
} */

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: var(--gray-color);
  cursor: pointer;
  font-size: var(--body-fz);
  font-weight: 400;
}

*::-moz-selection {
  background: var(--gray-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--gray-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--gray-color);
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}
::-webkit-input-placeholder {
    color: var(--body-color);
}

:-ms-input-placeholder {
    color: var(--body-color);
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: var(--theme-color);
  background: var(--theme-color);
}
.btn-theme:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: var(--gray-color);
}

.bg-white {
  background: #fff;
}

.bg-cream {
  background: #f8f7f0;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: var(--theme-color);
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: var(--gray-color);
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: var(--theme-color);
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.common-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .common-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 14px;
  }
}
.common-subtitle.style-color-white {
  color: var(--white-color);
}
.common-subtitle.style-color-2 {
  color: var(--Secondary-color);
}
.common-subtitle.style-color-3 {
  color: var(--primary-color);
}
.common-subtitle.m-b-0 {
  margin-bottom: 0;
}

.common-title {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .common-title {
    margin-bottom: 20px;
  }
}
.common-title h2 {
  font-weight: 600;
  font-size: 38px;
  line-height: 42px;
  color: var(--body-color);
  margin-bottom: 0 !important;
}
.ornament-divider{
    max-width:200px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .common-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .common-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .common-title h2 {
    font-size: 22px;
    line-height: 30px;
  }
  p{
    font-size: 14px;
  }
}
.common-title.style-color-white h2 {
  color: var(--white-color);
}
.common-title.style-color-light h2 {
  color: var(--light-color);
}
.common-title.style-color-2 h2 {
  color: var(--Secondary-color);
}
.common-title.style-color-3 h2 {
  color: var(--primary-color);
}
.common-title.m-b-0 {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1392px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}
.description{
    margin-top: 20px;
}
/*====================================================================
    Components
====================================================================*/
/* 02 Preloader CSS */
.dark #preloader {
  background-color: #ffffff;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  z-index: 999999;
}

.preloader {
  width: 200px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader img {
  width: 100%;
}


/*  Button CSS */
.boton-elegante {
  padding: 12px 24px;
  border: 2px solid var(--shade-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 400;
}

.boton-elegante:hover {
  border-color: transparent;
  background: #c59a3b;  
}
.boton-elegante-white {
  padding: 12px 24px;
  border: 2px solid var(--shade-color);
  background-color: var(--white-color);
  color: var(--body-color);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
    font-weight: 400;
}

.boton-elegante-white:hover {
  border-color: transparent;
  background: #c59a3b;  
}
.boton-elegante-topper {
  padding: 8px 24px;
  border: 2px solid var(--shade-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
    font-weight: 400;
}
.boton-elegante-topper:hover {
  border-color: transparent;
  background: #c59a3b;  
}

.e-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--albert-sans-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--primary-color);
  padding: 16px 25px;
  /* background: var(--Secondary-color); */
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
.e-primary-btn:before {
  content: "";
  position: absolute;
  left: -110%;
  top: 50%;
  width: 200%;
  height: 200%;
  /* background: var(--primary-color); */
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 200px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.has-icon {
  padding: 5px 5px 5px 5px;
  gap: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn.has-icon {
    gap: 10px;
  }
}
.e-primary-btn .icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}


@media (max-width: 1399px) {
  .e-primary-btn .icon-wrap {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
.e-primary-btn .icon-wrap .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 15px;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
.e-primary-btn .icon-wrap .icon i {
  flex: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.is-hover-white:before {
  background: var(--white-color);
}
.e-primary-btn.is-hover-white:hover {
  color: var(--primary-color);
}
.e-primary-btn.is-hover-white:hover .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
/* .e-primary-btn:hover {
  color: var(--Secondary-color);
} */
.e-primary-btn:hover:before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.e-primary-btn:hover .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
.e-primary-btn:hover .icon-wrap .icon i {
  transform: translateX(100%);
}
.e-primary-btn.has-small .icon-wrap {
  width: 34px;
  height: 34px;
}
@media (max-width: 991px) {
  .e-primary-btn.has-small .icon-wrap {
    width: 40px;
    height: 40px;
  }
}

/* 04 Header Css */
.logo-wrap img {
  width: 100%;
  max-width: 124px;
}

.logo-wrap-2 {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 0;
  padding: 20px 52px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    line-height: 1.1;
}

.school-name {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    color: var(--white-color); 
    text-transform: uppercase;
}

.school-name-second {
    font-weight: 600;
    font-size: 16px;
    color: var(--white-color); 
    letter-spacing: 0.5px;
        text-transform: uppercase;
}

.tagline {
    font-size: 11px;
    color: #dddddd;
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 1399px) {
  .logo-wrap-2 {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-wrap-2 {
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .logo-wrap-2 {
    padding: 15px 20px;
  }
}
.logo-wrap-2 img {
  max-width: 165px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-wrap-2 img {
    max-width: 125px;
  }
}

.header-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom {
    padding: 10px 0;
  }
}

/* Sticky Header */

/* ================================
   STICKY GLASS EFFECT
================================ */
.header-bottom-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation-name: fadeInDown;
    animation-duration: .8s;
    animation-fill-mode: both;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
    padding: 4px 0;
    z-index: 999;
}

/* Logo shrink */
.header-bottom-2.sticky .logo-wrap img {
    width: 100%;
    max-width: 80px;
}

/* Logo text color change */
.header-bottom-2.sticky .logo-text h5,
.header-bottom-2.sticky .logo-text h6,
.header-bottom-2.sticky .logo-text .tagline {
    color: var(--white-color);
}

/* Nav text color change */
.header-bottom-2.sticky .main-menu-3 ul li a {
    color: var(--white-color);
}

/* Header info color change */
.header-bottom-2.sticky .header-info-content span,
.header-bottom-2.sticky .header-info-content p a {
    color: var(--white-color);
}

.header-bottom-2.sticky .main-menu-3 {
    padding: 3px;
    background: none;
    backdrop-filter:  none;
    border: none;
    border-radius: 30px;
}
.header-bottom-2.sticky .main-menu-3 ul .has-dropdown .sub-menu li a:hover {
    color: #383838;
    background: var(--Secondary-color);
}
.header-bottom-2.sticky .main-menu-3 ul .has-dropdown .sub-menu li a{
    display: block;
    color: #383838;
    font-size: 14px;
    border-radius: 0;
    background: none;
    padding: 5px 20px;
}
.header-bottom-2.sticky .main-menu-3 ul li:hover a {
  color: var(--Secondary-color);
}
/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-bottom-2 {
  padding-left: 85px;
  padding-right: 85px;
  /* padding-top: 12px;
  padding-bottom: 12px; */
  /* position: absolute; */
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-bottom-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bottom-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}

.header-bottom-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom-layout-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left {
    gap: 10px;
  }
}

.header-left-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-2 {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-2 {
    gap: 10px;
  }
}

.header-left-4 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-4 {
    gap: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-4 {
    gap: 10px;
  }
}

.header-left-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 30%;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-3 {
    width: 34%;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .header-left-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 62%;
    gap: 20px;
}
}
@media (min-width: 300px) and (max-width: 576px) {
  .header-left-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 74%;
    gap: 20px;
}
}


.header-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-middle {
    padding: 10px 12px;
  }
}
.header-middle .header-info-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-right {
    gap: 10px;
  }
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  display: inline-block;
}
.main-menu ul li:hover a {
  background: rgba(0, 69, 64, 0.1);
}
.main-menu ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--primary-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.main-menu-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-2 ul li {
  display: inline-block;
}
.main-menu-2 ul li:hover a {
  color: var(--Secondary-color);
  background: rgba(217, 217, 217, 0.16);
}
.main-menu-2 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-2 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-2 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-2 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-2 ul .has-dropdown > a:after {
  content: "\f0d7";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
}
.main-menu-2 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-2 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-2 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-2 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.main-menu-3 {
  padding: 3px;
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
}
.main-menu-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-3 ul li {
  display: inline-flex;
  align-items: center;
}
.main-menu-3 ul li:hover a {
  color: var(--Secondary-color);
}
.main-menu-3 ul li:first-child:before {
  width: 0;
  margin: 0;
}
.main-menu-3 ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin-right: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.main-menu-3 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-3 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-3 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-3 ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 400;
  font-size: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown:hover > a:after {
  transform: rotate(140deg);
  content: "+";
  font-family: var(--icon-font);
  -webkit-transform: rotate(140deg);
  -moz-transform: rotate(140deg);
  -ms-transform: rotate(140deg);
  -o-transform: rotate(140deg);
}
.main-menu-3 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 120%;
}
.main-menu-3 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 140%;
  width: 200px;
  background: #fff;
  border-radius: 0px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;

}
.main-menu-3 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-3 ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu-3 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 14px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-3 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info {
    gap: 5px;
  }
}
.header-info .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-icon-2 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(0, 69, 64, 0.1);
  border: 1.5px solid rgba(0, 69, 64, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(56, 56, 56, 0.8);
}
.header-info .header-info-content p {
  font-family: var(--Refina-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
.header-info .header-info-content p a {
  color: var(--primary-color);
}
.header-info .header-info-content p a:hover {
  color: var(--theme-color);
}

.header-info-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 {
    gap: 10px;
  }
}
.header-info-2 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
  color: #f8f7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-2 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-2 .header-info-content p {
  font-family: var(--Lato-sans-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-2 .header-info-content p a {
  color: var(--white-color);
}
.header-info-2 .header-info-content p a:hover {
  color: var(--Secondary-color);
}

.header-info-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 {
    gap: 10px;
  }
}
.header-info-3 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--Secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-3 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-3 .header-info-content p {
  font-family: var(--Refina-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-3 .header-info-content p a {
  color: var(--white-color);
}
.header-info-3 .header-info-content p a:hover {
  color: var(--Secondary-color);
}

.header-bar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar {
    width: 45px;
    height: 45px;
  }
}
.header-bar .bar {
  background: var(--primary-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar .bar {
    width: 18px;
  }
}
.header-bar .bar-1 {
  margin-top: -6px;
}
.header-bar .bar-3 {
  margin-top: 6px;
}
.header-bar.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar.active .bar {
  background: var(--white-color);
}
.header-bar.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar.active .bar-2 {
  left: 200%;
}
.header-bar.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 {
    width: 45px;
    height: 45px;
  }
}
.header-bar-2 .bar {
  background: var(--white-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 .bar {
    width: 18px;
  }
}
.header-bar-2 .bar-1 {
  margin-top: -6px;
}
.header-bar-2 .bar-3 {
  margin-top: 6px;
}
.header-bar-2.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar-2.active .bar {
  background: var(--white-color);
}
.header-bar-2.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-2.active .bar-2 {
  left: 200%;
}
.header-bar-2.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-3 {
  width: 81px;
  height: 81px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 0 16px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (max-width: 767px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
.header-bar-3 .bar {
  background: var(--white-color);
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 .bar {
    width: 18px;
  }
}
.header-bar-3 .bar-1 {
  margin-top: -6px;
}
.header-bar-3 .bar-3 {
  margin-top: 6px;
}
.header-bar-3.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar-3.active .bar {
  background: var(--white-color);
}
.header-bar-3.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-3.active .bar-2 {
  left: 200%;
}
.header-bar-3.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-divider-bar {
  width: 30px;
  height: 1.6px;
  opacity: 0.15;
  border: 1px solid #004540;
  transform: rotate(90deg);
}

.header-section {
  position: relative;
  z-index: 99;
}

.header-section-1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.header-section-3 {
  position: relative;
  z-index: 10;
}
.header-section-3 .e-primary-btn {
  background: var(--primary-color);
  border: none;
  color: var(--Secondary-color);
}
.header-section-3 .e-primary-btn:before {
  background: var(--Secondary-color);
}
.header-section-3 .e-primary-btn .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
.header-section-3 .e-primary-btn:hover {
  color: var(--primary-color);
}
.header-section-3 .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

.header-section-4 .e-primary-btn .icon-wrap {
  color: var(--Secondary-color);
}
.header-section-4 .e-primary-btn:hover .icon-wrap {
  color: var(--primary-color);
}

.header-section-5 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-section-5 .e-primary-btn .icon-wrap {
  color: var(--Secondary-color);
}
.header-section-5 .e-primary-btn:hover .icon-wrap {
  color: var(--primary-color);
}

  /*------------------------------------------
	= OffCanvas Css
	-------------------------------------------*/
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-sidebar .off-canvas-sidebar-close {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 0 4px 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover {
  background: var(--error-color);
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-sidebar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

.off-canvas-sidebar-body {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  padding: 24px;
  padding-top: 70px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-sidebar-body {
    max-width: 100%;
  }
}
.off-canvas-sidebar-body.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-sidebar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-sidebar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

.off-canvas-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-thumb img {
  width: 100%;
  border-radius: 10px;
}

.off-canvas-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.off-canvas-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.off-canvas-contact-item:hover .icon {
  color: var(--primary-color);
  background: var(--Secondary-color);
}
.off-canvas-contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-contact-item .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--title-color);
  margin-bottom: 4px;
}
.off-canvas-contact-item .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.off-canvas-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 50px;
}
.off-canvas-social-links a:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
}

.off-canvas-menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-menubar .off-canvas-head {
  padding: 0 0 0 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.off-canvas-menubar .off-canvas-menubar-close {
  padding: 20px 30px 20px 30px;
  border-left: 1px solid #E5E5E5;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close:hover {
  color: var(--white-color);
  background: var(--error-color);
}
.off-canvas-menubar .off-canvas-menubar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-menubar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-menubar-body {
  position: fixed;
  left: -100%;
  top: 0;
  width: 400px;
  background: var(--primary-color);
  z-index: 30;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-menubar-body {
    max-width: 100%;
  }
}
.off-canvas-menubar-body.active {
  left: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-menubar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-menubar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

.off-canvas-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  text-align: left;
  padding: 20px 30px 40px;
}
.off-canvas-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.off-canvas-menu ul li {
  display: block;
  border-bottom: 1px solid #fdedf1;
}
.off-canvas-menu ul li:hover > a {
  color: var(--theme-color);
}
.off-canvas-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
  padding-left: 0px;
}
.off-canvas-menu ul .has-dropdown > a:after {
  content: "\f078";
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menu ul .has-dropdown.active > a {
  color: var(--Secondary-color);
}
.off-canvas-menu ul .has-dropdown.active > a:after {
  transform: translateY(-50%) rotate(180deg);
}
.off-canvas-menu ul .has-dropdown li {
  padding-left: 20px;
}
.off-canvas-menu ul .has-dropdown li:first-child {
  border-top: 1px solid #fdedf1;
}
.off-canvas-menu ul .has-dropdown li:last-child {
  border-bottom: 0;
}
.off-canvas-menu ul .has-dropdown li a {
  font-size: 14px;
  padding: 10px 0;
}
.off-canvas-menu ul .has-dropdown .sub-menu {
  display: none;
}

.off-canvas-menubar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

  /*------------------------------------------
	= footer
	-------------------------------------------*/
.footer-section {
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
  color: var(--Secondary-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}
.footer-bottom-layout .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}
.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--Secondary-color);
}

.footer-widget .w-title {
  font-family: var(--Refina-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}
.footer-widget ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 991px) {
  .footer-widget ul li a {
    font-size: 14px;
  }
}
.footer-widget ul li a:after {
  content: "\f061";
  font-family: var(--icon-font);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-left: 5px;
  line-height: 1;
}
.footer-widget ul li a:hover {
  color: var(--Secondary-color);
}
.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}
.about-widget .footer-logo img {
  max-width: 88px;
}
.about-widget .text p {
  color: #fff;
  margin-bottom: 15px;
}
.about-widget .info p {
  color: #fff;
  margin-bottom: 4px;
}

.about-widget .info p span {
  color: var(--Secondary-color);
}
.about-widget .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.about-widget .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}
.about-widget .social-links a:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
}

.subscribe-form .input-checkbox {
  margin-top: 20px;
}
.subscribe-form .input-checkbox input {
  display: none;
}
.subscribe-form .input-checkbox input:checked + label .check-mark {
  background: var(--Secondary-color);
}
.subscribe-form .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--Secondary-color);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
    gap: 8px;
  }
}
.get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}
.get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
  color: var(--Secondary-color);
  font-size: 20px;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}
.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.get-in-touch .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.adjusted-width {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}
@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
}


  /*------------------------------------------
	= Top bar (index)
	-------------------------------------------*/
 .hero-slider-social
 {
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 10%;
    z-index: 99;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transform: translateY(50%);
}

 .hero-slider-social .social-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
 .hero-slider-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    color: var(--primary-color);
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
}
.social-links img {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  opacity: 0.8;
}

/* Tooltip */
.social-links a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

/* Tooltip arrow */
.social-links a::before {
  content: "";
  position: absolute;
  bottom: 118%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111;
  opacity: 0;
  transition: 0.25s ease;
}

.social-links a:hover::after,
.social-links a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-section-2{
      width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.top-bar {
  background: var(--primary-color);
  padding-top: 0px;
  padding-bottom: 0px;
}

.top-bar-content {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.top-bar-content .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .top-bar-content .text-wrap {
    align-items: flex-start;
  }
}

.top-btn {
  padding: 7px 10px;
  border-radius: 6px;
}

.top-btn-2 {
  background: #85BF18;
  color: var(--white-color);
}

  /*------------------------------------------
	= slider (index)
	-------------------------------------------*/
  .hero-slide-2 {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Overlay */

.video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.45); /* adjust darkness */
    z-index:1;
}

/* Content above overlay */

.hero-content-2{
    position:relative;
    z-index:2;
    color:#fff;
}
.banner-school-name{
  font-size: 16px !important;
  line-height: 38px !important;
  margin-bottom: 0 !important;
}

.hero-slide-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 508px;
  padding-bottom: 120px;
  overflow: hidden;
  height: 600px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 {
    padding-top: 280px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 {
    padding-top: 280px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 {
    padding-top: 308px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 {
    padding-top: 208px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-slide-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
.hero-slide-2 .s-shape-2 {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
    top: 35%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
.hero-slide-2 .blur-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 100%;
  background: rgba(0, 69, 64, 0.02);
  border-radius: 50%;
  z-index: -2;
  backdrop-filter: blur(8px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 .blur-circle {
    width: 76%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .blur-circle {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .blur-circle {
    width: 0;
  }
}
.hero-slide-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Adjust 0.6 for darker/lighter */
    z-index: -1;
}

.hero-content-2 {
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-2 .title {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title {
    max-width: 480px;
  }
}
.hero-content-2 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 68px;
  line-height: 74px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title h1 {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title h1 {
    font-size: 58px;
    line-height: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-2 .title h1 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}
.hero-content-2 .title span {
  color: var(--Secondary-color);
}

.hero-slider-active-2 {
  position: relative;
  z-index: 1;
}
.hero-slider-active-2 .hero-slider-pagination-2 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #868681;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F8F7F0;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFE175;
}
/* Patron Image */

.patron-banner-img{
	position:absolute;
	left:60px;
	bottom:60px;
	z-index:3;
}

.patron-banner-img img{
	height:200px;
	width:auto;
	object-fit:contain;
}

/* Responsive */

@media (max-width:768px){

.patron-banner-img{
	left:10px;
}

.patron-banner-img img{
	height:120px;
}

}
  /*------------------------------------------
	= about section (index)
	-------------------------------------------*/
.why-us-section.style-2 {
  margin-bottom: -155px;
}
.why-us-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  right: -26%;
  bottom: -40%;
}
.why-us-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
    overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section {
    background-size: contain;
  }
}
.why-us-section .left {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .left {
    width: 76%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .left {
    width: 96%;
  }
}

@media (min-width: 1400px) {
  .why-us-content {
    padding-left: 20px;
  }
}
.why-us-content .text {
  margin-bottom: 20px;
}

.school {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .school {
    flex-direction: column;
    align-items: start;
    margin-bottom: 30px;
    gap: 15px;
  }
}
 .school-head{
  font-weight: 600;
  margin-bottom: 14px;
}
.school .school-left,
.school .school-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.school .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-us-section-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: 1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .s-shape-1 {
    left: 84%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .s-shape-1 {
   left: 84%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 {
      left: 43%;
      top: 64%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
    left: 43%;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
  }
}

.why-us-section-2 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.why-us-section-2 .c-shape-1 {
  position: absolute;
  right: -30%;
  bottom: -50%;
  z-index: -1;
}
.why-us-section-2 .why-us-section-2-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 722px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .why-us-section-2-bg {
    display: none;
  }
}
.why-us-section-2 .why-us-section-2-bg .left-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-section-2 .why-us-section-2-bg .right-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Full width container */
.video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

  /*------------------------------------------
	= admission section
	-------------------------------------------*/
.admission-section .admission-card {
    position: relative;
    border-radius: 16px;
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    color: #fff;
}

/* Dark overlay for text visibility */
.admission-section .admission-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.795), rgba(0,0,0,0.2));
    z-index: 1;
}

/* Content above overlay */
.admission-section .admission-card .content {
    position: relative;
    z-index: 1;
}
.admission-section .admission-card .content h5{
    color: var(--white-color);
}
/* Hover effect */
.admission-section .admission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Typography */
.admission-section .admission-card .school-name {
    font-size: 13px;
    opacity: 0.85;
}

.admission-section .admission-card h5 {
    font-weight: 600;
    margin: 8px 0;
}

.admission-section .admission-card p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .admission-section .admission-card {
        min-height: 220px;
        padding: 30px 20px;
    }
}

  /*------------------------------------------
	= academics section
	-------------------------------------------*/

.academics-section{
     position: relative;
   /* padding:  20px 0 20px  0; */
    overflow: hidden;
    z-index: 1;
}
.academics-section .bg-shape{
    position: absolute;
    z-index: 1;
}

.academics-section .shape-left{
    left: 2%;
    top: 20%;
    transform: translateY(-50%);
    max-width: 180px;
    width: 80px;
        animation: floatButterfly 6s ease-in-out infinite;
}

.academics-section .shape-right{
    right: 2%;
    top: 40%;
    max-width: 200px;
    width: 80px;
        animation: floatButterfly 6s ease-in-out infinite;
}
/* Floating animation */
@keyframes floatButterfly {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.academics-section .academics-content{
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
}


.academics-section .academics-content .main-title{
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.academics-section .academics-content .description{
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px){
    .academics-section .academics-content .main-title{
        font-size: 32px;
    }
    .academics-section .shape-left{
        width: 60px;
    }
    .academics-section .shape-right{
        width: 60px;
    }
}

@media (max-width: 576px){
    .academics-section{
        padding: 80px 0;
    }
    .academics-section .academics-content .main-title{
        font-size: 26px;
    }
    .academics-section .shape-left{
        left: 34px;
        width: 40px;
        opacity: 0.8;
    }
    .academics-section .shape-right{
        right: 24px;
        width: 40px;
        opacity: 0.8;
    }
}

/* Card */

.activity-card{
    background:var(--white-color);
    padding:35px 20px;
    transition:0.3s;
    height:100%;
    text-align: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.activity-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* SVG Icon */

.activity-icon{
    width:50px;
    height:50px;
    margin-bottom:15px;
}

/* Text */

.activity-card p{
    margin:0;
    font-weight:500;
    color:var(--body-color);
}
.activity-card p span{
    margin:0;
    font-size:10px;
    font-weight:500;
    color:var(--body-color);
}


/* Responsive */

@media (max-width:768px){

.activity-card{
    padding:25px 15px;
}

.activity-icon{
    width:40px;
}

.activity-card p{
    font-size:14px;
}

}
  /*------------------------------------------
	= top announcement
	-------------------------------------------*/
.announcement-bar {
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

.announcement-label {
    font-family: var(--Refina-font);
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
    align-items: center;
    align-content: center;
    vertical-align: middle;
    justify-content: center;
    display: flex;
}
/* Live Circle */

.announcement-live-circle{
width:22px;
height:22px;
border:1px solid #ffffff;   /* white outer ring */
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-right:10px;
}

/* Inner Red Dot */

.announcement-live-circle::before{
content:"";
width:10px;
height:10px;
background:#ff0000;
border-radius:50%;
box-shadow:0 0 6px rgba(255,0,0,0.7);
animation:livePulse 1.4s infinite;
}

/* Pulse animation */

@keyframes livePulse{
0%{opacity:1;}
50%{opacity:.4;}
100%{opacity:1;}
}

.announcement-marquee {
  flex: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 15px;
color: var(--white-color);
}

.marquee-item i {
  color: var(--Secondary-color);
  font-size: 16px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

  /*------------------------------------------
	= message
	-------------------------------------------*/

/* messages */
#testimonialFadeSlider {
    position: relative;
}

/* Base Arrow Style */
.custom-arrow {
    position: absolute;
    bottom: 320px;
    width: auto;
    height: auto;
    background: none;
    border: none;
    opacity: 1;
    color:var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Desktop Position */
.carousel-control-prev.custom-arrow {
    right: 60px;
    left: auto;
}

.carousel-control-next.custom-arrow {
    right: 20px;
}
.carousel-control-prev.custom-arrow i,
.carousel-control-next.custom-arrow i{
  background-color: #f2f5f5;
      padding: 9px 17px;
      text-align: center;
      display: flex;
      justify-content: center;
      border-radius: 34px;
}


/* Hover Effect */
.custom-arrow:hover {
    color: var(--Secondary-color);
    transform: translateY(-3px);
}

/* Tablet Adjust */
@media (max-width: 992px) {
    .custom-arrow {
        top: 15px;
        font-size: 18px;
    }

    .carousel-control-prev.custom-arrow {
        right: 50px;
    }

    .carousel-control-next.custom-arrow {
        right: 15px;
    }
}

/* Mobile Layout */
@media (max-width: 576px) {

    .custom-arrow {
        position: static;
        font-size: 22px;
        margin: 10px 15px;
    }

    /* Center arrows below card */
    #testimonialFadeSlider .carousel-control-prev,
    #testimonialFadeSlider .carousel-control-next {
        display: inline-block;
    }

    #testimonialFadeSlider {
        text-align: center;
    }
}


  /*------------------------------------------
	= TOPPER section
	-------------------------------------------*/
.admission-section {
    position: relative;
    overflow: hidden; /* important */
}
.topper-main-head {
  text-align: center;
  margin-bottom: 24px;
}
.topper-heading{
  margin-bottom: 0;
}
.topper-slider .carousel-inner,
.birthday-slider .carousel-inner{
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
/* Card */

.topper-card{
background:var(--white-color);
overflow:hidden;
position:relative;
min-height:340px;

}
.birthday-card{
background:var(--white-color);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
overflow:hidden;
position:relative;
min-height:340px;
}
/* Image wrapper */

.topper-img{
position:relative;
}

.topper-img img{
width:100%;
height:210px;
object-fit:cover;
border:10px solid #fff;
}

.birthday-img{
position:relative;
}

.birthday-img img{
width:100%;
height:210px;
object-fit:cover;
border:10px solid #fff;
}

/* Score badge bottom-left */

.score-badge{
position:absolute;
bottom:-62px;
right:10px;
background:#002855;
color:#fff;
padding:24px 18px;
font-weight:600;
clip-path:polygon(0 0,100% 0,100% 80%,50% 100%,0 80%);
}

/* Card content */

.topper-info{
padding:15px 18px;
}
.topper-info h6{
margin-bottom: 0;
}
.birthday-info{
padding:15px 18px;
}
.birthday-info h6{
margin-bottom: 0;
}
/* Slider controls */

.slider-controls{
display:flex;
justify-content:center;
gap:15px;
margin-top:15px;
}

.slider-controls button{
position:static;
width:40px;
height:40px;
background:#002855;
border:none;
border-radius:50%;
color:#fff;
opacity:1;
}

.slider-controls button:hover{
background:#c59a3b;
}

/* Responsive */

@media (max-width:768px){
.birthday-img img,
.topper-img img{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:cover;
}

.score-badge{
    padding:8px 10px;
    font-size:14px;
}

}

/* Balloons container */

.balloons-wrapper{
position:absolute;
left:0;
bottom:-120px;
width:100%;
height:100%;
pointer-events:none;
}

/* Balloon Base */

.balloon{
position:absolute;
width:32px;
height:36px;
border-radius:50% 50% 45% 45%;
box-shadow:
inset -8px -12px 25px rgba(0,0,0,0.25),
inset 8px 10px 20px rgba(255,255,255,0.4),
0 12px 15px rgba(0,0,0,0.2);
animation:floatBalloon linear infinite;
}

/* Balloon string */
.balloon::before{
content:"";
position:absolute;
width:8px;
height:4px;
background:rgba(255,255,255,0.6);
border-radius:50%;
top:12px;
left:12px;
filter:blur(1px);
}
.balloon::after{
content:"";
position:absolute;
width:1px;
height:38px;
background:#cacaca;
top:100%;
left:50%;
transform:translateX(-50%);
}

/* Balloon colors */

.balloon1{
background:radial-gradient(circle at 30% 30%, #ff8080, #d40000);
left:10%;
animation-duration:14s;
}

.balloon2{
background:radial-gradient(circle at 30% 30%, #66b3ff, #0047b3);
left:25%;
animation-duration:16s;
}

.balloon3{
background:radial-gradient(circle at 30% 30%, #66ff99, #00994d);
left:50%;
animation-duration:18s;
}

.balloon4{
background:radial-gradient(circle at 30% 30%, #ffd966, #e6a800);
left:70%;
animation-duration:15s;
}

.balloon5{
background:radial-gradient(circle at 30% 30%, #d699ff, #7a00cc);
left:85%;
animation-duration:17s;
}

/* Floating Animation */

@keyframes floatBalloon{

0%{
transform:translateY(0) rotate(0deg);
opacity:1;
}

50%{
transform:translateY(-50vh) rotate(5deg);
}

100%{
transform:translateY(-110vh) rotate(-5deg);
opacity:0.9;
}

}

/* Responsive */

@media (max-width:768px){

.balloon{
width:40px;
height:55px;
}

.balloon::after{
height:45px;
}

}



  /*------------------------------------------
	= newsletter
	-------------------------------------------*/
.news-index-section{
background:#f3efe8;
}
.news-index-slider{
  overflow: visible;
}
.news-index-card{
background:#fff;
padding:14px;
transition:.4s;
height:100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* .news-index-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
} */

.news-index-img{
position:relative;
overflow:hidden;
}

.news-index-img img{
width:100%;
height:250px;
object-fit:cover;
}

.news-index-tag{
position:absolute;
top:10px;
right:10px;
background:#002855;
color:#fff;
font-size:12px;
padding:4px 10px;
}

.news-index-content{
padding-top:15px;
text-align: start;
}

.news-index-date{
font-size:13px;
color:#b79c65;
display:block;
margin-bottom:8px;
}

.news-index-content p{
font-size:18px;
line-height:1.5;
color:#002855;
min-height:70px;
font-weight: 700;
font-family: var(--Refina-font);
}

.news-index-arrow{
display:flex;
justify-content:flex-end;
font-size:18px;
color:#002855;
}

.news-index-arrow:hover{
transform:translateX(6px);
}


.slider-controls{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
margin-top:30px;
}

.news-index-prev,
.news-index-next{
width:40px;
height:40px;
background:#002855;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
cursor:pointer;
position:relative;
margin-top: 0;
}

.news-index-prev::after,
.news-index-next::after{
display:none;
}

.news-index-prev i,
.news-index-next i{
font-size:14px;
}
.news-index-prev:hover,
.news-index-next:hover{
background:#c59a3b;
}
  /*------------------------------------------
	= side button
	-------------------------------------------*/

#fixedRgt {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    width: 53px;
    box-shadow: 0px 5px 5px rgba(0,0,0,.3)
}
#fixedRgt li{
  list-style: none;
}

@media(max-width: 1779px) {
    #fixedRgt {
        width:36px
    }
}

@media(max-width: 1551px) {
    #fixedRgt {
        bottom:15%
    }
}

@media(max-width: 1199px) {
    #fixedRgt {
        width:40px
    }
}

@media(max-width: 991px) {
    #fixedRgt {
        width:100%;
        bottom: 0;
        box-shadow: 0px 5px 12px rgba(0,0,0,.3)
    }
}

@media(max-width: 991px) {
    #fixedRgt li {
        flex:1 0 auto;
        list-style: none;
    }
}

#fixedRgt li a {
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Secondary-color);
    color: #fff;
    height: 44px;
    width: 4%;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--Lato-sans-font);

}

@media(max-width: 1779px) {
    #fixedRgt li a {
        height:36px;
        width: 36px;
        font-size: 14px
    }
}

@media(max-width: 1199px) {
    #fixedRgt li a {
        height:40px;
        width: 40px;
        font-size: 16px
    }
}

@media(max-width: 991px) {
    #fixedRgt li a {
        width:100%;
        height: 100%;
        font-size: 14px
    }
}

#fixedRgt li a img {
    max-height: 16px;
    max-width: 16px;
    transition: all .4s ease-in-out
}

@media(max-width: 1779px) {
    #fixedRgt li a img {
        max-height:16px;
        max-width: 16px
    }
}

#fixedRgt li a:hover {
    color: #fff;
    background: #e69b1b
}

#fixedRgt li.addmission-btn a {
    height: 204px;
    writing-mode: vertical-rl;
    white-space: nowrap
}

@media(max-width: 1779px) {
    #fixedRgt li.addmission-btn a {
        height:170px
    }
}

@media(max-width: 1199px) {
    #fixedRgt li.addmission-btn a {
        height:140px
    }
}

@media(max-width: 991px) {
    #fixedRgt li.addmission-btn a {
        writing-mode:unset;
        height: 100%
    }
}

#fixedRgt li.call a {
    background: var(--primary-color)
}

#fixedRgt li.call a:hover {
    background: #011d3d
}

#fixedRgt li.mail a {
    background: #193d66
}

#fixedRgt li.mail a:hover {
    background: #011d3d
}

#fixedRgt li.whatsapp a {
    background: #325276

}

#fixedRgt li.whatsapp a:hover {
    background: #011d3d
}

#fixedRgt li.map a {
    background: #fff
}

#fixedRgt li.map a:hover {
    background: #f1f1f1
}

  /*------------------------------------------
	= admission-section (index)
	-------------------------------------------*/

.index-admission-box{
background:var(--white-color);
padding: 60px 60px 0 60px;
position:relative;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.index-admission-image img{
max-width:320px;
width:100%;
}

.index-admission-title{
font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.index-admission-desc{
color:var(--body-color);
font-size:15px;
line-height:1.7;
margin-bottom:25px;
}

.index-admission-list{
list-style:none;
padding:0;
margin:0;
}

.index-admission-list li{
color:var(--body-color);
font-size:15px;
margin-bottom:14px;
display:flex;
gap:10px;
align-items:flex-start;
}

.index-admission-list i{
color:var(--Secondary-color);
font-size:14px;
margin-top:5px;
}

.index-admission-list strong{
color:var(--primary-color);
}

/* Tablet */

@media(max-width:991px){

.index-admission-box{
padding:40px;
}

.index-admission-image{
margin-bottom:30px;
}

}

/* Mobile */

@media(max-width:576px){

.index-admission-box{
padding:30px 20px;
}

.index-admission-title{
font-size:26px;
}

.index-admission-desc{
font-size:14px;
}

.index-admission-list li{
font-size:14px;
}

}

  /*------------------------------------------
	= gallery-section (index)
	-------------------------------------------*/

.gallery-section {
  padding: 100px 0;
  text-align: center;
    position: relative;
  overflow: hidden;
}

.gallery-section .gallery-description {
position: relative;
    z-index: 1;
    max-width: 750px;
    margin: auto;
}
.gallery-section .gallery-description .main-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.gallery-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.gallery-item {
  width: 240px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    max-width: 240px;
    min-height: 240px;
    object-fit: cover;
}

/* Random tilt effect */
.gallery-item:nth-child(1) { transform: rotate(-10deg); }
.gallery-item:nth-child(2) { transform: rotate(-4deg); }
.gallery-item:nth-child(3) { transform: rotate(6deg); }
.gallery-item:nth-child(4) { transform: rotate(10deg); }
.gallery-item:nth-child(5) { transform: rotate(4deg); }

.gallery-item:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 1;
}


@media (max-width: 767px) {

  .gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item {
    width: 100%;
    transform: none !important;
  }

  .gallery-title {
    font-size: 28px;
  }

}
.gallery-info{
text-align:center;
padding-top:10px;
}

.gallery-info h6{
font-size:14px;
color:#002855;
margin:0;
font-weight:600;
}

.gallery-info span{
font-size:12px;
color:#b79c65;
display:block;
margin-top:4px;
}

  /*------------------------------------------
	= about-story-images
	-------------------------------------------*/
.about-story-preview{
position:relative;
display:flex;
justify-content:center;
align-items:flex-end;
gap:10px;
flex-wrap:nowrap;
}

.about-story-item{
width:260px;
background:#fff;
padding:10px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:all .4s ease;
}

.about-story-item img{
width:100%;
display:block;
max-width:260px;
min-height:260px;
object-fit:cover;
}

/* Tilt effect */
.about-story-item.Emblem{
  transform:rotate(0deg) !important;
  -webkit-transform:rotate(0deg) !important;
  -moz-transform:rotate(0deg) !important;
  -ms-transform:rotate(0deg) !important;
  -o-transform:rotate(0deg) !important;
}
.about-story-item:nth-child(1){
transform:rotate(-8deg);
}

.about-story-item:nth-child(2){
transform:rotate(8deg);
}

.about-story-item:hover{
transform:rotate(0deg) scale(1.05);
z-index:1;
}


/* Tablet */

@media (max-width:991px){

.about-story-item{
width:220px;
}

.about-story-item img{
min-height:220px;
}

}
/* Mobile */

@media (max-width:767px){

.about-story-preview{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.about-story-item{
width:100%;
transform:none !important;
}

.about-story-item img{
min-height:180px;
}

}

.Story .common-title h3,
.Story .common-title h4{
  color: #fff !important;
}


/* Section */

.story-row{
display:flex;
flex-wrap:wrap;
}

/* Content Column */

.story-content-col{
display: flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 80px 60px;
}

/* Content */

/* .story-content{
max-width:520px;
} */

.story-content .common-title h3,
.story-content .common-title h4{
color: #fff;
}

.story-content p{
line-height:1.7;
margin-bottom:18px;
}

/* Image Column */

.story-image-col{
display:flex;
}

.story-image-col img{
width:100%;
height:100%;
object-fit:cover;
}

/* Responsive */

@media (max-width:991px){

.story-content-col{
padding:50px 30px;
}

.story-image-col img{
height:350px;
}

}

@media (max-width:768px){

.story-row{
flex-direction:column;
}

.story-image-col img{
height:280px;
}

}
  /*------------------------------------------
	= application
	-------------------------------------------*/
 .application{
	background-size: 20px 20px;
  }
  .app-store-btns {
	/* display: flex; */
	width: 100%;
  }
  .app-store-btns a {
	font-family: var(--Lato-sans-font);
	gap: 5px;
	margin-bottom: 10px;
	font-size: var(--body-fz);
	flex-grow: 1;
	flex-basis: 0;
	text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
	background-repeat: no-repeat;
	padding: 6px 28px 6px 42px;
	min-height: 40px;
	font-weight: 400;
	background-position: 16px;
	display: inline-flex;
	align-items: center;
}

  .app-store-btns a.apple {
	background-image: url("/images/App_Store.png");
	background-size: 16px 18px;
  }
  .app-store-btns a.google {
	background-image: url("/images/Google_Play.png");
	background-size: 16px 18px;
  }
  .app-store-btns a:hover {
   background-color: var(--Secondary-color);
   color: var(--body-color);
  }


  /*------------------------------------------
	= Leadership Messages
	-------------------------------------------*/
.testimonial-card-2 {
  background-color: var(--white-color);
  padding: 10px;
  border: 2px solid var(--white-color);
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;

}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 {
    gap: 20px;
    flex-direction: column;
  }
}
.testimonial-card-2:hover {
  border: 2px solid var(--Secondary-color);
}
.testimonial-card-2 .thumb {
  position: relative;
  z-index: 1;
  flex: none;
}
@media (max-width: 767px) {
  .testimonial-card-2 .thumb {
    width: 100%;
  }
}
.testimonial-card-2 .thumb img {
  width: 100%;
  max-width: 260px;
}
.testimonial-card-2 .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.testimonial-card-2 .thumb .video-play-btn:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
  border-color: var(--Secondary-color);
}
.testimonial-card-2 .card-content h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.testimonial-card-2 .card-content .review {
  color: var(--light-color);
  margin-bottom: 80px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
.testimonial-card-2 .card-content .review p {
  color: var(--gray-color);
}
.testimonial-card-2 .card-content .author-details h5 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
.testimonial-card-2 .card-content .author-details h5 span {
  font-weight: 400;
  font-size: 14px;
}
.testimonial-card-2 .card-content .author-details h6 {
  font-size: 16px;
  font-weight: 200;
  color: var(--body-color);
  margin-bottom: 0;
}
.testimonial-card-2 .quote-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: -1;
}




.testimonial-section-2 {
  background-color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.testimonial-section-2 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-section-2 .common-title.style-color-3 h2 {
    color: var(--white-color);
}

@media (max-width: 1700px) {
  .testimonial-section-2 .shape-1 {
    width: 80%;
  }
}
.testimonial-section-2 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 2%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .testimonial-section-2 .shape-2 {
    width: 14%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section-2 .shape-2 {
    width: 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section-2 .shape-2 {
    width: 20%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-section-2 .shape-2 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .testimonial-section-2 .shape-2 {
    width: 30%;
  }
}

.testimonial-section-2 .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

  /*------------------------------------------
	= breadcrumb
	-------------------------------------------*/
.page-header{
	position: relative;
	/* background-image: url('/images/breadcrumb.png'); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 66px;
	overflow: hidden;
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
  background:  var(--primary-color);
	z-index: 0;
}

.page-header-box{
	position: relative;
  text-align: center;
	z-index: 0;
}

.breadcrumb-wrapper {
      border-bottom: 1px solid #e2e2e2;
  }

  .breadcrumb-custom {
      margin-bottom: 0;
      background: transparent;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
  }

  .breadcrumb-custom .breadcrumb-item a {
      color: #868c92;
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .breadcrumb-custom .breadcrumb-item a:hover {
      color: var(--primary-color);
  }

  .breadcrumb-custom .breadcrumb-item.active {
      color: var(--body-color);
  }

  .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
      content: "›";
      color: #adb5bd;
  }

  .breadcrumb-icon {
      font-size: 12px;
  }

  /*------------------------------------------
	= message
	-------------------------------------------*/

.message-head {
	text-align: start;
}

/* .message-content {
	margin-left: 120px;
} */

.message-head h6 {
	font-weight: 300;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--color-heading);
	font-family: var(--font-primary);
}

.message-head h3 {
	margin-bottom: 15px;
	color: var(--primary-color);
}

.message-image {
	position: relative;
}

.message-image .qoute {
	position: absolute;
	top: 80px;
	left: -28px;
}

.message-school h6,
.message-school p {
	margin-bottom: 5px;

}
.message-school h6{
  font-family: var(--Bilbo-Swash);
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 400;
}
@media (min-width: 579px) and (max-width: 767px) {
    .message-content {
        margin-left: 0;
    }
    .message-image .qoute {
      display: none;
      }
}
@media (min-width: 300px) and (max-width: 578px) {
    .message-content {
        margin-left: 0;
    }
    .message-image .qoute {
      display: none;
      }
}


  /*------------------------------------------
	= border bottom
	-------------------------------------------*/

.bottom_block {
    display: flex;
    flex-wrap: wrap;
    gap: 82px;
    padding: 80px 0;
    background: repeating-linear-gradient(to right, #111144 0, #111144 1px, transparent 1px, transparent 18px) bottom/100% 8px no-repeat
}

.bottom_block:last-child {
    padding-bottom: 0;
    background: none
}

.bottom_block:nth-child(odd) {
    flex-direction: row-reverse
}

@media(max-width: 1779px) {
    .bottom_block {
        gap:60px;
        padding:0
    }
}

@media(max-width: 1551px) {
    .bottom_block {
        padding: 0 
    }
}

@media(min-width: 1200px)and (max-width: 1551px) {
    .bottom_block {
        background:repeating-linear-gradient(to right, #111144 0, #111144 1px, transparent 1px, transparent 15px) bottom/200% 8px no-repeat;
    }
}

@media(max-width: 1199px) {
    .bottom_block {
        gap:30px;
        padding: 0;
        background: repeating-linear-gradient(to right, #111144 0, #111144 1px, transparent 1px, transparent 10px) bottom/100% 5px no-repeat
    }
}

@media(max-width: 991px) {
    .bottom_block {
        gap:30px;
        padding: 0
    }
}
.message-one{
    position: relative;
    overflow: visible; /* important */
}
@media (max-width: 576px) {
  .message-content,
  .message-image {
    padding-bottom: 28px;
  }
}

  /*------------------------------------------
	= Achievers Section 
	-------------------------------------------*/
.achievers-preview{
position:relative;
display:flex;
justify-content:center;
align-items:flex-end;
gap:15px;
flex-wrap:nowrap;
}

/* Card */

.achiever-card{
width:260px;
background:#fff;
padding:10px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:all .4s ease;
text-align:center;
}

.achiever-card img{
width:100%;
display:block;
max-width:260px;
min-height:260px;
object-fit:cover;
}
.achiever-card::after{
content:"🏆 Achiever";
position:absolute;
top:10px;
left:10px;
background:var(--Secondary-color);
color:#000;
padding:3px 8px;
font-size:12px;
}
/* Name Section */

.achiever-info{
padding-top:12px;
}

.achiever-name{
font-size:16px;
font-weight:600;
margin-bottom:3px;
color:#222;
}

.achiever-class{
font-size:14px;
color:#777;
}

/* Tilt effect */

.achiever-main{
transform:rotate(0deg) !important;
}

.achiever-card:nth-child(1){
transform:rotate(-8deg);
}

.achiever-card:nth-child(2){
transform:rotate(8deg);
}

.achiever-card:hover{
transform:rotate(0deg) scale(1.05);
z-index:2;
}

/* Tablet */

@media (max-width:991px){

.achiever-card{
width:220px;
}

.achiever-card img{
min-height:220px;
}

}

/* Mobile */

@media (max-width:767px){

.achievers-preview{
/* display:grid; */
grid-template-columns:repeat(2,1fr);
gap:20px;
width:100% !important;
}

.achiever-card {
  width: 100%;
  transform: none !important;
  padding: 8px;
  background: #fff;
  border: 1px solid #eee;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
}

.achiever-card img{
width:100%;
height:100%;
max-width:100% !important;
object-fit:cover;
}

}

/* Small Mobile */

@media (max-width:480px){

.achievers-preview{
grid-template-columns:1fr;
}

.achiever-card{
width:100%;
}

.achiever-card img{
width:100%;
min-height:200px;
}

}
.achievers-table-wrapper{
margin-top:30px;
}

.achievers-table{
background:#fff;
font-size:15px;
text-align:center;
}

.achievers-table-head tr th{
background:var(--primary-color) !important;
color:#fff;
}

.achievers-score{
font-weight:700;
color:#198754;
}

.achievers-table tbody tr:hover{
background:#f5f7ff;
transition:.3s;
}

/* Mobile */

@media (max-width:767px){

.achievers-table{
font-size:13px;
}

.achievers-table th,
.achievers-table td{
padding:8px;
}

}
/* Remove border radius */

.achievers-accordion-item,
.achievers-accordion-btn{
border-radius:0 !important;
}

/* Student Layout */

.achievers-student{
background: #fff;
    padding: 10px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Image */

.achievers-student img{
width: 100%;
    max-width: 320px;
    max-width: 320px;
    object-fit: cover;
    display: block;
    margin: auto;
}

/* Info */

.achievers-name{
font-size:16px;
font-weight:600;
margin-bottom:3px;
margin-top: 10px;
}

.achievers-grade{
font-size:14px;
color:#777;
}

/* Mobile */

@media (max-width:767px){

.achievers-student{
flex-direction:column;
align-items:flex-start;
margin-bottom: 24px;
}

.achievers-student img{
        height: auto;
        max-width: 100%;
}

}
.achievers-student::after{
content:"🏆 Achiever";
position:absolute;
top:10px;
left:10px;
background:var(--Secondary-color);
color:#000;
padding:3px 8px;
font-size:12px;
}

  /*------------------------------------------
	= latest news
	-------------------------------------------*/

.blog-card-4 {
  background-color: #f8f7f0;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-4:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.blog-card-4:hover .content .content-bottom .read-more-btn {
  border: 2px solid var(--Secondary-color);
}
.blog-card-4:hover .content .content-bottom .read-more-btn::before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-4 .thumb {
  position: relative;
}

.blog-card-4 .thumb > img {
  width: 100%;
    display: block;
  overflow: hidden;
}
.blog-card-4 .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card-4 .thumb .category {
  display: inline-block;
  padding: 2px 18px;
  background: var(--primary-color);
  /*border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  */ 
  color: var(--white-color);
}
.blog-card-4 .thumb .category a:hover {
  color: var(--primary-color);
  background: var(--white-color);
}
.blog-card-4 .content {
  padding: 24px 102px 26px 30px;
}
.blog-card-4 .content .blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.blog-card-4 .content .blog-info p {
  font-family: var(--albert-sans-font);
  color: var(--body-color);
  margin-bottom: 0;
}
.blog-card-4 .content .blog-info .publisher-info,
.blog-card-4 .content .blog-info .date,
.blog-card-4 .content .blog-info .comment,
.blog-card-4 .content .blog-info .view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-4 .content .blog-info .publisher-info img,
.blog-card-4 .content .blog-info .date img,
.blog-card-4 .content .blog-info .comment img,
.blog-card-4 .content .blog-info .view img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.blog-card-4 .content .title h3 {
  margin-bottom: 12px;
}

.blog-card-4 .content .read-more-btn {
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card-4 .content .read-more-btn:hover {
  color: var(--white-color);
}

.detail-thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 24px;
}
.detail-thumb-wrap img {
  border-radius: 10px;
}

.blog-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.blog-tags .tag-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-tags .tag-wrap p {
  font-family: var(--Lato-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.blog-tags .tag-wrap .tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-tags .tag-wrap .tags button {
  font-family: var(--Lato-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: var(--body-color);
  padding: 7px 12px;
  background: #f8f7f0;
  border: 1px solid var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-tags .tag-wrap .tags button:hover {
  background: var(--primary-color);
  color: var(--Secondary-color);
  border-color: var(--primary-color);
}
.blog-tags .socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-tags .socials .social-links {
  display: flex;
  gap: 10px;
  transition: all 0.3s;
}
.blog-tags .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f8f7f0;
  color: var(--body-color);
}
.blog-tags .socials .social-links a:hover {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

  /*------------------------------------------
	= download
	-------------------------------------------*/
.pdf-card{
background:#fff;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.pdf-card:hover{
transform:translateY(-4px);
}

.pdf-icon{
width:50px;
height:50px;
}

.pdf-title{
font-weight:600;
margin-bottom:4px;
font-size:15px;
}

.pdf-date{
font-size:13px;
color:#777;
margin-bottom:0;
}

/* Buttons */

.pdf-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.btn-download{
background:var(--primary-color);
color:#fff;
border-radius:30px;
padding:6px 18px;
font-size:14px;
}

.btn-download:hover{
background:#045aa0;
color:#fff;
}

.btn-preview{
background:#efeddd;
border-radius:30px;
padding:6px 18px;
font-size:14px;
}

.btn-preview:hover{
background:#aaa891;
color:#fff;
}

/* Mobile */

@media (max-width:576px){

.pdf-buttons{
width:100%;
}

.pdf-buttons .btn{
flex:1;
text-align:center;
}

.pdf-icon{
width:55px;
height:55px;
}

}



  /*------------------------------------------
	= career
	-------------------------------------------*/

/* Wrapper */
.career-wrapper {
    min-height: 100vh;
    padding: 20px;
}

/* Card */
.career-card {
    width: 100%;
    background: #ffffff;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

/* Labels */
.career-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* Inputs */
.career-control {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: 0.3s;
}

/* Focus effect */
.career-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
}

/* File */
.career-file {
    padding: 4px;
}
.career-control.career-file::file-selector-button {
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Button */
.career-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    transition: 0.3s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.career-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .career-card {
        padding: 20px;
    }
}
  /*------------------------------------------
	= sitemap
	-------------------------------------------*/
/* Footer */
.sitemap-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    position: relative;
}

/* Pattern */
.sitemap-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Title */
.sitemap-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* List */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

/* Link */
.sitemap-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--body-color);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* ICON CIRCLE */
.sitemap-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #05448b, #034479);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

/* Hover */
.sitemap-list a:hover {
    color: var(--Secondary-color);
    transform: translateX(6px);
}

/* Bottom */
.sitemap-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
}

/* Copy */
.sitemap-copy {
    margin: 0;
    font-size: 14px;
}

/* Social */
.sitemap-social a {
    margin-left: 12px;
    transition: 0.3s;
}

.sitemap-social a:hover {
    color: #ff4d94;
}

/* Responsive */
@media (max-width: 768px) {
    .sitemap-footer {
        text-align: center;
    }

    .sitemap-social {
        margin-top: 10px;
    }
}

  /*------------------------------------------
	= youtube
	-------------------------------------------*/
.youvideo-wrapper{
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio (same as your 318x238) */
    overflow: hidden;
    margin-bottom: 24px;
}

.youvideo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
  /*------------------------------------------
	= alumni
	-------------------------------------------*/
.alumni-form {
        width: 100%;
    background: #ffffff;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.alumni-form .form-section {
    margin: 30px 0;
}

.alumni-form .form-section .section-title-bg .section-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    font-family: var(--Refina-font);
}

.alumni-form .form-section .section-title-bg {
    padding: 6px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.alumni-form .form-section .form-fields .field-group .form-label {
    font-family: var(--Lato-sans-font);
    color: var(--body-color);
}

.alumni-form .form-section .form-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.alumni-form .form-section .form-fields .field-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 6px 0;
}

.alumni-form .form-section .form-fields .field-group.field-full {
    width: 100%;
}

.alumni-form .form-section .form-fields .field-group .form-control,
.alumni-form .form-section .form-fields .field-group .form-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: 0.3s;
    color: var(--body-color);
}

.alumni-form .form-section .form-fields .field-group .form-control:focus,
.alumni-form .form-section .form-fields .field-group .form-select:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
}

.alumni-form .form-section .form-fields .field-group .form-control.file-input::file-selector-button {
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* BUTTON */
.form-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--shade-color);
    padding: 8px 40px;
    border-radius: 40px;
    color: #fff;
    transition: 0.3s;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.form-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border: 2px solid var(--title-color);
}
  /*------------------------------------------
	= contact
	-------------------------------------------*/

  .info-card{
    background:#ffffff;
    padding:24px;
    height:100%;
}

.info-item{
    padding:25px 0;
    border-bottom:1px solid #e5e5e5;
}

.info-item:last-child{
    border-bottom:none;
}

.icon-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--shade-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--primary-color);
}

.contact-form-card{
    background:var(--primary-color);
    color:var(--white-color);
    padding:44px;
    height:100%;
}

.contact-form-card h2{
    font-weight:600;
}

.form-control{
    background:transparent;
    border:1px solid rgba(255,255,255,0.4);
    color:#ffffff;
    border-radius:10px;
    padding:12px 15px;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.7);
}

.form-control:focus{
    background:transparent;
    color:#fff;
    box-shadow:none;
    border-color:#ffffff;
}

textarea.form-control{
    min-height:130px;
    resize:none;
}

@media (max-width:991px){
    .contact-form-card,
    .info-card{
        padding:30px;
    }
}

  /*------------------------------------------
	= video-banner
	-------------------------------------------*/
  #videoBannerCarousel .carousel-inner{
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }
  .video-banner{
    overflow:hidden;
    position: relative;
    display: inline-block;
    padding: 12px;
    /* background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15); */
}

.video-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit:cover;
}

/* Center Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
    z-index: 2;
}

/* Hover effect */
.video-play-btn:hover {
    background: var(--Secondary-color);
    color: #ffffff;
}

/* Pulse animation */
.video-play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(233, 233, 233, 0.315);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

  /*------------------------------------------
	= butterfly
	-------------------------------------------*/

.butterfly{
  position: absolute;
  width: 90px;
  opacity: 0.25;
  pointer-events: none;
  animation: butterflyFloat 6s ease-in-out infinite;
}

/* Butterfly 1 */

.butterfly-1{
  top: 4%;
  left: 8%;
  animation-delay: 0s;
}

/* Floating animation */
@keyframes butterflyFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .butterfly {
    width: 80px;
    opacity: 0.15;
  }
  .butterfly-1{
  top: 4%;
  left: 8%;
  animation-delay: 0s;
}
}


  /*------------------------------------------
	= faq-accordion 
	-------------------------------------------*/

.faq-accordion .accordion-item {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding-bottom: 10px;
    border-radius: 0;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  padding: 22px 20px 12px 35px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--white-color);
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  border-radius: 0;
  font-family: var(--Refina-font);
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    padding: 16px 16px 8px 28px;
  }
}
@media (max-width: 767px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 16px 16px 8px 28px;
    font-family: var(--Lato-sans-font);
  }
}
.faq-accordion .accordion-item .accordion-header .accordion-button .accordion-title {
  color: var(--white-color);
  margin-right: 5px;
  font-family: var(--Refina-font);
  letter-spacing: normal;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  margin-left: auto;
  background-color: #f8f7f0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus,
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  position: absolute;
  background-color: var(--body-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus {
  width: 12px;
  height: 2px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  width: 2px;
  height: 12px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-plus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-minus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
  background-color: var(--primary-color);
  transform: rotate(180deg);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-plus {
  opacity: 1;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-minus {
  opacity: 0;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0 75px 12px 35px;
    color: #d1d1d1;
}


  /*------------------------------------------
	= Admission Preview Container 
	-------------------------------------------*/
.admission-in-preview{
position:relative;
align-items:flex-end;
gap:12px;
flex-wrap:nowrap;
}

/* Admission Card */

.admission-in-item{
width:260px;
background:#fff;
padding:10px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:all .4s ease;
}

/* Image */

.admission-in-item img{
width:100%;
display:block;
max-width:260px;
min-height:260px;
object-fit:cover;
}

/* Center Item */

.admission-in-item.admission-in-main{
transform:rotate(0deg) !important;
}

.admission-in-item:hover{
transform:rotate(0deg) scale(1.05);
z-index:2;
}

/* Tablet */

@media (max-width:991px){

.admission-in-item{
width:220px;
}

.admission-in-item img{
min-height:220px;
}

}

/* Mobile */

@media (max-width:767px){

.admission-in-preview{
display:grid;
grid-template-columns:1fr;   /* single column */
gap:16px;
}

.admission-in-item{
width:100%;
transform:none !important;
}

.admission-in-item img{
width:100%;
max-width:100%;   /* remove desktop limit */
min-height:auto;
height:auto;
object-fit:cover;
}

}
/* Small Mobile */

@media (max-width:480px){

.admission-in-preview{
grid-template-columns:1fr;
}

.admission-in-item img{
min-height:100%;
}

}
/* Info section */

.admission-in-info{
text-align:center;
padding-top:10px;
}

/* Name */

.admission-in-name{
margin:0;
}

/* Mobile */

@media (max-width:767px){

.admission-in-name{
font-size:14px;
}

}

  /*------------------------------------------
	= news
	-------------------------------------------*/
.details-content .thumb-wrap {
  border-radius: 10px;
}
.details-content .thumb-wrap img {
  border-radius: 10px;
}

.details-layout-wrap {
  display: flex;
  gap: 60px;
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
.details-layout-wrap .details-content {
  flex: 1;
  width: 100%;
  max-width: 922px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}

  /*------------------------------------------
	= open gallery
	-------------------------------------------*/
.open_gallery_item {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.open_gallery_img_wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #000;
}

.open_gallery_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 
        transform 0.7s cubic-bezier(.4,0,.2,1),
        filter 0.6s ease;
    filter: grayscale(100%);
}

.open_gallery_item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.open_gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.open_gallery_item:hover .open_gallery_overlay {
    opacity: 1;
}

.cursor_light {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.open_gallery_img_wrapper:hover .cursor_light {
    opacity: 1;
}

.open_gallery_title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.open_gallery_date {
    font-size: 12px;
    color: #8c8c8c;
}
.album-sec{
      position: relative;
}
.back-btn {
    position: absolute;
    top: 20px;
    left: 120px;
    z-index: 100;
}

.back-btn a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--body-color);
    /* background: #fff; */
    padding: 6px 14px;
    border-radius: 30px;
    /* box-shadow: 0 3px 10px rgba(0,0,0,0.15); */
    transition: 0.3s ease;
}

/* .back-btn a:hover {
    background: #f1f1f1;
    transform: translateX(-3px);
} */

.back-btn .arrow {
    font-size: 18px;
}
@media (max-width: 576px) {
.open_gallery_item{
  margin-bottom: 14px;
}
.back-btn{
  display: none;
}
}
@media (max-width: 991px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1200px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1600px) {
.open_gallery_item{
  margin-bottom: 24px;
}
}

  /*------------------------------------------
	= Modal Animation
	-------------------------------------------*/

/* Modal Width Control */
.vvm-modal .modal-dialog {
    width: clamp(300px, 90%, 900px);
    margin: auto;
    transition: all 0.4s ease;
}

/* Animation (Fade + Slide) */
.vvm-modal .modal-dialog {
    transform: translateY(50px);
    opacity: 0;
}

.vvm-modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Box */
.vvm-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    height: 100%;
}

/* Close Button */
.vvm-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 4px;
    height: 4px;
    padding: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: invert(1); /* makes icon white */
}
/* Layout Fix */
.vvm-modal .row {
    height: 100%;
}

/* =========================
   LEFT IMAGE SECTION
========================= */

.vvm-modal-left {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 300px;
    overflow: hidden;
}

/* Full Image Cover */
.vvm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================
   RIGHT CONTENT
========================= */

.vvm-modal-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.vvm-modal-right h2 {
    margin-bottom: 15px;
}

.vvm-modal-right p {
    color: var(--body-color);
    margin-bottom: 20px;
}
.vvm-actions {
    margin-top: 20px;
}

/* Admission Button */
.vvm-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.3);
}

/* Hover Effect */
.vvm-btn:hover {
    background: linear-gradient(45deg, #ff5200, #ff8c00);
    box-shadow: 0 12px 25px rgba(255, 82, 0, 0.4);
}
/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 991px) {
    .vvm-modal .modal-dialog {
        max-width: 700px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .vvm-modal-left,
    .vvm-modal-right {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .vvm-modal-left {
        height: 250px;
    }

    .vvm-modal-right {
        padding: 25px;
        text-align: center;
    }

    .vvm-badge {
        margin: 0 auto 15px;
    }
}

  /*------------------------------------------
	= Responsive 
	-------------------------------------------*/
@media (min-width: 300px) and (max-width: 575.98px) {
  h3 {
    font-size: 24px;
    line-height: 30px;
}
  .testimonial-card-2 .thumb img {
    max-width: 100%;
  }

  .why-us-content {
    margin-top: 20px;
  }

  .hero-slider-social {
    bottom: 20%;
  }

  .academics-section {
    padding-bottom: 40px;
  }

  .logo-wrap img {
    width: 100%;
    max-width: 82px;
  }

  .off-canvas-menubar .off-canvas-logo img {
    width: 100%;
    max-width: 82px;
  }

  .school-name {
    font-size: 15px;
  }

  .school-name-second {
    font-size: 14px;
  }

  .tagline {
    font-size: 10px;
  }

  .gallery-section .gallery-description .main-title {
    font-size: 22px;
    line-height: 30px;
  }

  .academics-section .academics-content .main-title {
    font-size: 22px;
    line-height: 30px;
  }

  .testimonial-card-2 .card-content .author-details h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .testimonial-card-2 .card-content h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .blog-card-4 .content {
    padding: 24px 24px 24px 24px;
}
}


/* Small only (576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .testimonial-card-2 .thumb img {
    max-width: 100%;
    }
    .why-us-content{
      margin-top: 20px;
    }
    .hero-slider-social {
    bottom: 20%;
}
.gallery-section .gallery-description .main-title {
            font-size: 22px;
        line-height: 30px;
}
    .academics-section .academics-content .main-title {
        font-size: 22px;
        line-height: 30px;
    }
}

/* Medium only (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-us-content{
      margin-top: 20px;
    }
    .why-us-section-2{
      margin-bottom: 40px;
    }
    .academics-section .academics-content .main-title {
        font-size: 28px;
        line-height: 36px;
    }
    .gallery-section .gallery-description .main-title {
         font-size: 28px;
        line-height: 36px;
}
}

/* Large only (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .why-us-content{
      margin-top: 24px;
    }
        .academics-section .academics-content .main-title {
        font-size: 30px;
        line-height: 38px;
    }
    .gallery-section .gallery-description .main-title {
         font-size: 30px;
        line-height: 38px;
}
}



/*# sourceMappingURL=main.css.map */