  /*============================================================================================
	Theme Reset
==============================================================================================*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800;900&family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600;1,700&display=swap");

/* Custom Variable CSS */
:root {
  --primary-color: #019267;
  --secondary-color: #3ccf4e;
  --tertiary-color: #f45050;
  --white-color: #ffffff;
  --white-color-2: #f8f8f8;
  --white-color-3: #e6f4f0;
  --title-color: #20262e;
  --paragraph-color: #2c3333;
  --hints-color: #767a7a;
  --border-color: #e9e9ea;
  --danger-color: #f14c4d;
  --warning-color: #fd841f;
  --success-color: #21bf73;
  --info-color: #1b9c85;
  --font-family: "Noto Sans", "Noto Sans Bengali", sans-serif;
}

*,
*::after *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Selection CSS */
::-moz-selection {
  color: var(--white-color);
  background: var(--title-color);
}
::selection {
  color: var(--white-color);
  background: var(--title-color);
}

/* ScrollBar CSS */
::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block;
}
::-moz-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block;
}
::-ms-scrollbar {
  width: 8px !important;
  height: 8px !important;
}
::-webkit-scrollbar-thumb {
  cursor: pointer !important;
  background: var(--primary-color) !important;
  border-radius: 4px;
}

/* Main Body CSS */
body {
  font-family: var(--font-family);
  background: var(--white-color);
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
html {
  font-family: var(--font-family);
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
}

/* Main Container */
.container {
  max-width: 1320px;
  padding: 0px;
}
.container-fluid {
  padding: 0;
  padding: 0px 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1350px) {
  .container {
    padding: 0% 2%;
  }
  .container-fluid {
    padding: 0% 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    padding: 0% 5%;
  }
  .container-fluid {
    padding: 0% 5%;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0% 5%;
  }
  .container-fluid {
    padding: 0% 5% !important;
  }
}

/* Theme Typhography */
img {
  max-width: 100%;
  border-radius: 4px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}
.animated:focus-visible {
  outline: none;
}
.table {
  display: table;
  width: 100%;
  height: 100%;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  transition: all 0.4s ease;
}
button:focus-visible {
  outline: none;
}
input:focus-visible {
  outline: none;
}
textarea:focus-visible {
  outline: none;
}
button {
  overflow: visible;
  border: none !important;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.btn-close:focus {
  box-shadow: none;
}
button,
input,
select,
optgroup,
textarea {
  font-family: var(--font-family);
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
}
.c-font,
.c-font a {
  font-family: var(--font-family);
}

a,
button,
input,
textarea {
  font-weight: 400;
}
img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  transition: all 0.4s ease;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;

  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: var(--font-family);
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ul li,
li {
  list-style-type: disc;
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  display: inline-block;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #bbb #bbb #bbb;
  border-radius: 3px;
  background: #fff;
  color: #bbb;
  line-height: 1;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #bbb;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #393e46;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
a {
  color: inherit;
}
a:hover,
a:focus,
a:active {
  color: var(--title-color);
}
a:hover,
a:active {
  outline: 0;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.updated:not(.published) {
  display: none;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
.infinity-end.neverending .site-footer {
  display: block;
}
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed,
iframe,
object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}

/* Heading Title */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  font-family: var(--font-family);
  color: var(--title-color);
  font-weight: 700;
  line-height: 120%;
}
h1 {
  font-size: 61px;
}
h2 {
  font-size: 49px;
}
h3 {
  font-size: 39px;
}
h4 {
  font-size: 31px;
}
h5 {
  font-size: 25px;
}
h6 {
  font-size: 20px;
}

/* Paragraph Text */
p {
  color: var(--paragraph-color);
  margin: 0;
  line-height: 150%;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 15px;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 15px !important;
  }
}
/* Cutom Padding */
.pd-top-10 {
  padding-top: 10px;
}
.pd-top-20 {
  padding-top: 20px;
}
.pd-top-30 {
  padding-top: 30px;
}
.pd-top-40 {
  padding-top: 40px;
}
.pd-top-50 {
  padding-top: 50px;
}
.pd-top-55 {
  padding-top: 55px;
}
.pd-top-60 {
  padding-top: 60px;
}
.pd-top-70 {
  padding-top: 70px;
}
.pd-top-80 {
  padding-top: 80px;
}
.pd-top-90 {
  padding-top: 90px;
}
.pd-top-100 {
  padding-top: 100px;
}
.pd-top-120 {
  padding-top: 120px;
}
.pd-btm-10 {
  padding-bottom: 10px;
}
.pd-btm-20 {
  padding-bottom: 20px;
}
.pd-btm-30 {
  padding-bottom: 30px;
}
.pd-btm-40 {
  padding-bottom: 40px;
}
.pd-btm-50 {
  padding-bottom: 50px;
}
.pd-btm-60 {
  padding-bottom: 60px;
}
.pd-btm-70 {
  padding-bottom: 70px;
}
.pd-btm-80 {
  padding-bottom: 80px;
}
.pd-btm-90 {
  padding-bottom: 90px;
}
.pd-btm-100 {
  padding-bottom: 100px;
}

/* Cutom Margin */
.mg-top-10 {
  margin-top: 10px;
}
.mg-top-20 {
  margin-top: 20px !important;
}
.mg-top-25 {
  margin-top: 25px !important;
}
.mg-top-30 {
  margin-top: 30px;
}
.mg-top-40 {
  margin-top: 40px;
}
.mg-top-46 {
  margin-top: 46px;
}
.mg-top-50 {
  margin-top: 50px;
}
.mg-top-60 {
  margin-top: 60px;
}
.mg-top-70 {
  margin-top: 70px;
}
.mg-btm-10 {
  margin-bottom: 10px;
}
.mg-btm-20 {
  margin-bottom: 20px;
}
.mg-btm-25 {
  margin-bottom: 25px;
}
.mg-btm-30 {
  margin-bottom: 30px;
}
.mg-btm-35 {
  margin-bottom: 35px;
}
.mg-btm-40 {
  margin-bottom: 40px;
}
.mg-btm-50 {
  margin-bottom: 50px;
}

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

/* Preloader CSS */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: var(--white-color-3);
  z-index: 9999999;
}
.preloader-main {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader-main div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--primary-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primary-color) transparent transparent transparent;
}
.preloader-main div:nth-child(1) {
  animation-delay: -0.45s;
}
.preloader-main div:nth-child(2) {
  animation-delay: -0.3s;
}
.preloader-main div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Back To Top CSS */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #3ccf4e2e;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\ea75";
  font-family: remixicon !important;
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--secondary-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--secondary-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .progress-wrap {
    right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .progress-wrap {
    right: 5%;
  }
}
/* End Back To Top CSS */

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

.section-bottom-btn {
  text-align: center;
  margin-top: 32px;
}
.section-head {
  margin-bottom: 24px;
}
.section-head-title {
  margin: 0;
  font-size: 31px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
}
.title-line {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: var(--border-color);
  display: block;
}
.title-line.style-2 {
  width: 76%;
}
.title-line.style-3 {
  width: 66%;
}
.title-line.style-4 {
  width: 52%;
}
.title-line.style-5 {
  width: 64%;
}

@media only screen and (max-width: 767px) {
  .section-head-title {
    font-size: 20px;
  }
}

.theme-btn {
  display: inline-flex;
  padding: 13px 16px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 6px;
  margin-right: 12px;
  line-height: 20px;
  align-items: center;
  font-weight: 700;
}
.theme-btn:hover,
.theme-btn.secondary {
  background: var(--white-color-3);
  color: var(--primary-color);
}
.theme-btn:last-child {
  margin: 0;
}
.theme-btn i {
  font-size: 20px;
  margin-left: 8px;
  position: relative;
  top: 1px;
  font-weight: normal;
}
.theme-btn.secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.theme-btn.secondary-btn {
}
@media only screen and (max-width: 767px) {
  .theme-btn {
    padding: 11px 17px;
    font-size: 15px;
    margin-right: 12px;
  }
  .theme-btn i {
    font-size: 18px;
    position: relative;
    top: 2px;
  }
}

/*============================================================================================
	End Theme Reset
==============================================================================================*/

/*============================================================================================
	Topbar Area
==============================================================================================*/
.topbar-area {
    background: var(--white-color);
    padding: 12px 0px;
  }
  .topbar-left {
    overflow: hidden;
  }
  .topbar-update-notice {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .topbar-update-notice-title {
    display: block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 6px;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .topbar-update-notice-title::before {
    position: absolute;
    content: "";
    background: var(--primary-color);
    bottom: 0;
    height: 8px;
    opacity: 1;
    right: -3px;
    top: 50%;
    transform: rotate(135deg);
    transition: all 0.2s ease;
    visibility: visible;
    width: 8px;
    margin-top: -4px;
    z-index: -1;
    transition: all 0.5s ease;
  }
  .topbar-update-notice-single {
    margin: 0;
  }
  .topbar-update-notice-single a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    font-weight: 500;
    line-height: 150%;
  }
  .topbar-right {
    float: right;
  }
  .topbar-school-info ul li {
    display: inline-block;
    margin-right: 12px;
    padding-right: 12px;
    position: relative;
    color: var(--hints-color);
    font-size: 16px;
  }
  .topbar-school-info ul li:last-child {
    margin: 0;
    padding: 0;
  }
  .topbar-school-info ul li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 24px;
    background: #e9e9ea;
    right: -0.5px;
    top: 0;
  }
  .topbar-school-info ul li:last-child::before {
    display: none;
  }
  .topbar-school-info ul li span {
    color: var(--title-color);
    font-weight: 700;
    margin-left: 6px;
  }
  /*============================================================================================
      End Topbar Area
  ==============================================================================================*/

  /*============================================================================================
	Header Area
==============================================================================================*/
/* Header Area */
.header-area {
  background: #f8f8f8;
}

.header-inner {
  background: var(--white-color);
  box-shadow: 0px 48px 72px 0px rgba(32, 38, 46, 0.12);
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 16px;
}

.header-area.is-sticky {
  position: fixed;
  width: 100%;
  top: 0px;
  transition: all 0.2s ease;
  background: var(--white-color);
  z-index: 666;
  animation: fadeInDown 1s both 0.2s;
  box-shadow: 0px 48px 72px 0px rgba(32, 38, 46, 0.12);
}

