:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Yantramanav', sans-serif;
    --theme-color: #116E63;
    --theme-color2: #FDA31B;
    --theme-color-light: rgb(17, 110, 99, 0.09);
    --theme-bg-light: #F2F3F5;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #19232B;
    --hero-overlay-color: #000000;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #012758;
    --footer-bg2: #116E63;
    --footer-text-color: #F5FAFF
}

*,
*:before,
*:after {
    box-sizing: inherit
}

* {
    scroll-behavior: inherit !important
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text-color);
    line-height: 1.8
}

a {
    color: var(--color-dark);
    display: inline-block
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none
}

a:hover {
    color: var(--color-blue)
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin: 0
}

img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-book {
    border: 5px solid var(--color-white);
    width: 100px;
    height: 61px;
    position: relative;
    perspective: 150px
}

.loader-book-page {
    display: block;
    width: 50px;
    height: 60px;
    border: 5px solid var(--color-white);
    border-left: 5px solid var(--color-white);
    margin: 0;
    position: absolute;
    right: -4px;
    top: -4px;
    overflow: hidden;
    background: var(--theme-color);
    transform-style: preserve-3d;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.loader-book-page:nth-child(1) {
    -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite;
    animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite
}

.loader-book-page:nth-child(2) {
    -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite;
    animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite
}

.loader-book-page:nth-child(3) {
    -webkit-animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite;
    animation: loader-book 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite
}

@-webkit-keyframes loader-book {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    20% {
        background: var(--theme-color2)
    }

    40% {
        background: var(--theme-color2);
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }

    100% {
        background: var(--theme-color);
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }
}

@keyframes loader-book {
    0% {
        transform: rotateY(0deg)
    }

    20% {
        background: var(--theme-color2)
    }

    40% {
        background: var(--theme-color2);
        transform: rotateY(-180deg)
    }

    100% {
        background: var(--theme-color);
        transform: rotateY(-180deg)
    }
}

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

.py-120 {
    padding: 120px 0
}

.pt-60 {
    padding-top: 60px
}

.pt-80 {
    padding-top: 80px
}

.pt-100 {
    padding-top: 100px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.mt-30 {
    margin-top: 30px
}

.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}
.mb-30 {
    margin-bottom: 30px
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color2);
    position: relative;
    border-bottom: 2px solid var(--theme-color2)
}

.site-title-tagline i {
    line-height: 0;
    font-size: 20px
}

.site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative
}

.site-title span {
    color: var(--theme-color2)
}

.site-heading p {
    margin-top: 15px
}

.theme-btn {
    font-size: 14px;
    color: var(--color-white);
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px 50px 50px 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    z-index: 1
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1
}

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

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1)
}

.theme-btn i {
    margin-left: 5px
}

@media (max-width:767px) {
    .site-title {
        font-size: 42px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color2);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1
}

.header-top {
    padding: 9px 0 10px 0;
    position: relative;
    background: var(--theme-color);
    z-index: 1
}

.header-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 33%;
    background: var(--theme-color2);
    z-index: -1
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 20px
}

.header-top-contact ul li {
    display: flex;
    gap: 10px;
    border-right: 1px solid rgb(255 255 255 / .2);
    padding-right: 20px
}

.header-top-contact ul li:last-child {
    border: none;
    padding-right: 0
}

.header-top-contact ul li a {
    color: var(--color-white);
    font-weight: 400
}

.header-top-contact ul li a i {
    color: var(--theme-color2);
    margin-right: 5px
}

.header-top-social span {
    color: var(--color-white);
    font-weight: 500
}

.header-top-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--color-white);
    font-size: 16px;
    background: var(--theme-color);
    text-align: center;
    margin-left: 5px;
    border-radius: 50px;
    transition: all .5s ease-in-out
}

.header-top-social a:hover {
    color: var(--theme-color2)
}

@media all and (max-width:1469px) {
    .container-n {
        max-width: 1045px !important
    }
}