.header-area.is-sticky .header-inner {
  margin: 0;
  padding: 12px 0px;
  box-shadow: none;
}

.header-logo img {
  width: 285px;
  height: 56px;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
  float: right;
}

/* Navigation Menu */
.header-menu .navigation li {
  display: inline-block;
  position: relative;
}

.header-menu .navigation li:last-child {
  margin: 0;
  padding: 0;
}

.header-menu .navigation li a {
  padding: 8px 14px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 24px;
  z-index: 2;
  position: relative;
  text-decoration: none;
  color: #333;
}

/* Hover and Active States for Links */
.header-menu .navigation li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #009970;
  visibility: hidden;
  transition: width 0.3s ease-in-out, visibility 0s 0.3s;
}

/* Hover or Active Link */
.header-menu .navigation li a:hover::before,
.header-menu .navigation li.active a::before {
  width: 100%;
  visibility: visible;
  transition: width 0.3s ease-in-out, visibility 0s 0s;
}

/* Dropdown Menu */
.header-area .navigation li .sub-menu {
  position: absolute;
  top: 70px;
  width: 234px;
  background: #fff;
  z-index: 5222;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-20px);
  box-shadow: 0px 10px 30px #04091e17;
  border-radius: 4px;
  margin: 0;
  padding: 12px 0;
}

.header-area .navigation li.active .sub-menu a {
  background: transparent;
}

/* Second-level Submenu (Left Positioning) */
.header-area .navigation li .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: -300px;  /* Moves second-level submenu to the left */
  width: 270px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-20px);
  box-shadow: 0px 10px 30px #04091e17;
  border-radius: 4px;
  margin: 0;
  padding: 12px 0;
}

/* Active link in submenus */
.header-area .navigation li .sub-menu li.active a {
  color: var(--primary-color) !important;
  background: var(--white-color-3);
  padding: 10px 25px;
}

/* Show Submenu on Hover */
.header-area .navigation li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Show second-level submenu on hover */
.header-area .navigation li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Basic styling for submenu items */
.header-area .navigation li .sub-menu li {
  display: block;
  margin: 0;
  text-align: left;
  border-bottom: 1.5px solid #04091e17;
}

.header-area .navigation li .sub-menu li:last-child {
  border: none;
}

.header-area .navigation li .sub-menu li a {
  color: var(--title-color);
  display: block;
  padding: 10px 25px;
  font-size: 15px;
  border-radius: 0;
}

.header-area .navigation li .sub-menu li a:hover {
  color: var(--primary-color) !important;
  background: var(--white-color-3);
  padding: 10px 25px;
}

/* Dropdown arrow for first-level submenu */
.header-area .navigation li .sub-menu::before {
  background: #fff;
  bottom: 0;
  content: "";
  height: 12px;
  margin-left: -6px;
  opacity: 1;
  position: absolute;
  left: 24px;
  top: -6px;
  transform: rotate(45deg);
  transition: all 0.2s ease;
  visibility: visible;
  width: 12px;
}

/* Adjust submenu arrow position for second-level */
.header-area .navigation li .sub-menu .sub-menu::before {
  left: 268px;
  top: 20px;  /* Align the second-level arrow correctly */
}

/* Miscellaneous */
.topbar-update-notice-scroll {
  display: none;
}