@media all and (max-width:1199px) {
    .header-top-contact ul {
        gap: 10px
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0
    }

    .header-top::before {
        width: 32%
    }
}

@media all and (max-width:1024px) {
    .header-top::before {
        width: 26%
    }
}

@media all and (max-width:992px) {
    .header-top {
        display: none
    }
}

.navbar {
    background: var(--color-white);
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999
}

.custom-nav {
    background: var(--color-white);
    position: relative
}

.navbar.fixed-top {
    background: var(--color-white) !important;
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.navbar .navbar-brand .logo-display {
    display: block
}

.navbar .navbar-brand .logo-scrolled {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block
}

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

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit
}

.navbar-brand {
    margin-right: 0
}

.navbar-brand img {
    width: 80px;
    height: 90px
}

.navbar-expand-lg .navbar-nav {
    justify-content: end
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px
}

@media all and (max-width:1199px) {
    .nav-right {
        margin-left: 25px !important
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px
    }

    .navbar .nav-right-btn {
        display: none
    }
}

@media all and (min-width:992px) {
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 30px 0 30px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--color-dark);
        text-transform: capitalize
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        border: none;
        left: -15px;
        border-radius: 0;
        border-top: 4px solid var(--theme-color2);
        background: var(--theme-color);
        width: 220px;
        box-shadow: var(--box-shadow)
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid var(--border-white-color)
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 8px 25px;
        font-weight: 500;
        color: var(--color-white);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        transition: all .3s ease-in-out
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: #fff0;
        color: var(--theme-color2);
        padding-left: 32px
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "//";
        position: absolute;
        left: 15px;
        top: 8px;
        color: var(--theme-color2);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible
    }

    .navbar .nav-item .nav-link {
        position: relative
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color)
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg)
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%
    }

    .navbar #main_nav {
        justify-content: flex-end
    }

    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-left: 45px
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        transition: var(--transition)
    }

    .nav-right-link:hover {
        color: var(--theme-color) !important
    }

    .nav-right .sidebar-btn .nav-right-link,
    .nav-right .search-btn .nav-right-link {
        border: none;
        background: #fff0;
        color: var(--color-dark);
        font-size: 28px;
        padding-right: 0
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0
    }

    .nav-right .cart-btn .nav-right-link {
        position: relative;
        font-size: 20px;
        padding: 0;
        margin-right: 15px
    }

    .nav-right .cart-btn span {
        position: absolute;
        right: -9px;
        top: -2px;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white)
    }
}

.mobile-menu-right {
    display: none
}

@media all and (max-width:991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed
    }

    .navbar-brand {
        padding-left: 10px
    }

    .navbar-brand img {
        width: 80px
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: var(--color-white)
    }

    .dropdown-toggle::after {
        float: right
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        transition: var(--transition)
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important
    }

    .navbar-toggler {
        padding: 0;
        border: none
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px
    }

    .mobile-menu-right .nav-right-link {
        background: #fff0;
        border: none;
        font-size: 20px;
        color: var(--color-dark)
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color)
    }

    .search-area.open {
        top: 50px !important
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500
    }

    .navbar .dropdown-menu {
        border-radius: 0
    }

    .nav-right {
        display: none
    }
}

@media (min-width:992px) {
    .nav-item.mega-menu {
        position: static
    }

    .navbar .nav-item.mega-menu .dropdown-menu {
        width: 98%;
        left: 12px
    }

    .mega-menu .mega-content {
        padding: 30px
    }

    .mega-menu .mega-content h5 {
        color: var(--theme-color2);
        font-size: 22px;
        margin-bottom: 20px
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
        padding-left: 0
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
        left: 0
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
        padding-left: 15px
    }

    .menu-about-logo {
        margin-top: 15px;
        margin-bottom: 15px
    }

    .menu-about-logo img {
        width: 180px
    }

    .menu-about p {
        color: var(--color-white)
    }
}

@media (max-width:991px) {
    .menu-about-logo {
        display: none
    }

    .mega-menu .mega-content h5 {
        margin: 15px 0
    }
}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgb(0 0 0 / .8);
    transition: all 1500ms cubic-bezier(.86, 0, .07, 1);
    transition-timing-function: cubic-bezier(.86, 0, .07, 1)
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    text-align: center;
    background: var(--theme-color2);
    text-align: center;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 10px rgb(0 0 0 / .05);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden
}

.search-popup .close-search:hover {
    background: var(--theme-color)
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease
}

.search-popup .form-group {
    position: relative;
    margin: 0;
    overflow: hidden
}

.search-popup .form-group input[type="search"] {
    position: relative;
    width: 100%;
    height: 65px;
    outline: none;
    border-radius: 8px;
    border: none;
    padding: 0 100px 0 35px;
    transition: all 500ms ease;
    text-transform: capitalize
}

.search-popup .form-group button {
    position: absolute;
    right: 10px;
    top: 9px;
    background: var(--theme-color2);
    text-align: center;
    font-size: 20px;
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 500ms ease
}

.search-popup .form-group button:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.main {
    margin-top: 0rem
}

.hero-section {
    position: relative
}

.hero-single {
    padding-top: 150px;
    padding-bottom: 240px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.hero-single::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -.5px;
    top: 0;
    background: rgb(11 28 57 / .7);
    z-index: -1
}

.hero-single .hero-content {
    height: 100%
}

.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 72px;
    font-weight: 800;
    margin: 20px 0;
    text-transform: capitalize
}

.hero-single .hero-content .hero-title span {
    color: var(--theme-color2)
}

.hero-single .hero-content .hero-btn {
    gap: 1rem;
    display: flex;
    margin-top: 35px;
    justify-content: start
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: var(--color-white);
    font-size: 25px;
    margin: 0;
    padding: 0;
    background: var(--slider-arrow-bg);
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition)
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--color-white);
    color: var(--theme-color)
}

.hero-slider.owl-theme .owl-nav .owl-prev {
    left: 40px
}

.hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)
}

@media all and (max-width:1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 30px !important
    }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: unset;
        right: 120px
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px
    }
}

@media all and (max-width:991px) {
    .hero-single .hero-content .hero-title {
        font-size: 50px
    }
}

@media all and (max-width:767px) {
    .hero-single .hero-content .hero-btn {
        gap: 1rem
    }
}

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: var(--theme-color2);
    color: var(--color-white) !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1
}

.play-btn i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color2);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out
}

@keyframes ripple-wave {
    0% {
        opacity: .8;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

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

.about-area {
    position: relative
}

.about-left {
    margin-right: 20px
}

.about-img {
    display: flex;
    gap: 30px;
    position: relative
}

.about-img .img-1 {
    border-radius: 80px 80px 0 80px
}

.about-img .img-2 {
    border-radius: 50%;
    border: 2px dashed var(--theme-color2);
    padding: 8px
}

.about-img .img-3 {
    border-radius: 0 80px 80px 80px
}

.about-experience {
    display: flex;
    align-items: center;
    text-align: center;
    background: var(--theme-color2);
    padding: 15px 20px 15px 15px;
    color: var(--color-white);
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%)
}

.about-experience-icon {
    color: var(--theme-color);
    font-size: 65px;
    width: 90px;
    height: 90px;
    line-height: 70px;
    text-align: center;
    margin: auto;
    background: var(--color-white);
    border-radius: 50px;
    margin-bottom: 5px
}

.about-experience-icon img {
    width: 65px
}

.about-right {
    position: relative;
    display: block
}

.about-content {
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color)
}

.about-quote {
    position: relative;
    color: #fff;
    padding: 20px 22px;
    background: #116e63;
    border-radius: 20px
}

.about-quote i {
    position: absolute;
    font-size: 45px;
    color: #fda31b;
    right: 15px;
    bottom: -15px
}

.about-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 12px
}

.about-phone .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    text-align: center;
    font-size: 22px;
    box-shadow: -5px 5px 0 var(--theme-color-light)
}

.about-phone .number {
    line-height: 1
}