@keyframes scrollLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1350px) {
  .header-right {
    display: none;
  }
  .topbar-right {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-right {
    display: none;
  }
  .topbar-right {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header-right {
    display: none;
  }
  .header-logo img {
    width: 100%;
    height: 40px;
  }
  .header-area.is-sticky .header-inner {
    padding: 18px 0;
  }
  .topbar-left {
    display: flex;
    align-items: center;
  }
  .topbar-update-notice-single {
    font-size: 14px;
  }
  .topbar-update-notice-scroll {
    display: flex;
    align-self: center;
    gap: 6px;
    overflow: hidden;
  }
  .topbar-update-notice-slider {
    display: none !important;
  }
  .topbar-update-notice-single {
    animation: scrollLeft 20s linear infinite;
  }
  .topbar-update-notice {
    gap: 12px;
  }
  .topbar-right {
    float: right;
    display: none;
  }
}


  
  /*============================================================================================
      End Header Area
  ==============================================================================================*/


  /*============================================================================================
	Hero Area
==============================================================================================*/
.hero-area {
    background: #f8f8f8;
    padding-bottom: 40px;
  }
  .hero-slider {
    margin-top: 24px;
  }
  .hero-single-slider {
    height: 480px;
    border-radius: 8px;
    position: relative;
  }
  .hero-single-slider .row.justify-content-center {
    height: 480px;
  }
  .hero-single-slider::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0) 41.46%,
      #20262e 100%
    );
    border-radius: 8px;
  }
  .hero-content {
    z-index: 2;
    position: relative;
    margin-bottom: 48px;
    text-align: center;
  }
  .hero-content-title {
    color: var(--white-color);
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .hero-area .owl-item.active .hero-content-title {
    animation: fadeInUp 1s both 1.2s;
  }
  
  /* Slider Control */
  .hero-area .owl-controls {
    position: absolute;
    width: 100%;
    bottom: 16px;
  }
  .hero-area .owl-nav {
    position: absolute;
    right: 16px;
    bottom: 0;
  }
  .hero-area .owl-dots {
    position: absolute;
    left: 14px;
    bottom: 0;
  }
  .hero-area .owl-theme .owl-nav [class*="owl-"] {
    border-radius: 4px;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    line-height: 35px;
    background: #3b884b;
    color: var(--white-color);
    font-size: 20px;
    transition: all 0.4s ease;
  }
  .hero-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--secondary-color);
  }
  .hero-area .owl-prev {
    margin-right: 12px !important;
  }
  .hero-area .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 2px;
    background: #2f7b3e;
    transition: all 0.4s ease;
  }
  .hero-area .owl-theme .owl-dots .owl-dot.active span,
  .hero-area .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
  }
  
  @media only screen and (max-width: 767px) {
    .hero-single-slider {
      height: 320px;
    }
    .hero-single-slider .align-self-end {
      align-self: initial !important;
    }
    .hero-content-title {
      font-size: 24px;
      margin-top: 60%;
    }
    .hero-content {
      margin-bottom: 0;
      padding: 0px 16px;
    }
    .hero-area .owl-theme .owl-nav [class*="owl-"] {
      width: 28px;
      height: 28px;
      line-height: 32px;
    }
    .hero-single-slider::before {
      background: linear-gradient(
        180deg,
        rgba(44, 51, 51, 0) 0%,
        rgba(44, 51, 51, 0.27) 41.46%,
        #20262e 100%
      );
    }
    .hero-area .owl-nav {
      bottom: -3px;
    }
  }
  
  /*============================================================================================
      End Hero Area
  ==============================================================================================*/
  /*============================================================================================
	About Us Area
==============================================================================================*/
.about-us-area {
    position: relative;
  }
  .about-us-img {
    position: relative;
  }
  .about-us-img::before {
    position: absolute;
    content: "";
    width: 424px;
    height: 520px;
    top: 0;
    left: 0;
    border-radius: 8px;
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0) 48.75%,
      #20262e 100%
    );
  }
  .about-us-img img {
    width: 424px;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
  }
  .about-content {
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    padding: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 530px;
  }
  .about-cont-title {
    font-size: 31px;
    position: relative;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
  }
  .title-seperetor {
    width: 217px;
    height: 5px;
    background: var(--secondary-color);
    display: block;
  }
  .about-cont-text {
    margin: 0;
    padding-top: 16px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
  }
  .about-cont-btn {
    margin-top: 12px;
  }
  .about-cont-btn .theme-btn {
    border-radius: 24px;
    font-weight: 600;
    padding: 7px 16px;
    line-height: 150%;
  }
  
  /* About Us Page */
  .about-us-page-img {
    padding-right: 12px;
  }
  .about-us-page-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
  }
  .about-us-page-content {
    padding-left: 24px;
  }
  .about-us-page-cont-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .about-us-page-cont-title::before {
    position: absolute;
    content: "";
    width: 217px;
    height: 5px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
  }
  
  /* Institute Statistics  */
  .institute-statistics-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px;
  }
  .about-mission-vission.bg-color {
    background: #f8f8f8;
  }
  .single-institute-card {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 100%;
    padding: 56px 24px;
    width: 200px;
    height: 200px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 24px;
  }
  .single-institute-card:hover {
    border: 1px solid var(--primary-color);
  }
  .single-institute-card h3 {
    margin-bottom: 4px;
    color: var(--primary-color);
    font-weight: 800;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .single-institute-card p {
    font-size: 18px;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  /* About Mission Vission */
  .about-mission-vission.bg-color {
    background: #f8f8f8;
  }
  .about-mission-vission-cont-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .about-mission-vission-cont-title::before {
    position: absolute;
    content: "";
    width: 222px;
    height: 5px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
  }
  .about-mission-vission-cont-text {
    margin-bottom: 24px;
  }
  .about-mission-vission-cont-list-title {
    margin-bottom: 24px;
    display: block;
    font-weight: 700;
    color: var(--title-color);
  }
  .about-mission-vission-cont-list ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 12px;
  }
  .about-mission-vission-cont-list ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    top: 10px;
    left: 0;
    background: var(--title-color);
  }
  .about-mission-vission-img {
    position: relative;
  }
  .about-mission-vission-img::before {
    position: absolute;
    content: "";
    width: 648px;
    height: 480px;
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0) 48.75%,
      #20262e 100%
    );
    top: 0;
    left: 0;
    border-radius: 8px;
  }
  .about-mission-vission-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
  }
  .about-mission-vission-content {
    margin-right: 24px;
  }
  .about-mission-vission-img {
    margin-left: 12px;
  }
  .about-mission-vission-img.style-2 {
    margin: 0;
    margin-right: 12px;
  }
  .about-mission-vission-content.style-2 {
    margin: 0;
    margin-left: 24px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .institute-statistics-group {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .about-mission-vission-img::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-mission-vission-content.style-2 {
      margin-left: 0;
      margin-top: 24px;
    }
    .about-mission-vission-img {
      margin-left: 0;
      margin-top: 24px;
    }
    .institute-statistics-group {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .about-us-page-content {
      padding-left: 0;
      margin-top: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .about-us-img img {
      width: 100%;
      height: 320px;
    }
    .about-us-img::before {
      width: 100%;
      height: 100%;
    }
    .about-content {
      padding: 19px;
      position: inherit;
      transform: none;
      width: 100%;
      margin-top: 24px;
    }
    .about-cont-title {
      font-size: 24px;
    }
    .title-seperetor {
      width: 92px;
      height: 4px;
    }
    .about-us-page-img img {
      height: 260px;
    }
    .about-us-page-img {
      padding-right: 0;
    }
    .about-us-page-content {
      padding-left: 0;
      margin-top: 24px;
    }
    .about-us-page-cont-title {
      margin-bottom: 16px;
      font-size: 24px;
    }
    .about-us-page-cont-title::before {
      width: 100px;
      height: 4px;
    }
    .institute-statistics-group {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .single-institute-card {
      padding: 30px 12px;
      width: 130px;
      height: 130px;
      margin-top: 0;
    }
    .single-institute-card h3 {
      font-size: 28px;
    }
    .single-institute-card p {
      font-size: 14px !important;
    }
    .about-mission-vission-cont-title {
      margin-bottom: 16px;
      font-size: 24px;
    }
    .about-mission-vission-cont-title::before {
      width: 100px;
      height: 4px;
    }
    .about-mission-vission-content {
      margin-right: 0;
    }
    .about-mission-vission-img {
      margin-left: 0;
    }
    .about-mission-vission-img img {
      height: 260px;
    }
    .about-mission-vission-img::before {
      width: 100%;
      height: 100%;
    }
    .about-mission-vission-content.style-2 {
      margin-left: 0;
      margin-top: 24px;
    }
    .about-mission-vission-img {
      margin-top: 24px;
    }
    .col-lg-6.col-12.order-class {
      order: -1;
    }
    .col-lg-6.col-12.order-class .about-mission-vission-img {
      margin: 0;
      margin-bottom: 24px;
    }
  }
  
  /*============================================================================================
      End About Us Area
  ==============================================================================================*/

  /*============================================================================================
	Corner Message Area
==============================================================================================*/
.single-corner-message {
    background: var(--white-color-2);
    padding: 20px 20px 24px 20px;
    border-radius: 8px;
    min-height: 608px;
    transition: all 0.4s ease;
  }
  /* .single-corner-message:hover {
    background: var(--white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
  } */
  .corner-message-img img {
    width: 160px !important;
    height: 180px !important;
    border-radius: 12px;
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    object-fit: cover;
  }
  .corner-message-top {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .corner-message-info {
    text-align: left;
  }
  .corner-message-info img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
    margin-bottom: 4px;
  }
  .corner-message-info-title {
    font-size: 25px;
    line-height: 140%;
    margin-bottom: 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .corner-message-info-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-top: 12px;
  }
  .c-message-title-seperetor {
    width: 88px;
    height: 3px;
    background: var(--secondary-color);
    display: block;
  }
  .corner-message-bottom {
    margin-top: 24px;
  }
  .corner-message-text {
    margin-bottom: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    height: 286px;
  }
  .corner-message-btn {
    margin-top: 40px;
  }
  .corner-message-btn .theme-btn {
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    height: 32px;
  }
  .corner-message-btn .theme-btn i {
    font-size: 16px;
    top: 1px;
  }
  
  /* Slider Arrow */
  .corner-message-area .owl-nav {
    position: absolute;
    right: 0;
    top: -58px;
  }
  .corner-message-area .owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background: #fbfbfb;
    color: var(--hints-color);
    font-size: 24px;
    transition: all 0.4s ease;
    line-height: 37px;
    border-radius: 4px;
  }
  .corner-message-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #f8f8f8;
    color: var(--title-color);
  }
  .corner-message-area .owl-prev {
    margin-right: 12px !important;
  }
  
  /* Corner Message Page */
  .corner-message-page-widget-inner {
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0px 12px 24px 0px rgba(32, 38, 46, 0.08);
    padding: 32px;
  }
  .corner-message-page-widget-top {
    padding: 0px 224px;
  }
  .c-message-page-widget-top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0px 150px;
  }
  .c-message-page-widget-top-info .corner-message-img img {
    width: 220px !important;
    height: 248px !important;
    max-width: 220px !important;
  }
  .corner-message-page-widget-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 24px;
    position: relative;
  }
  .corner-message-page-widget-bottom::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: var(--border-color);
  }
  .c-message-page-widget-list {
    margin-bottom: 32px;
  }
  .c-message-page-widget-bottom-left {
    padding-right: 28px;
  }
  .c-message-page-widget-bottom-right {
    padding-left: 28px;
  }
  .c-message-page-widget-list:last-child {
    margin: 0;
  }
  .c-message-page-widget-list h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .c-message-page-widget-list ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 14px;
  }
  .c-message-page-widget-list ul li:last-child {
    margin: 0;
  }
  .c-message-page-widget-list ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    top: 9px;
    left: 0;
    background: var(--title-color);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .corner-message-page-widget-top {
      padding: 0px 24px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .corner-message-text {
      height: auto;
    }
    .single-corner-message {
      min-height: 100%;
    }
    .corner-message-page-widget-top {
      padding: 0px 24px;
    }
    .c-message-page-widget-top-info {
      padding: 0;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .corner-message-top {
      display: block;
      width: 100%;
      text-align: center;
    }
    .corner-message-info-title {
      margin-bottom: -7px;
    }
    .corner-message-info {
      margin-top: 12px;
      text-align: center;
    }
    .corner-message-img img {
      width: 110px !important;
      height: 110px !important;
      display: inline-block !important;
    }
    .corner-message-info-title {
      font-size: 18px;
      margin-bottom: -6px;
    }
    .corner-message-img {
      text-align: center;
      display: inline-block;
    }
    .corner-message-info img {
      text-align: center;
      display: inline-block !important;
    }
    .c-message-title-seperetor {
      text-align: center;
      display: inline-block;
    }
    .corner-message-info-name {
      padding-top: 0;
    }
    .corner-message-text {
      margin-bottom: 0;
      height: 100%;
    }
    .corner-message-btn {
      margin-top: 24px;
    }
    .corner-message-area .owl-nav {
      top: -52px;
    }
    .corner-message-page-widget-top {
      padding: 0;
    }
    .c-message-page-widget-top-info {
      padding: 0;
      text-align: center;
      display: block;
    }
    .c-message-page-widget-top-info .corner-message-img img {
      width: 180px !important;
      height: 180px !important;
      max-width: 180px !important;
    }
    .corner-message-page-widget-inner {
      padding: 24px 16px;
    }
    .corner-message-page-widget-bottom::before {
      display: none;
    }
    .c-message-page-widget-list h6 {
      font-size: 18px;
      margin-bottom: 12px;
    }
    .c-message-page-widget-list ul li {
      font-size: 15px;
    }
    .c-message-page-widget-bottom-right {
      padding-left: 0;
      margin-top: 24px;
    }
  }
  
  /*============================================================================================
      End Corner Message Area
  ==============================================================================================*/

  /*============================================================================================
	Teachers Area
==============================================================================================*/
.teachers-area {
    padding-top: 40px;
  }
  .teachers-card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .teachers-area.teachers-page .teachers-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
  .single-teachers {
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    background: var(--white-color);
    border-radius: 12px;
    height: 180px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .single-teachers:hover {
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
  }
  .teachers-img img {
    width: 160px !important;
    height: 180px !important;
    max-width: 160px !important;
    border-radius: 12px;
    object-fit: cover;
  }
  .teachers-name {
    font-size: 20px;
    margin-bottom: 6px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 2px 0px;
  }
  .teachers-designation {
    color: var(--hints-color);
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .teachers-social {
    margin-top: 12px;
  }
  .teachers-social li {
    display: inline-block;
    margin-right: 10px;
  }
  .teachers-social li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: var(--secondary-color);
    border-radius: 4px;
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
  }
  .teachers-social li a:hover {
    background: var(--primary-color);
  }
  .teachers-social li:last-child {
    margin: 0;
  }
  .teachers-btn {
    margin-top: 16px;
  }
  .teachers-btn .theme-btn.secondary {
    border-radius: 16px;
    padding: 8px 16px;
    height: 32px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
  }
  .teachers-btn .theme-btn.secondary i {
    font-size: 16px;
    margin-left: 6px;
    position: relative;
    top: 1px;
  }
  
  /* Teacher Details */
  .teacher-details-widget {
    background: var(--white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .teacher-details-img img {
    max-width: 512px;
    height: 586px;
    width: 512px;
    object-fit: cover;
    border-radius: 16px;
  }
  .t-details-widget-info-top {
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .t-details-widget-info-top h5 {
    line-height: 140%;
    margin-bottom: 6px;
  }
  .t-details-widget-info-top p {
    margin: 0;
    color: var(--hints-color);
    font-size: 18px;
  }
  .t-details-widget-info-bottom {
    display: flex;
    gap: 110px;
  }
  .t-details-widget-info-bottom-left p {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--hints-color);
  }
  .t-details-widget-info-bottom-left p:last-child {
    margin: 0;
  }
  .t-details-widget-info-bottom-left p span {
    display: inline-block;
    margin-left: 4px;
    color: var(--paragraph-color);
    font-weight: 700;
  }
  .t-details-widget-info-bottom-social span {
    color: var(--hints-color);
    font-size: 18px;
    margin-bottom: 6px;
    display: block;
  }
  .t-details-widget-info-bottom-social ul li {
    display: inline-block;
    margin-right: 8px;
  }
  .t-details-widget-info-bottom-social ul li:last-child {
    margin: 0;
  }
  .t-details-widget-info-bottom-social ul li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    transition: all 0.4s ease;
    text-align: center;
    border-radius: 4px;
  }
  .t-details-widget-info-bottom-social ul li a:hover {
    background: var(--primary-color);
  }
  .teacher-details-widget-content-main {
    margin-top: 36px;
  }
  .teacher-details-widget-content-main h6 {
    line-height: 150%;
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    gap: 16px;
    margin-bottom: 20px;
  }
  .teacher-details-widget-content-main h6 span {
    margin: 0;
  }
  .teacher-details-widget-content-main p {
    margin-bottom: 24px;
  }
  .teacher-details-widget-content-main span {
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
  }
  .teacher-details-widget-content-main ul li {
    position: relative;
    line-height: 150%;
    padding-left: 14px;
    margin-bottom: 8px;
  }
  .teacher-details-widget-content-main ul li:last-child {
    margin: 0;
  }
  .teacher-details-widget-content-main ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--title-color);
    left: 0;
    top: 7px;
  }
  
  /* Related Teachers */
  .related-teachers-area {
    padding: 40px 0px;
    background: #f8f8f8;
    overflow: hidden;
  }
  
  .related-teachers-area .owl-stage-outer {
    overflow: visible;
  }
  .related-teachers-area .owl-item {
    opacity: 0;
    transition: opacity 500ms;
  }
  .related-teachers-area .owl-item.active {
    opacity: 1;
  }
  
  /* Slider Arrow */
  .related-teachers-area .owl-nav {
    position: absolute;
    right: 0;
    top: -58px;
  }
  .related-teachers-area .owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background: #fbfbfb;
    color: var(--hints-color);
    font-size: 24px;
    transition: all 0.4s ease;
    line-height: 37px;
    border-radius: 4px;
  }
  .related-teachers-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #f8f8f8;
    color: var(--title-color);
  }
  .related-teachers-area .owl-prev {
    margin-right: 12px !important;
  }
  
  .teachers-card-group::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
    display: block;
  }
  .teachers-card-group::-moz-scrollbar {
    width: 4px !important;
    height: 4px !important;
    display: block;
  }
  .teachers-card-group::-ms-scrollbar {
    width: 4px !important;
    height: 4px !important;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .teachers-card-group {
      grid-template-columns: repeat(1, 1fr);
    }
    .teachers-area.teachers-page .teachers-card-group {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .teacher-details-widget {
      display: block;
    }
    .teacher-details-img img {
      max-width: 500px;
      height: 500px;
      width: 500px;
    }
    .teacher-details-widget-content {
      margin-top: 24px;
    }
    .t-details-widget-info-top {
      display: inline-block;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .school-commite-card {
      margin-top: 24px;
    }
    .teachers-area.teachers-page .teachers-card-group {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .teacher-details-widget {
      display: block;
    }
    .teacher-details-img img {
      max-width: 500px;
      height: 500px;
      width: 500px;
    }
    .teacher-details-widget-content {
      margin-top: 24px;
    }
    .t-details-widget-info-top {
      display: inline-block;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .teachers-card-group {
      grid-template-columns: repeat(5, 1fr);
      overflow-y: scroll;
      padding-bottom: 32px;
    }
    .single-teachers {
      display: block;
      height: auto;
      text-align: center;
      padding: 24px;
      width: 246px;
    }
    .teachers-img img {
      width: 100px !important;
      height: 100px !important;
      max-width: 100px !important;
      display: inline-block !important;
    }
    .teachers-name {
      font-size: 18px;
    }
    .teachers-content {
      margin-top: 12px;
    }
    .teachers-area.teachers-page .teachers-card-group {
      grid-template-columns: repeat(1, 1fr);
      overflow: initial;
      padding: 0;
      gap: 24px;
      justify-items: center;
    }
    .teacher-details-img img {
      max-width: 100%;
      height: 200px;
      width: 100%;
    }
    .t-details-widget-info-top h5 {
      font-size: 20px;
    }
    .t-details-widget-info-bottom-social span {
      font-size: 16px;
    }
    .teacher-details-widget {
      padding: 24px 16px;
      display: block;
    }
    .teacher-details-widget-content-main ul li {
      font-size: 15px;
    }
    .teacher-details-widget-info {
      margin-top: 12px;
    }
    .t-details-widget-info-bottom-social {
      margin-top: 12px;
    }
    .related-teachers-area .owl-nav {
      top: -52px;
    }
    .t-details-widget-info-bottom {
      display: block;
    }
    .related-teachers-slider .single-teachers {
      width: 100%;
      margin-bottom: 36px;
      margin-top: 16px;
    }
  
    .related-teachers-area .owl-stage-outer {
      overflow: hidden;
    }
    .related-teachers-area .owl-item {
      opacity: 1;
    }
    .related-teachers-area .owl-item.active {
      opacity: 1;
    }
    .related-teachers-slider.owl-carousel .owl-item {
      width: 258px !important;
    }
  }
  
  /*============================================================================================
      End Teachers Area
  ==============================================================================================*/
  /*============================================================================================
	Home Sidebar Widget Area
==============================================================================================*/
.home-page-main-right {
}
.home-sidebar-widget {
  background: var(--white-color-2);
  padding: 24px 16px;
  border-radius: 8px;
  margin-top: 24px;
}
.home-sidebar-widget-title img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.home-sidebar-widget-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sidebar-widget-list {
  background: var(--white-color);
  box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}
.sidebar-widget-list:last-child {
  margin: 0;
}
.sidebar-widget-list:hover {
  box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
}
.sidebar-widget-list-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget-list-content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
  margin: 0;
}

.sidebar-widget-list-content img {
  width: 32px;
  height: 32px;
  overflow: ;
  object-fit: contain;
}
.home-sidebar-widget.important-links .sidebar-widget-list-content img {
  width: 24px !important;
  height: 24px !important;
}

.sidebar-widget-list-btn .theme-btn.secondary {
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  height: 29px;
  white-space: nowrap;
}
.home-sidebar-widget-btn {
  text-align: center;
  margin-top: 20px;
}
.home-sidebar-widget-btn .theme-btn {
  height: 46px;
}

@media only screen and (max-width: 767px) {
  .sidebar-widget-list {
    display: block;
  }
  .home-sidebar-widget-title {
    font-size: 20px;
  }
  .sidebar-widget-list-content p {
    font-size: 14px !important;
  }
  .sidebar-widget-list-btn {
    margin-top: 8px;
    margin-left: 38px;
  }
  .home-sidebar-widget.important-links .sidebar-widget-list-btn {
    margin-left: 30px;
  }
}

/*============================================================================================
	End Home Sidebar Widget Area
==============================================================================================*/
/*============================================================================================
	Gallery Area
==============================================================================================*/
.single-gallery {
    position: relative;
  }
  .gallery-img {
    position: relative;
  }
  .gallery-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0) 48.75%,
      #20262e 100%
    );
    border-radius: 8px;
    z-index: 1;
  }
  .gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 20px 24px;
    text-align: center;
    width: 100%;
  }
  .gallery-content-title {
    font-size: 20px;
    color: var(--white-color);
    margin: 0;
    font-weight: 600;
    line-height: 150%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
  }
  .single-gallery .gallery-img {
    overflow: hidden;
    border-radius: 8px;
  }
  .single-gallery:hover .gallery-img img {
    transform: scale(1.03);
  }
  .gallery-img img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover;
    border-radius: 8px;
  }
  .image-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    color: var(--white-color);
    font-size: 18px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
  }
  .image-view-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
  }
  .single-gallery:hover .image-view-btn {
    opacity: 1;
    visibility: visible;
  }
  /* Slider Arrow */
  .gallery-area .owl-nav {
    position: absolute;
    right: 0;
    top: -58px;
  }
  .gallery-area .owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background: #fbfbfb;
    color: var(--hints-color);
    font-size: 24px;
    transition: all 0.4s ease;
    line-height: 37px;
    border-radius: 4px;
  }
  .gallery-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #f8f8f8;
    color: var(--title-color);
  }
  .gallery-area .owl-prev {
    margin-right: 12px !important;
  }
  
  /* Gallery Page */
  .gallery-page-area {
    padding: 24px 0px 40px;
  }
  .gallery-page-tab-menu {
    margin-bottom: 24px;
  }
  .gallery-page-tab-menu .list-group {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: center;
    background: var(--white-color-2);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0px 44px;
  }
  .gallery-page-tab-menu .list-group-item {
    background: transparent;
    border: none !important;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px !important;
    margin: 0 !important;
    position: relative;
  }
  .gallery-page-tab-menu .list-group-item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 24px;
    background: var(--border-color);
    right: 0;
    top: 13px;
  }
  .gallery-page-tab-menu .list-group-item:last-child::before {
    display: none;
  }
  .gallery-page-tab-menu .list-group-item.active::before {
    display: none;
  }
  .gallery-page-tab-menu .list-group-item.active {
    background: var(--primary-color);
    color: var(--white-color);
  }
  
  .gallery-page-tab-details .single-gallery {
    margin-top: 24px;
  }
  
  @media only screen and (max-width: 767px) {
    .gallery-area .owl-nav {
      top: -52px;
    }
    .gallery-img img {
      height: 320px !important;
    }
    .gallery-content-title {
      font-size: 18px;
    }
    .gallery-page-tab-menu .list-group {
      margin: 0;
      white-space: nowrap;
      justify-content: left;
      width: fit-content;
    }
    .gallery-page-tab-menu {
      overflow-x: scroll;
      padding-bottom: 12px;
    }
  
    .gallery-page-tab-menu::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .gallery-page-tab-menu::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .gallery-page-tab-menu::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .gallery-page-tab-menu .list-group-item {
      font-size: 15px;
    }
  }
  
  /*============================================================================================
      End Gallery Area
  ==============================================================================================*/
  /*============================================================================================
	School Committe Area
==============================================================================================*/
.school-committe-area {
    background: #f8f8f8;
  }
  .school-commite-card {
    background: var(--white-color);
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
  }
  .school-commite-card-img img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 100%;
  }
  .school-commite-card-info {
    margin-top: 20px;
  }
  .s-commite-member-name {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 6px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .s-commite-member-designation {
    color: var(--hints-color);
    margin-bottom: 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .s-commite-card-info-list li {
    margin-bottom: 6px;
    color: var(--hints-color);
    font-size: 14px;
    line-height: 120%;
  }
  .s-commite-card-info-list li span {
    font-weight: 700;
    color: var(--title-color);
    margin-left: 6px;
  }
  .s-commite-card-social {
    margin-top: 16px;
  }
  .s-commite-card-social li {
    display: inline-block;
    margin-right: 12px;
  }
  .s-commite-card-social li:last-child {
    margin: 0;
  }
  .s-commite-card-social li a {
      width: 24px;
      height: 24px;
      line-height: 22px;
      background: var(--secondary-color);
      color: var(--white-color);
      border-radius: 4px;
      font-size: 14px;
  }
  .s-commite-card-social li a:hover {
    background: var(--primary-color);
  }
  .school-committe-area.school-committe-page {
    background: var(--white-color);
    padding-top: 16px;
  }
  .school-committe-area.school-committe-page .school-commite-card {
    margin-top: 24px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .school-committe-area .section-head {
      margin-bottom: 0px;
    }
    .school-commite-card {
      margin-top: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .school-committe-area .section-head {
      margin-bottom: 0px;
    }
    .school-commite-card-img img {
      width: 100px;
      height: 100px;
    }
    .s-commite-member-name {
      font-size: 16px;
    }
    .school-commite-card-info {
      margin-top: 14px;
    }
    .school-commite-card {
      margin-top: 24px;
    }
    .row.school-committe-group {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      overflow-y: scroll;
      padding-bottom: 20px;
    }
    .row.school-committe-group .col-lg-4.col-xl-3.col-md-6.col-12 {
      width: 290px;
    }
  
    .row.school-committe-group::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .row.school-committe-group::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .row.school-committe-group::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
  }
  
  /*============================================================================================
      End School Committe Area
  ==============================================================================================*/

  /*============================================================================================
	Total Students Area
==============================================================================================*/
.total-students-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: 80px;
  }
  .total-students-group .owl-controls{
    margin-top: 30px;
  }
  .total-students-card {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 100%;
    padding: 44px 24px;
    width: 200px;
    height: 200px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 24px;
  }
  .total-students-card:hover {
    border: 1px solid var(--primary-color);
  }
  .total-students-number {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .total-students-text {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--title-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .total-students-class {
    color: var(--hints-color);
    font-weight: 600;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .total-students-group {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .total-students-group {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .total-students-group {
      text-align: center;
    }
    .total-students-card {
      width: 130px;
      height: 130px;
    }
    .total-students-number {
      font-size: 22px;
    }
    .total-students-group {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .total-students-card {
      padding: 26px 14px;
      margin-top: 0;
    }
    .total-students-text {
      margin-bottom: 3px;
      font-size: 13px !important;
    }
  
    .total-students-class {
      font-size: 14px !important;
    }
  }
  
  /*============================================================================================
      End Total Students Area
  ==============================================================================================*/

  /*============================================================================================
	Students Area
==============================================================================================*/
.students-area {
    background: #f8f8f8;
  }
  
  .students-card {
    background: var(--white-color);
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    border-radius: 12px;
    text-align: center;
    padding: 24px;
    margin: 0px 6px 6px 6px;
  }
  .students-card-img {
    text-align: center;
    display: inline-block;
  }
  .students-card-img img {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 16px;
  }
  .students-card-info {
    margin-top: 14px;
  }
  .students-card-info h4 {
    font-size: 20px;
    margin-bottom: 6px;
    line-height: 150%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .students-card-info span {
    color: var(--hints-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .students-card-info ul {
    margin-top: 8px;
  }
  .students-card-info ul li {
    display: inline-flex;
    position: relative;
    padding-right: 6px;
    margin-right: 6px;
    color: var(--hints-color);
  }
  .students-card-info ul li:last-child {
    padding: 0;
    margin: 0;
  }
  .students-card-info ul li:last-child::before {
    display: none;
  }
  .students-card-info ul li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 16px;
    background: #e9e9ea;
    top: 5px;
    right: -1px;
  }
  .students-card-info ul li span {
    margin-left: 4px;
    color: var(--title-color);
    font-weight: 700;
  }
  /* Slider Arrow */
  .students-area .owl-nav {
    position: absolute;
    right: 0;
    top: -58px;
  }
  .students-area .owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background: #fbfbfb;
    color: var(--hints-color);
    font-size: 24px;
    transition: all 0.4s ease;
    line-height: 37px;
    border-radius: 4px;
  }
  .students-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #f8f8f8;
    color: var(--title-color);
  }
  .students-area .owl-prev {
    margin-right: 12px !important;
  }
  
  /* Student List Page */
  .student-list-area {
    padding: 24px 0px 40px;
  }
  .student-list-area .students-card {
    margin: 0;
    margin-top: 24px;
  }
  
  @media only screen and (max-width: 767px) {
    .students-card-img img {
      width: 120px !important;
      height: 120px !important;
    }
    .students-card-info {
      margin-top: 8px;
    }
    .students-card-info h4 {
      font-size: 18px;
    }
    .students-area .owl-nav {
      top: -52px;
    }
    .students-slider.owl-carousel .owl-item {
      width: 258px !important;
    }
  }
  
  /*============================================================================================
      End Students Area
  ==============================================================================================*/

  /*============================================================================================
	Blog Area
==============================================================================================*/
.single-blog {
    background: var(--white-color);
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    border-radius: 12px;
  }
  .single-blog .blog-img {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
  }
  .single-blog:hover .blog-img img {
    transform: scale(1.03);
  }
  .blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }
  .blog-content {
    padding: 16px 24px 24px;
  }
  .blog-content .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .blog-content .blog-meta li {
    color: var(--hints-color);
  }
  .blog-content .blog-meta li span {
    margin-left: 4px;
    color: var(--title-color);
    font-weight: 600;
  }
  .single-blog:hover .blog-content-title {
    color: var(--primary-color);
  }
  .blog-content-title {
    font-size: 25px;
    line-height: 140%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    height: 70px;
  }
  .blog-content-btn {
    margin-top: 12px;
  }
  
  /* Blog Page Area */
  .blog-page-area {
    padding-bottom: 40px;
  }
  .blog-page-area .single-blog {
    margin-top: 24px;
  }
  .blog-page-bottom-btn {
    text-align: center;
    margin-top: 32px;
  }
  .blog-page-bottom-btn .theme-btn.secondary {
    border-radius: 24px;
    font-weight: 600;
    height: 44px;
  }
  .blog-page-bottom-btn .theme-btn.secondary i {
    margin: 0;
    margin-right: 6px;
  }
  
  /* Blog Details */
  .blog-details-area {
    padding: 24px 0px 40px;
  }
  .blog-details-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .blog-details-sidebar {
    background: #f8f8f8;
    padding: 24px 16px;
    border-radius: 8px;
  }
  .blog-details-head-btn.theme-btn.secondary {
    margin: 0;
    height: 40px;
    padding: 8px 12px;
  }
  .blog-details-head-btn.theme-btn.secondary i {
    margin: 0;
    margin-right: 6px;
  }
  .blog-details-head-title {
    margin: 0;
    line-height: 140%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .blog-details-head-date {
    margin: 0;
    color: var(--hints-color);
    font-weight: 700;
  }
  .blog-details-head-date span {
    margin-left: 4px;
    color: var(--title-color);
  }
  .blog-details-img {
    position: relative;
  }
  .blog-details-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
      180deg,
      rgba(44, 51, 51, 0) 0%,
      rgba(44, 51, 51, 0) 48.75%,
      #20262e 100%
    );
    border-radius: 6px;
  }
  .blog-details-img img {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    object-fit: cover;
  }
  .blog-details-sidebar {
    margin-top: 24px;
    position: sticky;
    top: 14%;
  }
  .blog-details-info-inner {
    margin-top: 24px;
    padding-right: 48px;
  }
  .blog-details-info-inner p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .blog-details-info-widget span {
    font-size: 20px;
    display: block;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 18px;
  }
  .blog-details-info-widget {
    margin-bottom: 32px;
  }
  .blog-details-info-widget:last-child {
    margin: 0;
  }
  .blog-details-info-widget ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
    font-size: 18px;
  }
  .blog-details-info-widget ul li:last-child {
    margin: 0;
  }
  .blog-details-info-widget ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    top: 10px;
    left: 0;
    background: var(--title-color);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-head-title {
      margin-top: 8px;
    }
    .blog-details-head {
      display: block;
    }
    .blog-details-head-date {
      margin-top: 4px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .blog-area .section-head {
      margin: 0;
    }
    .blog-img img {
      height: 240px;
    }
    .blog-content {
      padding: 16px;
    }
    .blog-content .blog-meta li {
      font-size: 14px;
    }
    .blog-content-title {
      font-size: 18px;
      height: 52px;
    }
    .single-blog {
      margin-top: 24px;
    }
    .blog-details-head {
      display: block;
    }
    .blog-details-head-title {
      -webkit-line-clamp: 3;
      font-size: 18px;
      margin-top: 12px;
    }
    .blog-details-head-date {
      margin-top: 8px;
      font-size: 14px !important;
    }
    .blog-details-img img {
      height: 260px;
    }
    .blog-details-info-inner {
      padding-right: 0;
    }
    .blog-details-info-widget span {
      font-size: 16px;
    }
    .blog-details-info-widget ul li {
      font-size: 15px;
    }
  }
  
  /*============================================================================================
      End Blog Area
  ==============================================================================================*/
  /*============================================================================================
	Breadcrumbs Area
==============================================================================================*/
.breadcrumbs-area {
    background: #f8f8f8;
    padding: 80px 0px;
  }
  .breadcrumbs-content {
    text-align: center;
  }
  .breadcrumbs-content-title {
    margin-bottom: 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 6px 0px;
  }
  .breadcrumbs-menu li {
    display: inline-block;
    color: var(--hints-color) !important;
    font-weight: 500 !important;
  }
  .breadcrumbs-menu li a {
    color: var(--hints-color);
    font-weight: 500;
  }
  .breadcrumbs-menu li a i {
    margin-right: 4px;
    position: relative;
    top: 2px;
  }
  .breadcrumbs-menu li i {
    margin: 0px 2px;
    position: relative;
    top: 2px;
    margin-right: 0;
  }
  .breadcrumbs-menu li.active a {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .breadcrumbs-content-title {
      -webkit-line-clamp: 3;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumbs-content-title {
      -webkit-line-clamp: 3;
    }
  }
  @media only screen and (max-width: 767px) {
    .breadcrumbs-content-title {
      font-size: 24px;
      -webkit-line-clamp: 3;
    }
    .breadcrumbs-menu li a {
      font-size: 14px;
    }
    .breadcrumbs-area {
      padding: 48px 0px;
    }
  }
  
  /*============================================================================================
      End Breadcrumbs Area
  ==============================================================================================*/
  /*============================================================================================
	Notice Board Area
==============================================================================================*/
.notice-board-area {
    padding: 24px 0px 40px;
  }
  .notice-board-tab-menu {
    margin-bottom: 24px;
  }
  .notice-board-tab-menu .list-group {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: center;
    background: var(--white-color-2);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0px 16px;
  }
  .notice-board-tab-menu .list-group-item {
    background: transparent;
    border: none !important;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px !important;
    margin: 0 !important;
    position: relative;
  }
  .notice-board-tab-menu .list-group-item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 24px;
    background: var(--border-color);
    right: 0;
    top: 13px;
  }
  .notice-board-tab-menu .list-group-item:last-child::before {
    display: none;
  }
  .notice-board-tab-menu .list-group-item.active::before {
    display: none;
  }
  .notice-board-tab-menu .list-group-item.active {
    background: var(--primary-color);
    color: var(--white-color);
  }
  .all-notice-table {
    margin: 0;
  }
  .all-notice-table thead {
    background: #f2f2f2;
  }
  .all-notice-table thead tr th {
    font-weight: 600;
    color: var(--title-color);
    font-size: 16px;
    padding: 10px 20px;
  }
  .all-notice-table tbody tr td {
    background: var(--white-color-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    padding: 6px 20px;
    vertical-align: middle;
  }
  .all-notice-table tbody tr {
    border-top: 12px solid var(--white-color);
    border-bottom: 12px solid var(--white-color);
  }
  .notice-table-subject {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .activity-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .view-btn,
  .download-btn {
    background: #2c3333;
    color: var(--white-color) !important;
    padding: 8px 12px;
    border-radius: 6px;
    height: 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  
  .view-btn i,
  .download-btn i {
    font-size: 20px;
    margin-right: 4px;
    position: relative;
    top: 3px;
  }
  .view-btn:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
  }
  .download-btn {
    background: var(--secondary-color) !important;
  }
  .download-btn:hover {
    background: var(--primary-color) !important;
  }
  .all-notice-table-btn {
    text-align: center;
    margin-top: 24px;
  }
  .all-notice-table-btn .theme-btn.secondary {
    border-radius: 24px;
    font-weight: 600;
    height: 44px;
  }
  .all-notice-table-btn .theme-btn.secondary i {
    margin: 0;
    margin-right: 6px;
  }
  
  /* Notice Board Details */
  .notice-board-details {
    padding: 16px 0px 80px;
  }
  .n-board-details-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
  .n-board-details-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 80%;
  }
  .n-board-details-topbar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
  }
  .n-board-details-topbar-btn {
    white-space: nowrap;
  }
  .n-board-details-topbar-btn .theme-btn {
    height: 40px;
    padding: 8px 12px;
    font-weight: 600;
  }
  .n-board-details-topbar-btn .theme-btn i {
    margin: 0;
    margin-right: 4px;
  }
  .n-board-details-topbar-right .theme-btn {
    height: 40px;
    background: var(--secondary-color);
    padding: 8px 12px;
  }
  .n-board-details-topbar-right .theme-btn i {
    margin: 0;
    margin-right: 4px;
  }
  .n-board-details-topbar-right .theme-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
  }
  .n-board-details-content-widget {
    background: var(--white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 16px;
    padding: 48px 224px;
  }
  .n-board-details-content-widget-top h5 {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 32px;
  }
  .n-board-details-content-widget-top h6 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 32px;
  }
  .n-board-details-content-widget-top p {
    margin: 0;
    font-size: 18px;
  }
  .n-board-content-table-main {
    padding: 0px 68px;
  }
  .n-board-content-table {
    margin: 40px 0px;
  }
  .n-board-content-table thead {
    background: var(--white-color-3);
  }
  .n-board-content-table thead tr th {
    font-weight: 600;
    color: var(--title-color);
    font-size: 18px;
    padding: 12px 24px;
  }
  .n-board-content-table tbody tr td {
    background: var(--white-color-2);
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    padding: 12px 24px;
    vertical-align: middle;
  }
  .n-board-content-table tbody tr {
    border-top: 12px solid var(--white-color);
    border-bottom: 12px solid var(--white-color);
  }
  .n-board-details-content-widget-bottom h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 24px;
  }
  .n-board-details-content-widget-bottom ul {
    padding-left: 12px;
    margin-bottom: 24px;
  }
  .n-board-details-content-widget-bottom ul li {
    margin-bottom: 4px;
    font-size: 18px;
    position: relative;
    padding-left: 14px;
    line-height: 150%;
  }
  .n-board-details-content-widget-bottom ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--title-color);
    top: 8px;
    left: 0;
  }
  .n-board-details-content-widget-bottom p {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .n-board-details-content-widget-bottom span {
    font-size: 18px;
    display: block;
    line-height: 150%;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .all-notice-table thead tr th {
      white-space: nowrap;
    }
    .all-notice-table tbody tr td {
      white-space: nowrap;
    }
    .all-notice-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .all-notice-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .all-notice-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .all-notice-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .n-board-details-topbar-right .theme-btn {
      white-space: nowrap;
    }
    .n-board-details-topbar-title {
      margin-top: 12px;
    }
    .n-board-details-content-widget {
      padding: 40px;
    }
    .n-board-content-table-main {
      padding: 0px 32px;
    }
    .n-board-details-topbar-left {
      display: block;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .all-notice-table thead tr th {
      font-size: 14px;
    }
    .all-notice-table tbody tr td {
      font-size: 14px;
      white-space: nowrap;
    }
    .all-notice-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .all-notice-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .all-notice-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .all-notice-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .notice-board-tab-menu {
      overflow-x: scroll;
      padding-bottom: 12px;
    }
    .notice-board-tab-menu .list-group {
      margin: 0;
      justify-content: left;
      white-space: nowrap;
      width: fit-content;
    }
    .notice-board-tab-menu::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .notice-board-tab-menu::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .notice-board-tab-menu::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .n-board-details-topbar-right {
      margin-top: 12px;
    }
    .n-board-details-topbar-title {
      margin-top: 12px;
    }
    .n-board-details-content-widget {
      padding: 32px 16px;
    }
    .n-board-content-table-main {
      padding: 0;
    }
    .n-board-details-content-widget-top h5 {
      font-size: 18px;
      margin-bottom: 12px;
    }
    .n-board-details-content-widget-top h6 {
      font-size: 16px;
      margin-bottom: 16px;
    }
    .n-board-details-content-widget-bottom h6 {
      font-size: 16px;
      margin-bottom: 12px;
    }
    .n-board-details-content-widget-bottom ul li {
      font-size: 15px;
    }
    .n-board-details-content-widget-bottom span {
      font-size: 16px;
    }
    .n-board-content-table thead tr th {
      font-size: 16px;
    }
    .n-board-content-table tbody tr td {
      font-size: 16px;
      white-space: nowrap;
    }
    .n-board-details-topbar-left {
      display: block;
      width: 100%;
    }
    .n-board-details-topbar {
      display: block;
    }
    .n-board-content-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .n-board-content-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .n-board-content-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .n-board-content-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
  }
  
  /*============================================================================================
      End Notice Board Area
  ==============================================================================================*/

  /*============================================================================================
	Contact Area
==============================================================================================*/
.contact-info-area {
    padding-top: 40px;
  }
  .contact-info-widget {
    background: var(--white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 8px;
    padding: 24px 24px 48px 24px;
  }
  .contact-info-widget-head {
    text-align: center;
  }
  .contact-info-widget-title {
    text-align: center;
    font-size: 31px;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 40px;
  }
  .contact-info-widget-title::before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    transform: translate(-50%);
    width: 315px;
    height: 5px;
    bottom: 0;
    left: 50%;
  }
  .contact-info-single {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 24px;
  }
  .contact-info-single:last-child {
    margin: 0;
  }
  .contact-info-icon {
    width: 64px;
    height: 64px;
    background: #ebf7f3;
    text-align: center;
    line-height: 64px;
    border-radius: 12px;
    min-width: 64px;
  }
  .contact-info-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .contact-info-single-left span {
    font-size: 18px;
    font-weight: 600;
    color: var(--hints-color);
    line-height: 150%;
  }
  .contact-info-single-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 48%;
  }
  .contact-info-single-right {
    width: 50%;
  }
  .contact-info-single-right p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
  }
  .contact-info-single-right a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
  }
  .gmap_canvas iframe {
    width: 100%;
    height: 400px;
    background: #fff;
    padding: 8px;
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 8px;
  }
  .contact-info-map-btn {
    text-align: center;
    margin-top: 24px;
  }
  .contact-info-map-btn .theme-btn.secondary {
    height: 44px;
    font-weight: 600;
  }
  
  /* Contact Form  */
  .contact-form-inner {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
  }
  .contact-image img {
    width: 100%;
    height: 617px;
    object-fit: cover;
    border-radius: 0px 16px 16px 0px;
  }
  .contact-form-main {
    padding: 40px 72px 40px 40px;
    overflow: hidden;
  }
  .contact-form-title {
    font-size: 31px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
  .contact-form-title::before {
    position: absolute;
    content: "";
    width: 194px;
    height: 5px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
  }
  .contact-form-main .form-group {
    margin-bottom: 24px;
  }
  .contact-form-main .form-group label {
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 6px;
    margin-left: 12px;
    line-height: 150%;
  }
  .contact-form-main .form-group input,
  .contact-form-main .form-group textarea {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white-color);
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    color: var(--paragraph-color);
  }
  .contact-form-main .form-group textarea {
    height: 156px !important;
  }
  .contact-form-main .form-group input:focus,
  .contact-form-main .form-group textarea:focus {
    border: 1px solid var(--secondary-color);
  }
  .contact-form-btn .theme-btn.secondary {
    height: 44px;
    font-weight: 600;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info-widget {
      margin-top: 24px;
    }
    .contact-image img {
      height: 400px;
      border-radius: 0px 0px 16px 16px;
    }
    .contact-form-main {
      padding: 40px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .contact-info-single {
      display: block;
    }
    .gmap_canvas iframe {
      height: 260px;
    }
    .contact-info-widget-title {
      text-align: left;
      font-size: 20px;
    }
    .contact-info-widget-title::before {
      width: 50%;
      height: 4px;
    }
    .contact-info-widget {
      margin-top: 24px;
    }
    .contact-info-single-left {
      width: 100%;
    }
    .contact-info-single-right {
      width: 100%;
      margin-top: 12px;
    }
    .contact-info-single-left span {
      font-size: 14px;
    }
    .contact-info-single-right a {
      font-size: 14px;
    }
    .contact-info-single-right p {
      font-size: 14px !important;
    }
    .contact-info-icon {
      width: 56px;
      height: 56px;
      line-height: 52px;
      min-width: 56px;
    }
    .contact-info-icon img {
      width: 24px;
      height: 24px;
    }
    .contact-form-title {
      font-size: 24px;
    }
    .contact-form-title::before {
      width: 94px;
      height: 4px;
    }
    .contact-form-main {
      padding: 24px;
    }
    .contact-image img {
      height: 280px;
      border-radius: 0px 0px 16px 16px;
    }
    .contact-info-single-left span {
      display: none;
    }
    .contact-info-single {
      display: flex;
    }
    .contact-info-single-left {
      width: 69px;
      display: block;
    }
    .contact-info-single-right {
      margin-top: 0;
    }
    .contact-info-single {
      gap: 14px;
    }
  }
  
  /*============================================================================================
      End Contact Area
  ==============================================================================================*/
  /*============================================================================================
	School Information Area
==============================================================================================*/
.school-information-area {
    padding: 24px 0px 40px;
  }
  .school-information-list {
    background: var(--white-color-2);
    padding: 16px 20px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 36% 64%;
    gap: 12px;
    margin-bottom: 12px;
  }
  .school-information-list:last-child {
    margin: 0;
  }
  .school-information-list p,
  .school-information-list span {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
  }
  .school-information-list span {
    font-weight: 700;
    display: inline-block;
  }
  
  @media only screen and (max-width: 767px) {
    .school-information-list {
      display: block;
    }
    .school-information-list p,
    .school-information-list span {
      font-size: 16px;
    }
    .school-information-list span {
      margin-top: 6px;
    }
  }
  
  /*============================================================================================
      End School Information Area
  ==============================================================================================*/
  /*============================================================================================
	Running Student Data Area
==============================================================================================*/
.running-student-data {
    padding-top: 24px;
    padding-bottom: 80px;
  }
  .running-student-data-head {
    display: flex;
    align-items: center;
    background: var(--white-color-2);
    border-radius: 8px;
    padding: 16px 24px;
    margin: 0px 24px;
    margin-bottom: 20px;
  }
  .running-student-data-head .form-group {
    margin: 0;
    margin-right: 24px;
    padding-right: 24px;
    position: relative;
  }
  .running-student-data-head .form-group::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 72px;
    background: var(--border-color);
    right: 0;
    top: 4px;
  }
  .running-student-data-head .form-group:last-child {
    margin: 0;
    padding: 0;
  }
  .running-student-data-head .form-group:last-child::before {
    display: none;
  }
  .running-student-data-head .form-group label {
    color: var(--hints-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 4px;
  }
  .running-student-data-head .nice-select {
    width: 100%;
    margin: 0;
    padding: 12px;
    line-height: 22px;
    color: var(--paragraph-color);
    font-weight: 600;
    border: 1px solid var(--paragraph-color);
    border-radius: 6px;
    height: 48px;
  }
  .running-student-data-head .nice-select.open:focus {
    background: var(--white-color-3);
  }
  .running-student-data-head .nice-select::after {
    border-bottom: 2px solid var(--paragraph-color);
    border-right: 2px solid var(--paragraph-color);
    margin-top: -6px;
    right: 18px;
  }
  .running-student-data-head .nice-select .list {
    width: 100%;
    transform: none !important;
  }
  .running-student-data-head .nice-select .option {
    line-height: 36px;
    min-height: 36px;
  }
  .running-student-data-head .nice-select .option:hover {
    background: var(--primary-color);
  }
  .running-student-data-table {
    margin: 0;
  }
  .running-student-data-table thead {
    background: var(--title-color);
  }
  .running-student-data-table thead tr th {
    font-weight: 600;
    color: var(--white-color);
    font-size: 16px;
    padding: 16px 20px;
    position: relative;
    text-align: center;
    white-space: nowrap;
  }
  .running-student-data-table thead tr th::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 24px;
    background: #767a7a;
    right: -0.5px;
    top: 17px;
  }
  .running-student-data-table thead tr th:last-child::before {
    display: none;
  }
  .running-student-data-table tbody tr td {
    background: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 20px;
    vertical-align: middle;
    text-align: center;
  }
  .running-student-data-table tbody tr {
    border-bottom: 1px solid var(--border-color);
  }
  
  /* Total Student Data */
  .total-student-data {
    margin-bottom: 40px;
  }
  .total-student-data-inner {
    background: var(--white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    padding: 40px 24px;
    border-radius: 16px;
    display: flex;
  }
  .single-total-student-data.data-btn::before {
    display: none;
  }
  .single-total-student-data.data-btn {
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .total-student-data-btn {
    background: var(--title-color);
    color: var(--white-color);
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    line-height: 150%;
    font-size: 18px;
  }
  .single-total-student-data {
    position: relative;
    padding-right: 56px;
    margin-right: 56px;
  }
  .single-total-student-data:last-child {
    margin: 0;
    padding: 0;
  }
  .single-total-student-data::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--border-color);
    right: 0;
    top: 0;
  }
  .single-total-student-data:last-child::before {
    display: none;
  }
  .single-total-student-data-list li {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .single-total-student-data-list li:last-child {
    margin: 0;
  }
  
  .single-total-student-data-list {
    width: 250px;
  }
  .single-total-student-data-list li span {
    font-weight: 700;
    float: right;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .running-student-data-table thead tr th {
      white-space: nowrap;
    }
    .running-student-data-table tbody tr td {
      white-space: nowrap;
    }
    .running-student-data-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .running-student-data-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .total-student-data-inner {
      display: block;
    }
    .total-student-data-inner {
      padding: 24px;
      display: block;
    }
    .single-total-student-data {
      padding-right: 0;
      margin-right: 0;
      margin-top: 16px;
    }
    .single-total-student-data::before {
      display: none;
    }
    .single-total-student-data-list {
      width: 100%;
    }
    .single-total-student-data-list li {
      margin-bottom: 16px;
    }
    .single-total-student-data:last-child {
      margin-top: 16px;
    }
    .running-student-data-head .form-group {
      margin-right: 16px;
      padding-right: 16px;
      white-space: nowrap;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .running-student-data-table thead tr th {
      white-space: nowrap;
    }
    .running-student-data-table tbody tr td {
      white-space: nowrap;
    }
    .running-student-data-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .running-student-data-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .total-student-data-inner {
      display: block;
    }
    .total-student-data-inner {
      padding: 24px;
      display: block;
    }
    .single-total-student-data {
      padding-right: 0;
      margin-right: 0;
      margin-top: 16px;
    }
    .single-total-student-data::before {
      display: none;
    }
    .single-total-student-data-list {
      width: 100%;
    }
    .single-total-student-data-list li {
      margin-bottom: 16px;
    }
    .single-total-student-data:last-child {
      margin-top: 16px;
    }
    .running-student-data-head .form-group {
      margin-right: 16px;
      padding-right: 16px;
      white-space: nowrap;
    }
  }
  @media only screen and (max-width: 767px) {
    .running-student-data-head {
      display: inline-block;
      margin: 0;
      margin-bottom: 24px;
    }
    .running-student-data-table thead tr th {
      font-size: 14px;
    }
    .running-student-data-table tbody tr td {
      font-size: 14px;
      white-space: nowrap;
    }
    .running-student-data-table {
      display: inline-block;
      overflow: scroll;
      padding-bottom: 16px;
    }
    .running-student-data-table::-webkit-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-moz-scrollbar {
      width: 4px !important;
      height: 4px !important;
      display: block;
    }
    .running-student-data-table::-ms-scrollbar {
      width: 4px !important;
      height: 4px !important;
    }
    .running-student-data-head .form-group::before {
      display: none;
    }
    .running-student-data-head .form-group {
      margin-right: 0;
      padding-right: 0;
      display: inline-block;
      width: 100%;
      margin-bottom: 20px;
    }
    .running-student-data-head .form-group:last-child {
      margin: 0;
    }
    .total-student-data-inner {
      display: block;
    }
    .total-student-data-inner {
      padding: 24px;
      display: block;
    }
    .single-total-student-data {
      padding-right: 0;
      margin-right: 0;
      margin-top: 16px;
    }
    .single-total-student-data::before {
      display: none;
    }
    .single-total-student-data-list {
      width: 100%;
    }
    .single-total-student-data-list li {
      font-size: 16px;
      margin-bottom: 16px;
    }
    .single-total-student-data:last-child {
      margin-top: 16px;
    }
    .total-student-data-btn {
      font-size: 16px;
      display: block;
      width: 100%;
      text-align: center;
    }
    .running-student-data {
      padding-bottom: 56px;
    }
  }
  
  /*============================================================================================
      End Running Student Data Area
  ==============================================================================================*/
  /*================================================================================================
    Mobile Menu 
===================================================================================================*/
.mobile-menu-modal {
    z-index: 9999999;
  }
  .mobile-menu-modal .offcanvas-logo img {
    width: 174px;
    height: 40px;
    object-fit: contain;
  }
  .mobile-menu-offcanvas-toggler {
    text-align: center;
    display: inline-block;
    padding: 0px !important;
    z-index: 3;
    border-radius: 50%;
    border: none;
    display: none;
    width: 28px;
    height: 14px;
    line-height: 50px;
    background: transparent;
    z-index: 888;
    float: right;
  }
  .mobile-menu-offcanvas-toggler .line {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
  }
  .header-area.is-sticky .mobile-menu-offcanvas-toggler .line,
  .header-style-2 .mobile-menu-offcanvas-toggler .line,
  .header-style-3 .mobile-menu-offcanvas-toggler .line {
    background: var(--primary-color);
  }
  
  .mobile-menu-offcanvas-toggler .line + .line {
    margin-top: 4px;
  }
  .mobile-menu-modal-main-body {
    padding: 24px 20px;
    overflow-y: scroll;
  }
  .mobile-menu-modal.offcanvas-modal.modal.fade .modal-dialog {
    transform: translateX(-100%);
  }
  .mobile-menu-modal.offcanvas-modal.modal.show .modal-dialog {
    transform: translateX(0%);
  }
  .mobile-menu-modal .offcanvas-dialog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .mobile-menu-modal .offcanvas-dialog .modal-content {
    height: 100%;
    border-radius: 0;
    border: 0;
  }
  .mobile-menu-modal .offcanvas-header {
    border: none;
    padding: 18px 20px !important;
    position: relative;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white-color-3);
  }
  .mobile-menu-modal .offcanvas-header .btn-close {
    color: var(--primary-color);
    opacity: 1;
    width: 35px;
    height: 35px;
    line-height: 39px;
    border-radius: 100%;
    padding: 0;
    border: 1px solid var(--primary-color) !important;
    font-size: 13px;
    background: transparent;
    transition: all 0.4s ease;
    margin: 0;
    float: right;
  }
  .mobile-menu-modal .offcanvas-header .btn-close:hover {
    background: var(--primary-color);
    border: 1px solid transparent;
    color: var(--white-color);
  }
  .mobile-menu-modal .offcanvas-menu::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #fff;
  }
  
  .offcanvas-men-list {
    padding-bottom: 78px;
  }
  
  .mobile-menu-modal .offcanvas-menu li {
    margin-bottom: 12px;
    border-bottom: 1px solid #e4eeec;
    padding-bottom: 12px;
  }
  .mobile-menu-modal .offcanvas-menu li:last-child {
    margin: 0;
    padding: 0;
    border: none;
  }
  .mobile-menu-modal .offcanvas-menu li.active .menu-arrow {
    color: var(--primary-color);
  }
  .mobile-menu-modal .offcanvas-menu li.active .menu-arrow::before {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    content: "\ea4e" !important;
  }
  .mobile-menu-modal .offcanvas-menu li a {
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    color: var(--title-color);
    font-size: 16px;
  }
  .mobile-menu-modal .offcanvas-menu li a:hover {
    color: var(--primary-color);
  }
  .mobile-menu-modal .offcanvas-menu li a i {
    margin-left: 10px;
  }
  .mobile-menu-modal .offcanvas-modal .modal-content {
    padding: 0px 15px;
  }
  .modal-backdrop.fade.show {
    background: var(--title-color);
    opacity: 0.8;
    z-index: 9999;
  }
  .mobile-menu-modal .offcanvas-btn {
    margin-top: 30px;
  }
  .mobile-menu-modal .offcanvas-btn .isp-starter-v1-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
  .mobile-menu-modal-bottom-button {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: var(--white-color);
    border-top: 1px solid var(--border-color);
  }
  .mobile-menu-modal-bottom-button .theme-btn {
    width: 100%;
  }
  .mobile-menu-modal-bottom-button .theme-btn {
    display: block;
    text-align: center;
    padding: 12px 12px;
    font-size: 14px;
  }
  .mobile-menu-modal-bottom-button .theme-btn:hover {
    background: var(--title-color);
    color: var(--white-color);
  }
  
  #offcanvas-menu .sub-menu {
    margin-top: 12px;
    margin-left: 12px;
    display: none;
  }
  #offcanvas-menu .sub-menu li:last-child {
    margin: 0;
    padding: 0;
  }
  #offcanvas-menu .sub-menu li a {
    font-size: 15px;
  }
  #offcanvas-menu .sub-menu li a:hover,
  #offcanvas-menu .sub-menu li.active a {
    color: var(--primary-color) !important;
  }
  #offcanvas-menu .menu-arrow {
    position: relative;
  }
  #offcanvas-menu .menu-arrow.active a {
    color: var(--primary-color);
  }
  #offcanvas-menu .sub-menu li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  #offcanvas-menu .menu-arrow.active .sub-menu li a {
    color: var(--title-color);
  }
  #offcanvas-menu .menu-arrow.active .sub-menu li.active a {
    color: var(--primary-color);
  }
  #offcanvas-menu .menu-arrow:hover::before {
    background: var(--primary-color);
    color: var(--white-color);
  }
  
  #offcanvas-menu .menu-arrow::before {
    position: absolute;
    font-family: remixicon !important;
    content: "\ea6e";
    font-size: 16px;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--white-color-3);
    border-radius: 100%;
    color: var(--primary-color);
    text-align: center;
    line-height: 24px;
    transition: all 0.4s ease;
  }
  #offcanvas-menu .menu-arrow.active::before {
    background: var(--primary-color);
    color: var(--white-color);
    content: "\ea4e";
  }
  .mobile-menu-modal-bottom .theme-btn {
    text-align: center;
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
    height: 44px;
  }
  .mobile-menu-modal-bottom .theme-btn i {
    font-size: 18px;
    top: 4px;
    position: relative;
  }
  .mobile-menu-modal-bottom.header-menu-btn {
    margin-top: 24px;
  }
  
  .mobile-menu-modal .topbar-school-info ul li {
    margin-right: 6px;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
  }
  .mobile-menu-modal .topbar-update-notice-title {
    padding: 2px 12px;
    font-size: 14px;
  }
  .mobile-menu-modal .topbar-school-info ul li::before {
    display: none;
  }
  .mobile-menu-modal .topbar-school-info {
    text-align: center;
  }
  .mobile-menu-modal .topbar-school-info-list {
    margin-top: 8px;
  }
  .mobile-menu-modal-main-bottom {
    padding: 20px;
    border-top: 1px solid var(--border-color);
  }
  @media only screen and (min-width: 992px) and (max-width: 1350px) {
    .mobile-menu-offcanvas-toggler {
      display: block;
    }
    .mobile-menu-modal .offcanvas-dialog {
      width: 400px;
    }
    .mobile-menu-offcanvas-toggler {
      top: 6%;
    }
    .header-area.is-sticky .mobile-menu-offcanvas-toggler {
      top: 26px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .mobile-menu-offcanvas-toggler {
      display: block;
    }
    .mobile-menu-modal .offcanvas-dialog {
      width: 400px;
    }
    .mobile-menu-offcanvas-toggler {
      top: 6%;
    }
    .header-area.is-sticky .mobile-menu-offcanvas-toggler {
      top: 26px;
    }
  }
  @media only screen and (max-width: 767px) {
    .mobile-menu-offcanvas-toggler {
      display: block;
    }
  }
  
  /*================================================================================================
        End Mobile Menu 
    ===================================================================================================*/
    /*============================================================================================
	Footer Area
==============================================================================================*/
.footer-area {
    background: var(--title-color);
  }
  .footer-top {
    padding-bottom: 44px;
    padding-top: 4px;
  }
  .footer-widget {
    margin-top: 40px;
  }
  .footer-widget-title {
    color: var(--white-color);
    font-size: 20px;
    line-height: 150%;
    border-radius: 6px;
    display: block;
    position: relative;
    padding: 12px 12px 12px 20px;
    z-index: 2;
    margin-bottom: 32px;
  }
  .footer-widget-title::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 24px;
    background: var(--secondary-color);
    left: 0;
    top: 14px;
    z-index: -1;
  }
  .footer-widget-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
    border-radius: 6px;
    opacity: 0.1;
    z-index: -1;
  }
  .quick-links-inner {
    margin-left: 20px;
  }
  .footer-widget ul li {
    margin-bottom: 28px;
  }
  .footer-widget ul li:last-child {
    margin: 0;
  }
  .footer-widget ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 12px;
  }
  .footer-widget ul li a {
    color: var(--white-color);
  }
  .footer-widget ul li a:hover {
    color: var(--secondary-color);
  }
  .footer-contact-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }
  .footer-contact-widget:last-child {
    margin-bottom: 0;
  }
  .footer-contact-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #1d2f32;
    text-align: center;
    line-height: 72px;
  }
  .footer-contact-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .footer-contact-text {
    margin: 0;
    font-weight: 600;
    color: var(--white-color);
    line-height: 150%;
  }
  .footer-contact-info a {
    display: block;
    color: var(--white-color) !important;
    font-weight: 600;
    line-height: 150%;
  }
  .footer-contact-info a:hover {
    color: var(--secondary-color) !important;
  }
  .footer-contact-info ul li {
    margin-bottom: 0;
    line-height: 150%;
    color: var(--hints-color);
    font-weight: 600;
  }
  .footer-contact-info ul li span {
    color: var(--white-color);
    font-weight: 700;
    margin-left: 4px;
  }
  .footer-bottom {
    background: #363c43;
    padding: 12px 0px;
  }
  .footer-social {
    float: right;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer-social span {
    color: var(--hints-color);
  }
  .footer-social ul li {
    display: inline-block;
    margin-right: 12px;
  }
  .footer-social ul li:last-child {
    margin: 0;
  }
  .footer-social ul li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .footer-copyright-text {
    color: var(--white-color);
    margin-bottom: 4px;
  }
  .footer-copyright span {
    color: var(--hints-color);
  }
  .footer-copyright a {
    margin-left: 6px;
    font-weight: 600;
    color: var(--secondary-color) !important;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-copyright {
      text-align: center;
    }
    .footer-social {
      float: initial;
      justify-content: center;
      margin-top: 20px;
      border-top: 1px solid #ddd3;
      padding-top: 20px;
    }
  }
  @media only screen and (max-width: 767px) {
    .quick-links-inner {
      margin-left: 0;
    }
    .footer-widget ul li {
      margin-bottom: 20px;
    }
    .footer-widget ul li a {
      font-size: 15px;
    }
    .footer-widget-title {
      font-size: 18px;
      margin-bottom: 18px;
    }
    .footer-contact-icon {
      width: 56px;
      height: 56px;
      line-height: 56px;
      min-width: 56px;
    }
    .footer-contact-widget {
      margin-left: 0;
    }
    .footer-contact-icon img {
      width: 24px;
      height: 24px;
    }
    .footer-contact-text {
      font-size: 14px !important;
    }
    .footer-contact-info a {
      font-size: 14px;
    }
    .footer-contact-info ul li {
      font-size: 14px;
    }
    .footer-social span {
      display: none;
    }
    .footer-social {
      float: inherit;
      justify-content: center;
      margin-top: 16px;
      border-top: 1px solid #dddddd2b;
      padding-top: 16px;
    }
    .footer-social ul li img {
      width: 24px;
      height: 24px;
    }
    .footer-copyright-text {
      font-size: 14px !important;
    }
    .footer-copyright span {
      font-size: 14px !important;
    }
    .footer-copyright {
      text-align: center;
    }
  }
  
  /*============================================================================================
      End Footer Area
  ==============================================================================================*/