.about-phone .number span {
    color: var(--theme-color2);
    font-weight: 500
}

.about-phone .number h6 {
    font-size: 20px;
    margin-top: 8px
}

.about-phone .number h6 a {
    color: var(--theme-color)
}

@media all and (max-width:991px) {
    .about-right {
        margin-top: 30px
    }
}

@media all and (max-width:767px) {
    .about-img .img-1 {
        width: 100%
    }

    .about-img .img-2 {
        width: 100%
    }

    .about-img .img-3 {
        width: 100%
    }
}

.feature-area {
    position: relative;
    z-index: 1
}

.fa-negative {
    margin-top: -150px;
    margin-right: 20px
}

.feature-item {
    position: relative;
    padding: 20px 25px;
    background: var(--color-white);
    border-radius: 50px 50px 50px 0;
    box-shadow: var(--box-shadow);
    z-index: 1;
    height: 215px
}

.feature-wrapper .col-lg-2 {
    width: 20%
}

@media (max-width:1279px) {
    .feature-wrapper .col-lg-2 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%
    }
}

@media (max-width:768px) {

    .feature-wrapper .col-lg-2,
    .feature-wrapper .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:567px) {

    .feature-wrapper .col-lg-2,
    .feature-wrapper .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.feature-item .count {
    position: absolute;
    right: 30px;
    top: 0;
    font-size: 50px;
    font-family: 'Yantramanav', sans-serif;
    font-weight: 800;
    -webkit-text-stroke: 2px var(--theme-color);
    -webkit-text-fill-color: #fff0
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    color: var(--color-white);
    font-size: 60px;
    background: var(--theme-color);
    margin-bottom: 25px;
    box-shadow: 5px 5px 0 var(--theme-bg-light);
    position: relative;
    transition: var(--transition)
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg)
}

.feature-icon img {
    width: 48px;
    filter: brightness(0) invert(1)
}

.feature-content {
    flex: 1
}

.feature-content h4 {
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

@media all and (max-width:1199px) {
    .fa-negative {
        margin-top: -50px;
        margin-left: 20px
    }
}

.gallery-item {
    position: relative;
    width: 100%;
    margin-bottom: 25px
}

.gallery-img {
    height: 100%
}

.gallery-img img {
    width: 100%;
    border-radius: 50px 50px 50px 0
}

.add_height {
    height: 288px
}

.gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.gallery-content::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--theme-color2);
    border-radius: 50px 50px 50px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s
}

.gallery-content:hover::before {
    opacity: .9;
    visibility: visible
}

.gallery-link {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    font-size: 60px;
    color: var(--color-white)
}

.gallery-link:hover {
    color: var(--color-white)
}

.gallery-content:hover .gallery-link {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1)
}

.choose-area {
    position: relative;
    background: var(--footer-bg2);
    z-index: 1
}

.choose-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/shape/01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: .08;
    z-index: -1
}

.choose-content-wrap {
    margin-top: 30px
}

.choose-img {
    position: relative;
    margin-left: 50px
}

.choose-img::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--theme-color2);
    border-radius: 30% 0 30% 30%
}

.choose-img img {
    border-radius: 30% 0 30% 30%
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    border-radius: 50px 50px 50px 0;
    box-shadow: var(--box-shadow);
    padding: 15px 15px 15px 0;
    overflow: hidden
}

.choose-item-icon {
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: right;
    background: var(--theme-color2);
    border-radius: 50px 50px 50px 0;
    padding-right: 12px;
    margin-left: -12px
}

.choose-item-icon img {
    width: 45px;
    filter: brightness(0) invert(1)
}

.choose-item-info {
    flex: 1
}

.choose-item-info h4 {
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 21px
}

@media all and (max-width:991px) {
    .choose-content-info {
        margin-right: 100px
    }

    .choose-img {
        margin-top: 50px;
        margin-left: 10px
    }
}

@media (max-width:1199px) {
    .add_height {
        height: 225px
    }
}

@media (max-width:1024px) {
    .add_height {
        height: 220px
    }
}

@media (max-width:991px) {
    .add_height {
        height: 160px
    }
}

@media (max-width:767px) {
    .add_height {
        height: auto
    }
}

@media all and (max-width:767px) {
    .choose-content-info {
        margin-right: 40px
    }
}

.testimonial-area {
    position: relative
}

.ts-bg {
    background-image: url(../img/school/Achievements/27.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative
}

.ts-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    opacity: .7
}

.testimonial-item {
    background: var(--color-white);
    border-radius: 40px 40px 40px 0;
    padding: 25px 25px;
    margin: 6px;
    position: relative;
    border-bottom: 5px solid var(--theme-color2)
}

.testimonial-content {
      display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* space between text and image */
    margin-top: 20px;
    flex-wrap: wrap; /* responsive */
}

.testimonial-quote {
    flex: 1; /* text takes available space */
}
.testimonial-quote p {
      color: var(--body-text-color);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    font-size: 18px;
}

.testimonial-author-info {
  margin-top: 15px;
}

.testimonial-author-img {
    width: 120px; /* bigger size */
    height: 120px; /* keep consistent height */
    padding: 4px;
    border-radius: 50%;
    border: 3px dashed var(--theme-color2);
    flex-shrink: 0; /* prevent shrinking */
}

.testimonial-author-img img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info h4 {
   font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.testimonial-author-info p {
    color: var(--theme-color2);
    font-weight: 500
}

.testimonial-quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-white);
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 41px;
    text-align: center;
    background: var(--theme-color2);
    border-radius: 50px 50px 50px 0
}

.testimonial-rate {
    color: var(--theme-color2);
    margin-bottom: 15px
}

.testimonial-area .owl-dots .owl-dot span {
    background: var(--theme-color2);
    border-radius: 50px;
    margin: 5px;
    width: 8px;
    height: 8px;
    display: inline-block;
    transition: var(--transition)
}

.testimonial-area .owl-dots .owl-dot.active span {
    width: 20px
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px
}
/* âœ… Desktop (default) */
.testimonial-image {
    flex: 0 0 250px;   /* fixed width */
    height: 250px;     /* fixed height (square shape) */
    display: flex;     
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: -50px;
}

/* âœ… Mobile (up to 768px) */
@media (max-width: 768px) {
    .testimonial-image {
        flex: 0 0 auto;       /* no fixed width */
        width: 100%;         /* smaller image */
        /*height: 200px;*/
        margin: 20px auto 0;  /* center horizontally */
    }
}


.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}   

.counter-area {
    position: relative;
    background-image: url(../img/school/Achievements/24.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1
}

.counter-area::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
    z-index: -1
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 1
}

.counter-box .icon {
    position: relative;
    text-align: center;
    font-size: 60px;
    width: 100px;
    height: 100px;
    line-height: 88px;
    color: var(--color-white);
    background: var(--theme-color2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
}

.counter-box .icon img {
    width: 60px;
    filter: brightness(0) invert(1)
}

.counter-box .icon::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 3px solid var(--color-white);
    transition: var(--transition);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1
}

.counter-box:hover .icon::before {
    left: 0;
    top: 0
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 600
}

.counter-box .title {
    color: var(--color-white);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize
}

@media all and (max-width:991px) {
    .counter-area .counter-box {
        margin: 40px 0
    }
}

.team-area {
    position: relative;
    overflow: hidden
}

.team-item {
    position: relative;
    background: var(--color-white);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 60px 60px 60px 0;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.team-item:hover {
    transform: translateY(-10px)
}

.team-img img {
    border-radius: 50px 50px 50px 0
}

.team-content {
    margin-top: 15px;
    position: relative
}

.team-bio h5 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize
}

.team-bio span {
    font-size: 13px;
    font-weight: 500;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px
}

.team-social-btn {
    position: absolute;
    right: -5px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding-left: 12px;
    border-radius: 50px 50px 0 50px;
    cursor: pointer;
    background: var(--theme-color);
    color: var(--color-white);
    transition: var(--transition)
}

.team-item:hover .team-social-btn {
    background: var(--theme-color2)
}

.team-social {
    position: absolute;
    margin-bottom: 10px;
    text-align: center;
    top: 50px;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: var(--transition)
}

.team-item:hover .team-social {
    opacity: 1;
    right: 30px
}

.team-social a {
    display: block;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    border-radius: 50px 50px 50px 0;
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.team-social a:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.video-area {
    padding-bottom: 100px;
    padding-top: 100px
}

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 80px 80px 80px 0
}

.video-content::before {
    content: "";
    position: absolute;
    background: rgb(3 2 7 / .2);
    border-radius: 80px 80px 80px 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    height: 350px;
    z-index: 100
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media all and (max-width:767px) {
    .video-wrapper {
        height: 250px
    }
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 170px;
    padding-bottom: 150px;
    z-index: 1
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--hero-overlay-color);
    opacity: .65;
    z-index: -1
}

.site-breadcrumb .breadcrumb-title {
    font-size: 45px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-white);
    transition: all 0.5s ease-in-out
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 6 Pro';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white)
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: var(--theme-color)
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--theme-color2)
}

@media (max-width:991px) {
    .site-breadcrumb {
        padding-top: 230px
    }
}

.facility-area {
    position: relative;
    display: block;
    overflow: hidden
}

.facility-item {
    position: relative;
    margin-bottom: 25px;
    border-radius: 50px 50px 50px 0;
    background: var(--color-white);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 1
}

.facility-item:hover {
    transform: translateY(-10px)
}

.facility-img {
    position: relative;
    z-index: 1
}

.facility-img img {
    border-radius: 50px 50px 50px 0;
    height: 251px
}

.facility-content {
    position: relative;
    padding: 20px 20px 15px 20px
}

.facility-arrow {
    margin-top: 25px
}

.facility-title a {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark)
}

.facility-title a:hover {
    color: var(--theme-color)
}

.facility-arrow .theme-btn {
    padding: 12px 22px
}

.footer-area {
    background: var(--theme-color);
    position: relative;
    z-index: 1
}

.footer-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .05;
    z-index: -1
}

.footer-widget-box {
    margin-bottom: 20px
}

.footer-widget {
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 80px;
    height: 90px;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 6px
}

.copyright {
    position: relative
}

.copyright .copyright-wrapper {
    padding: 25px 0;
    border-top: 1px solid var(--border-white-color)
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0;
    font-size: 16px
}

.copyright .copyright-text a {
    color: var(--theme-color2);
    font-weight: 500
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 21px;
    z-index: 1
}

.footer-widget-title::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 3px;
    background: rgb(255 255 255 / .2);
    bottom: 0;
    left: 0;
    z-index: -1
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--theme-color2);
    bottom: 0;
    left: 18px;
    z-index: -1
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition)
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color2)
}

.footer-list li a:hover {
    padding-left: 10px;
    color: var(--theme-color2)
}

.contact-item strong {
    color: var(--theme-color2)
}

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    margin-bottom: 20px
}

.footer-widget-box p a {
    color: var(--color-white)
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 10px 10px 10px 0;
    background: var(--color-white);
    color: var(--theme-color2);
    transition: var(--transition)
}

.footer-social li a i:hover {
    background: var(--theme-color2);
    color: var(--color-white)
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--footer-text-color);
    font-size: 16px;
    margin-bottom: 15px
}

.footer-contact li a {
    color: var(--footer-text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.footer-contact li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 10px 10px 10px 0;
    background: var(--theme-color2);
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--color-white)
}

@media all and (max-width:1199px) {
    .footer-widget-box {
        margin-bottom: 50px
    }
}

@media all and (max-width:991px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }
}

@media all and (max-width:767px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px
    }

    .copyright::before {
        width: 40%
    }
}
.facility-img .facility-height{
    width: 100%;
    height: 100%;
}
.facility-img .facility-height1{
    width: 100%;
    height: 100%;
}