/*
@File: Adma Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************


** - Default Style
** - Section Title Style
** - Top Header Area Style
** - Navbar Area Style
** - Hero Area Style
** - About Area Style
** - Graduets Area Style
** - Home Page Banner Carousel
   ===========================================*/

/* Home Page Banner Carousel */
.home-banner-carousel {
    position: relative;
}

.home-banner-carousel .carousel-control-prev,
.home-banner-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.home-banner-carousel .carousel-control-prev {
    left: 20px;
}

.home-banner-carousel .carousel-control-next {
    right: 20px;
}

.home-banner-carousel .carousel-control-prev-icon,
.home-banner-carousel .carousel-control-next-icon {
    width: 1.75rem;
    height: 1.75rem;
    background-size: 100% 100%;
}

.home-banner-carousel:hover .carousel-control-prev,
.home-banner-carousel:hover .carousel-control-next {
    opacity: 1;
}

.home-banner-carousel .carousel-control-prev:hover,
.home-banner-carousel .carousel-control-next:hover {
    opacity: 1 !important;
}

/* White arrow icons */
.home-banner-carousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.home-banner-carousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel indicators */
.home-banner-carousel .carousel-indicators {
    margin-bottom: 1rem;
}

.home-banner-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    border: none;
    transition: all 0.3s ease;
}

.home-banner-carousel .carousel-indicators .active {
    background-color: #ffffff;
    width: 30px;
    border-radius: 10px;
}

/* Banner area styling */
.home-banner-carousel .banner-area {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/** - Funfact Area Style
** - Funfact Area Style
** - Apply Area Style
** - Events Area Style
** - Tuition Area Style
** - Facilities Area Style
** - Testimonial Area Style
** - Partner Area Style
** - Footer Area Style
** - Overview Area Style
** - Programs Area Style
** - Upcoming Area Style
** - Application Area Style
** - Blog Area Style
** - Admission Area Style
** - Adma About Area Style
** - Video Area Style
** - Student Area Style
** - Counter Area Style
** - Choose Area Style
** - Newsletter Area Style
** - Page Banner Area Style
** - Fitness Area Style
** - Support Area Style
** - Contact Area Style
*/
/*================================================
Default Style
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");

:root {
    --heading-font-family: "Roboto Slab", serif;
    --body-font-family: "Poppins", sans-serif;
    --fontSize: 16px;
    --primaryColor: #FA394A;
    --secenderyColor: #FFC333;
    --whiteColor: #ffffff;
    --blackColor: rgb(0, 30, 67);
    --paragraphColor: #555;
    --transition: .5s;
}

body {
    margin: 0;
    padding: 0;
    color: var(--paragraphColor);
    font-weight: 400;
    font-size: var(--fontSize);
    font-family: var(--body-font-family);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--blackColor);
    font-family: var(--heading-font-family);
}

a {
    transition: var(--transition);
    color: var(--blackColor);
    outline: 0 !important;
}

a:hover {
    color: var(--primaryColor);
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--paragraphColor);
    font-family: var(--body-font-family);
}

p:last-child {
    margin-bottom: 0;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primaryColor) !important;
}

.ptb-100 {
    padding-top: 110px;
    padding-bottom: 110px;
}

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

.pb-100 {
    padding-bottom: 110px;
}

.pt-75 {
    padding-top: 85px;
}

.pb-75 {
    padding-bottom: 85px;
}

/*=========================================
Default Btn
===========================================*/
.default-btn {
    padding: 15px 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor) !important;
    background-color: var(--primaryColor);
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 700;
}

.default-btn i {
    line-height: 0;
    font-size: 25px;
    margin-left: 19px;
    position: relative;
}

.default-btn:hover {
    color: var(--blackColor) !important;
    background-color: var(--whiteColor);
}

.default-btn.style-2:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.arrow-btn {
    margin-right: 40px;
    position: relative;
    display: inline-block;
    color: var(--secenderyColor);
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 700;
}

.arrow-btn i {
    top: 2px;
    line-height: 0;
    font-size: 25px;
    margin-left: 15px;
    position: absolute;
}

.arrow-btn::before {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--secenderyColor);
}

.arrow-btn::after {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.arrow-btn:hover {
    color: var(--whiteColor);
}

.arrow-btn:hover::before {
    opacity: 0;
}

.arrow-btn:hover::after {
    width: 100%;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

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

@keyframes MOVE-BG {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(60px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

/*=========================================
Section Title Style
===========================================*/
.section-title {
    max-width: 610px;
    margin-bottom: 35px !important;
    padding-top: 1rem;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 0;
}

/*================================================
Top Header Area Style
=================================================*/
.top-header-area {
    background-color: var(--blackColor);
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-header-area .container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px;
}

.top-header-area.style-2 {
    background-color: #002a5c;
}

.top-header-area.style-3 .container-fluid {
    max-width: 1520px;
    padding-left: 30px;
    padding-right: 30px;
}

.top-header-area.pages-style .container-fluid {
    max-width: 1480px;
    padding-left: 30px;
    padding-right: 30px;
}

.top-header-list ul li {
    margin-right: 13px;
    padding-right: 20px;
    position: relative;
}

.top-header-list ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.56);
}

.top-header-list ul li a i {
    top: 2px;
    font-size: 16px;
    margin-right: 7px;
    position: relative;
    color: var(--primaryColor);
}

.top-header-list ul li a:hover {
    color: var(--primaryColor);
}

.top-header-list ul li::before {
    top: 2px;
    right: 0;
    width: 1px;
    height: 17px;
    content: "";
    position: absolute;
    background-color: rgb(31, 57, 90);
}

.top-header-list ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.top-header-list ul li:last-child::before {
    display: none;
}

.top-header-list ul li:last-child a i {
    top: 0;
}

.top-header-list.style-2 ul li a i {
    color: var(--whiteColor);
}

.top-header-social-list ul li .pages-link li {
    margin-right: 6px;
    padding-right: 12px;
    position: relative;
}

.top-header-social-list ul li .pages-link li a {
    font-size: 13px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.56);
}

.top-header-social-list ul li .pages-link li a:hover {
    color: var(--primaryColor);
}

.top-header-social-list ul li .pages-link li::before {
    top: 6px;
    right: 0;
    width: 1px;
    height: 15px;
    content: "";
    position: absolute;
    background-color: rgb(31, 57, 90);
}

.top-header-social-list ul li .pages-link li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.top-header-social-list ul li .pages-link li:last-child::before {
    display: none;
}

.top-header-social-list ul li .social-link {
    margin-left: 18px;
}

.top-header-social-list ul li .social-link li {
    margin-right: 4px;
}

.top-header-social-list ul li .social-link li a {
    width: 26px;
    height: 26px;
    font-size: 12px;
    line-height: 26px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: rgb(143, 156, 172);
    background-color: rgba(255, 255, 255, 0.08);
}

.top-header-social-list ul li .social-link li a i {
    bottom: -2px;
    position: relative;
}

.top-header-social-list ul li .social-link li a:hover {
    color: var(--blackColor);
    background-color: var(--secenderyColor);
}

.top-header-social-list ul li .social-link li:last-child {
    margin-right: 0;
}

/*================================================
Navbar Area Style
=================================================*/
.navbar {
    z-index: 2;
    position: relative;
    background-color: var(--whiteColor);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar .container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar .navbar-brand {
    font-size: inherit;
    line-height: 1;
    padding: 0;
}

.navbar ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.navbar .navbar-nav {
    margin-right: 60px;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin-left: 0;
    margin-right: 22px;
}

.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    color: var(--blackColor);
    transition: var(--transition);
    width: auto;
    font-weight: 500;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

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

.navbar .navbar-nav .nav-item .nav-link:hover::before,
.navbar .navbar-nav .nav-item .nav-link.active::before {
    color: var(--primaryColor);

}

.navbar .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after,
.navbar .navbar-nav .nav-item .nav-link.active.dropdown-toggle::after {
    opacity: 1;
    margin-top: 0;
    visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-toggle {
    margin-right: 17px;
}

.navbar .navbar-nav .nav-item .dropdown-toggle::after {
    left: 0;
    bottom: 0;
    margin: 0;
    opacity: 0;
    content: "";
    height: 1px;
    width: 100%;
    border: none;
    display: block;
    position: absolute;
    background-image: none;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-toggle::before {
    color: rgb(153, 165, 180);
    transition: var(--transition);
    position: absolute;
    content: "\ea4d";
    line-height: 1;
    font-size: 18px;
    right: -23px;
    top: 1px;
    font-family: remixicon !important;
    font-style: normal;
}

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

.navbar .navbar-nav .nav-item:first-child {
    margin-left: 0;
}

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

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

.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after,
.navbar .navbar-nav .nav-item.active .nav-link.dropdown-toggle::after {
    opacity: 1;
    margin-top: 0;
    visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    left: 0;
    top: 30px;
    opacity: 0;
    z-index: 99;
    border: none;
    width: 270px;
    margin-top: 0;
    display: block;
    padding: 12px 0;
    border-radius: 0;
    position: absolute;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    transform: translate3d(0, 18px, 0);
    background-color: var(--whiteColor);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
    margin: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    display: block;
    color: var(--blackColor);
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 500;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::after {
    display: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    top: 0;
    opacity: 0;
    left: 100%;
    margin-top: 0;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    top: 0;
    opacity: 0;
    left: -100%;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    top: 0;
    opacity: 0;
    left: 100%;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secenderyColor);
}

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

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar .others-option .option-item .search-form .form-group {
    position: relative;
}

.navbar .others-option .option-item .search-form .form-group .form-control {
    height: 48px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
    color: var(--paragraphColor);
}

.navbar .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
    font-size: 13px;
}

.navbar .others-option .option-item .search-form .form-group .form-control::placeholder {
    font-size: 13px;
}

.navbar .others-option .option-item .search-form .form-group button {
    top: 50%;
    right: 17px;
    border: unset;
    position: absolute;
    transform: translateY(-50%);
    color: var(--paragraphColor);
    background-color: transparent;
}

.navbar .others-option .option-item .responsive-icon a {
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.navbar .others-option .option-item .responsive-icon a:hover {
    background-color: var(--blackColor);
}

.navbar .navbar-toggler {
    color: var(--whiteColor);
    font-size: inherit;
    box-shadow: unset;
    border: none;
    padding: 0;
}

.navbar .navbar-toggler .burger-menu {
    cursor: pointer;
}

.navbar .navbar-toggler .burger-menu span {
    height: 3px;
    width: 30px;
    margin: 5px 0;
    display: block;
    background: var(--primaryColor);
}

.navbar.sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: sticky;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar.style-2 .others-option .option-item .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.navbar.style-3 {
    background-color: #002a5c;
}

.navbar.style-3 .navbar-nav {
    margin-left: 65px;
}

.navbar.style-3 .navbar-nav .nav-item .nav-link {
    color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .nav-link:hover,
.navbar.style-3 .navbar-nav .nav-item .nav-link.active {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .nav-link:hover::before,
.navbar.style-3 .navbar-nav .nav-item .nav-link.active::before {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle {
    margin-right: 17px;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-toggle::after {
    background-color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item:hover .nav-link::before,
.navbar.style-3 .navbar-nav .nav-item.active .nav-link::before {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu {
    background-color: var(--blackColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item {
    margin: 0;
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    top: 0;
    opacity: 0;
    left: 100%;
    margin-top: 0;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--whiteColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secenderyColor);
}

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

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--s);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secenderyColor);
}

.navbar.style-3 .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar.style-3 .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.navbar.style-3 .container-fluid {
    max-width: 1520px;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar.style-3 .others-option .option-item .default-btn {
    color: var(--blackColor) !important;
    background-color: var(--secenderyColor);
}

.navbar.style-3 .others-option .option-item .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--primaryColor);
}

.navbar.pages-style .container-fluid {
    max-width: 1480px;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar.pages-style .navbar-nav {
    margin-right: 50px;
}

.navbar.pages-style .others-option .option-item .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

/*================================================
Responsive Navbar
=================================================*/
.responsive-navbar {
    --bs-offcanvas-width: 420px;
    background-color: var(--blackColor);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.responsive-navbar .offcanvas-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsive-navbar .offcanvas-header .close-btn {
    transition: var(--transition);
    color: var(--whiteColor);
    font-size: 20px;
    cursor: pointer;
    top: 2px;
}

.responsive-navbar .offcanvas-header .close-btn:hover {
    color: var(--primaryColor);
}

.responsive-navbar .offcanvas-body {
    padding: 30px;
}

.responsive-navbar .offcanvas-body ul {
    list-style-type: none;
    margin-bottom: 0;
}

.responsive-navbar .offcanvas-body ul.responsive-menu {
    padding-left: 0;
    overflow: hidden;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    line-height: 55px;
    height: 55px;
    clear: both;
    width: 100%;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list:after {
    top: 50%;
    right: 0;
    content: "\ea4e";
    color: var(--whiteColor);
    position: absolute;
    transform: translateY(-50%);
    transition: var(--transition);
    font-family: remixicon !important;
    font-style: normal;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a {
    height: 100%;
    display: block;
    color: var(--whiteColor);
    padding-right: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a:hover,
.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.active {
    color: var(--secenderyColor);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items {
    height: 0;
    overflow: hidden;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a {
    padding: 0 15px;
    font-size: 15px;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a:hover {
    color: var(--whiteColor);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list.without-icon:after {
    display: none;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active:after {
    transform: translateY(-50%) rotate(180deg);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items {
    transition: all 200ms;
    display: block;
    height: auto;
    clear: both;
    float: left;
    width: 100%;
    padding: 0;
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsive-navbar .offcanvas-body ul.responsive-menu .active>a {
    color: var(--whiteColor);
}

.responsive-navbar .offcanvas-body .others-option {
    margin-top: 50px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group {
    position: relative;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control {
    height: 48px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
    color: var(--paragraphColor);
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::-moz-placeholder {
    font-size: 13px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group .form-control::placeholder {
    font-size: 13px;
}

.responsive-navbar .offcanvas-body .others-option .option-item .search-form .form-group button {
    top: 50%;
    right: 17px;
    border: unset;
    position: absolute;
    transform: translateY(-50%);
    color: var(--paragraphColor);
    background-color: transparent;
}

/*================================================
Search Modal Style
=================================================*/
.searchModal .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--blackColor);
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.searchModal .modal-dialog .modal-content {
    border: 0;
    padding: 0;
    display: block;
    border-radius: 0;
    max-width: 720px;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
}

.searchModal .modal-dialog .modal-content form {
    position: relative;
}

.searchModal .modal-dialog .modal-content form .input-search {
    height: 60px;
    font-size: 14px;
    border-radius: 6px;
    color: var(--whiteColor);
    border: 1px solid rgba(221, 213, 208, 0.55);
    padding-left: 20px;
    padding-right: 20px;
}

.searchModal .modal-dialog .modal-content form .input-search::-moz-placeholder {
    color: var(--secenderyColor);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form .input-search::placeholder {
    color: var(--secenderyColor);
    transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form .input-search:focus {
    outline: none;
    border-color: none;
    box-shadow: none;
}

.searchModal .modal-dialog .modal-content form .input-search:focus::-moz-placeholder {
    color: transparent;
}

.searchModal .modal-dialog .modal-content form .input-search:focus::placeholder {
    color: transparent;
}

.searchModal .modal-dialog .modal-content form button {
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 54px;
    border-radius: 3px;
    position: absolute;
    transition: var(--transition);
    background-color: var(--primaryColor);
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.searchModal .modal-dialog .modal-content form button svg {
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    line-height: 1;
    font-size: 21px;
    position: absolute;
    transform: translateY(-50%);
    transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form button svg g path {
    transition: var(--transition);
}

.searchModal .modal-dialog .modal-content form button:hover {
    color: var(--blackColor);
    background-color: var(--secenderyColor);
}

.searchModal .modal-dialog .modal-content form button:hover svg g path {
    fill: var(--blackColor);
}

.searchModal .modal-dialog .modal-content .btn-close {
    top: 7px;
    z-index: 2;
    opacity: 1;
    font-size: 30px;
    right: -50px;
    cursor: pointer;
    box-shadow: unset;
    background: unset;
    position: absolute;
    color: var(--whiteColor);
    transition: var(--transition);
}

.searchModal .modal-dialog .modal-content .btn-close:hover {
    color: var(--primaryColor);
}

/*================================================
Hero Area Style
=================================================*/
.hero-area {
    z-index: 1;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/bg/bg-1.jpg);
    padding-top: 190px;
    padding-bottom: 225px;
}

.hero-area .container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px;
}

.hero-area::after {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 9, 41, 0.9) 31.2%, rgba(0, 9, 41, 0) 65.89%);
}

.hero-content {
    max-width: 835px;
}

.hero-content .title {
    margin-bottom: 45px;
}

.hero-content .title h1 {
    font-size: 90px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--whiteColor);
}

.hero-content .title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-content .hero-btn li {
    margin-right: 30px;
}

.hero-content .hero-btn li:last-child {
    margin-right: 0;
}

.hero-reviews {
    right: 150px;
    bottom: 70px;
    max-width: 442px;
    padding: 30px 35px;
    position: absolute;
    background-color: var(--secenderyColor);
}

.hero-reviews .everything {
    color: #5b5952;
    font-weight: 500;
    margin-bottom: 26px;
    font-size: 16px;
    font-style: italic;
}

.hero-reviews .user .image {
    flex: 0 0 auto;
    display: block;
    margin-right: 13px;
}

.hero-reviews .user .image img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.hero-reviews .user .content h6 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.hero-reviews .user .content span {
    font-size: 14px;
    color: rgba(85, 85, 85, 0.8);
}

.hero-reviews .quote-icon {
    font-size: 22px;
    color: var(--blackColor);
}

.banner-area {
    z-index: 1;
    position: relative;
    padding-top: 225px;
    padding-bottom: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 75vh;
}

.banner-area .container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px;
}

.banner-content {
    max-width: 727px;
    margin-bottom: 200px;
}

.banner-content .title {
    margin-bottom: 45px;
}

.banner-content .title p {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 500;
}

.banner-content .title p span {
    color: var(--secenderyColor);
}

.banner-content .title h1 {
    font-size: 80px;
    line-height: 1.3;
    color: var(--whiteColor);
}

.banner-content .title h1 span {
    position: relative;
    display: inline-block;
    color: var(--secenderyColor);
}

.banner-content .title h1 span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secenderyColor);
}

.banner-content ul li {
    margin-right: 25px;
}

.banner-content ul li .play-btn li {
    margin-right: 15px;
}

.banner-content ul li .play-btn li .icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--whiteColor);
}

.banner-content ul li .play-btn li .icon i {
    top: 1px;
    left: 2px;
    position: relative;
}

.banner-content ul li .play-btn li .icon:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.banner-content ul li .play-btn li .arrow-btn {
    color: var(--whiteColor);
}

.banner-content ul li .play-btn li .arrow-btn::before {
    background-color: var(--whiteColor);
}

.banner-content ul li .play-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.banner-content ul li .play-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.banner-content ul li .play-btn li:last-child {
    margin-right: 0;
}

.banner-content ul li:last-child {
    margin-right: 0;
}

.banner-uesr-info {
    max-width: 1176px;
}

.banner-uesr-info .banner-uesr-item {
    padding: 30px;
    background-color: #dc2626;
    border-radius: 10px;

}

.banner-uesr-info .banner-uesr-item .icon {
    display: block;
    flex: 0 0 auto;
    font-size: 44px;
    margin-right: 20px;
    color: var(--secenderyColor);
}

.banner-uesr-info .banner-uesr-item .content .title {
    margin-bottom: 8px;
}

.banner-uesr-info .banner-uesr-item .content .title h2 {
    font-size: 18px;
    margin-right: 8px;
    color: var(--secenderyColor);
}

.banner-uesr-info .banner-uesr-item .content .title h3 {
    font-size: 18px;
    color: var(--whiteColor);
}

.banner-uesr-info .banner-uesr-item .content a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.57);
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: 600;
}

.banner-uesr-info .banner-uesr-item .content a i {
    top: -2px;
    line-height: 0;
    font-size: 25px;
    margin-left: 15px;
    position: absolute;
}

.banner-uesr-info .banner-uesr-item .content a::after {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item .content a:hover {
    color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item .content a:hover::after {
    width: 100%;
}

.banner-uesr-info .banner-uesr-item:hover .content a {
    color: var(--primaryColor);
}

.banner-uesr-info .banner-uesr-item:hover .content a::after {
    width: 100%;
}

.banner-wrap-area {
    background-color: #faf7f2;
}

.banner-wrap-area .container-fluid {
    max-width: 1520px;
    padding-left: 30px;
    padding-right: 30px;
}

.banner-wrap-image {
    position: relative;
    margin-top: 50px;
    margin-right: -40px;
}

.banner-wrap-image .image-2 {
    top: 149px;
    left: 0;
    position: absolute;
}

.banner-wrap-image .image-2 img {
    animation: rotateme 15s linear infinite;
}

.banner-wrap-image .image-2 .middle-img {
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    position: absolute;
    transform: translateY(-50%);
}

.banner-wrap-image .image-2 .middle-img img {
    animation: unset;
}

.banner-wrap-content {
    max-width: 625px;
    margin-left: auto;
    position: relative;
}

.banner-wrap-content .title {
    margin-bottom: 35px;
}

.banner-wrap-content .title p {
    margin-bottom: 5px;
}

.banner-wrap-content .title p span {
    color: var(--primaryColor);
}

.banner-wrap-content .title h1 {
    font-size: 80px;
    line-height: 1.2;
    color: #002a5c;
    margin-bottom: 20px;
}

.banner-wrap-content .title h1 span {
    color: var(--secenderyColor);
    border-bottom: 4px solid var(--secenderyColor);
}

.banner-wrap-content .btn-list li {
    margin-right: 30px;
}

.banner-wrap-content .btn-list li .play-btn li {
    margin-right: 15px;
}

.banner-wrap-content .btn-list li .play-btn li .icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--secenderyColor);
}

.banner-wrap-content .btn-list li .play-btn li .icon i {
    top: 1px;
    left: 2px;
    position: relative;
}

.banner-wrap-content .btn-list li .play-btn li .icon:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn {
    color: var(--blackColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn::before {
    background-color: var(--blackColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.banner-wrap-content .btn-list li .play-btn li:last-child {
    margin-right: 0;
}

.banner-wrap-content .btn-list li:last-child {
    margin-right: 0;
}

.banner-wrap-content .user-list {
    margin-top: 70px;
}

.banner-wrap-content .user-list li {
    margin-right: 15px;
}

.banner-wrap-content .user-list li .image li {
    margin-right: -15px;
}

.banner-wrap-content .user-list li .image li img {
    width: 54px;
    height: 54px;
    border-radius: 100%;
    border: 3px solid var(--whiteColor);
}

.banner-wrap-content .user-list li .image li:last-child {
    margin-right: 0;
}

.banner-wrap-content .user-list li h2 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 5px;
}

.banner-wrap-content .user-list li p {
    font-size: 14px;
}

.banner-wrap-content .content-shape {
    top: -20px;
    right: 70px;
    position: absolute;
}

.banner-wrap-content .content-shape::before {
    left: 0;
    right: 0;
    top: 50%;
    content: "";
    width: 10px;
    height: 10px;
    margin: auto;
    border-radius: 100%;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    background-color: var(--primaryColor);
}

.banner-wrap-content .content-shape img {
    animation: rotateme 15s linear infinite;
}

/*================================================
About Area Style
=================================================*/
.about-image {
    margin-bottom: 25px;
}

.about-content {
    margin-left: 70px;
    margin-bottom: 25px;
    margin-right: -10px;
}

.about-content .title {
    margin-bottom: 30px;
}

.about-content .title h2 {
    font-size: 42px;
    line-height: 0;
    margin-bottom: 30px;
}

.about-content .title h2 img {
    margin-right: 10px;
    margin-top: 5px;
}

.about-content .arrow-btn {
    color: var(--primaryColor);
}

.about-content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.about-content .arrow-btn:hover {
    color: var(--blackColor);
}

.about-content .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

/*================================================
Graduets Area Style
=================================================*/
.graduets-tab-info .nav {
    margin-bottom: 45px;
}

.graduets-tab-info .nav .nav-item {
    margin-right: 55px;
}

.graduets-tab-info .nav .nav-item .nav-link {
    padding: 0;
    font-weight: 700;
    position: relative;
    color: var(--paragraphColor);
    background-color: transparent;
    font-family: var(--heading-font-family);
}

.graduets-tab-info .nav .nav-item .nav-link::before {
    left: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.graduets-tab-info .nav .nav-item .nav-link.active {
    color: var(--primaryColor);
}

.graduets-tab-info .nav .nav-item .nav-link.active::before {
    width: 100%;
}

.graduets-tab-info .nav .nav-item:last-child {
    margin-right: 0;
}

.graduets-content {
    margin-right: 25px;
    margin-bottom: 25px;
}

.graduets-content .graduets-card {
    padding: 30px;
    margin-bottom: 25px;
    background-color: #f6f6f6;
    transition: var(--transition);
}

.graduets-content .graduets-card .image {
    flex: 0 0 auto;
    display: block;
    margin-right: 25px;
}

.graduets-content .graduets-card .image img {
    width: 148px;
    height: 145px;
}

.graduets-content .graduets-card .content h6 {
    font-size: 18px;
    margin-bottom: 9px;
    transition: var(--transition);
}

.graduets-content .graduets-card .content p {
    transition: var(--transition);
}

.graduets-content .graduets-card .content .arrow-btn {
    color: var(--primaryColor);
}

.graduets-content .graduets-card .content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.graduets-content .graduets-card .content .arrow-btn:hover {
    color: var(--whiteColor);
}

.graduets-content .graduets-card:hover {
    background-color: var(--blackColor);
}

.graduets-content .graduets-card:hover .content h6 {
    color: var(--whiteColor);
}

.graduets-content .graduets-card:hover .content p {
    color: rgba(255, 255, 255, 0.75);
}

.graduets-image {
    margin-bottom: 25px;
}

.graduets-image .image {
    margin-bottom: 50px;
}

.graduets-image .graduets-counter h2 {
    line-height: 0;
    font-size: 60px;
    margin-bottom: 15px;
}

.graduets-image .graduets-counter h2 img {
    margin-right: 10px;
}

.graduets-image .graduets-counter p {
    color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn {
    font-weight: 700;
    color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn::before {
    background-color: var(--blackColor);
}

.graduets-image .graduets-btn .arrow-btn:hover {
    color: var(--primaryColor);
}

.graduets-image .graduets-btn .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.single-graduates-card {
    height: 100%;
    padding: 50px 40px;
    margin-bottom: 25px;
    background-color: #002a5c;
}

.single-graduates-card h3 {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: var(--whiteColor);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-graduates-card h3 i {
    font-size: 40px;
    line-height: 0;
    margin-right: 10px;
    color: var(--secenderyColor);
}

.single-graduates-card p {
    padding-bottom: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-graduates-card .list li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 15px;
}

.single-graduates-card .list li a {
    font-weight: 800;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.81);
    font-family: var(--heading-font-family);
}

.single-graduates-card .list li a i {
    font-size: 25px;
    line-height: 0;
    color: var(--secenderyColor);
    transition: var(--transition);
}

.single-graduates-card .list li a::before {
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 100%;
    position: absolute;
    transform: translateY(-50%);
    background-color: var(--secenderyColor);
}

.single-graduates-card .list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset;
}

.single-graduates-card .list li:hover a {
    color: var(--primaryColor);
}

.single-graduates-card .list li:hover a i {
    color: var(--primaryColor);
}

.single-graduates-card span {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.75);
}

.single-graduates-card span i {
    font-size: 20px;
    line-height: 0;
    margin-right: 10px;
    color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-graduates-card {
    background-color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-graduates-card h3 {
    color: var(--blackColor);
    border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card h3 i {
    color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card p {
    color: #5b5952;
    border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li {
    border-color: rgba(255, 255, 255, 0.22);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a {
    color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a i {
    color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a::before {
    background-color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card .list li a:hover {
    color: var(--primaryColor);
}

.col-lg-4:nth-child(2) .single-graduates-card span {
    color: #5b5952;
}

.col-lg-4:nth-child(2) .single-graduates-card span i {
    color: var(--primaryColor);
}

.col-lg-4:nth-child(3) .single-graduates-card {
    background-color: var(--blackColor);
}

.col-lg-4:nth-child(3) .single-graduates-card h3 {
    border-color: rgba(255, 255, 255, 0.07);
}

.col-lg-4:nth-child(3) .single-graduates-card h3 i {
    color: var(--primaryColor);
}

.col-lg-4:nth-child(3) .single-graduates-card p {
    border-color: rgba(255, 255, 255, 0.07);
}

.col-lg-4:nth-child(3) .single-graduates-card .list li {
    border-color: rgba(255, 255, 255, 0.07);
}

/*==========================*/

/* ======================
   Simple About Banner
   ====================== */
.simple-about-banner {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.simple-about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.simple-about-banner .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.simple-breadcrumb {
    margin-bottom: 30px;
}

.simple-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.simple-breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.simple-breadcrumb .breadcrumb-item a {
    color: #2980b9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.simple-breadcrumb .breadcrumb-item a:hover {
    color: #197cbd;
    transform: translateX(3px);
}

.simple-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
}

.simple-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: #6c757d;
    padding: 0 10px;
    font-size: 18px;
    line-height: 1;
}

.simple-breadcrumb .breadcrumb-item i {
    margin-right: 5px;
}

/* Banner Title */
.banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-title span {
    color: #2980b9;
    display: block;
    margin-top: 5px;
}

/* Banner Subtitle */
.banner-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

/* Banner Buttons */
.banner-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.banner-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.banner-buttons .btn-primary {
    background: #4f46e5;
    border: 2px solid #4f46e5;
    color: white;
}

.banner-buttons .btn-primary:hover {
    background: #4338ca;
    border-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.banner-buttons .btn-outline-primary {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
}

.banner-buttons .btn-outline-primary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

/* Banner Image */
.banner-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.banner-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.banner-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.banner-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    .simple-about-banner {
        padding: 80px 0;
    }

    .simple-about-banner::before {
        width: 60%;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-buttons {
        flex-wrap: wrap;
    }

    .banner-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .banner-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .simple-about-banner {
        text-align: center;
        padding: 60px 0;
    }

    .simple-about-banner::before {
        display: none;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .simple-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 0.95rem;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .simple-about-banner {
    background: #1a1a2e;
}

[data-bs-theme="dark"] .banner-title {
    color: #f3f4f6;
}

[data-bs-theme="dark"] .banner-subtitle {
    color: #9ca3af;
}

[data-bs-theme="dark"] .simple-breadcrumb .breadcrumb-item,
[data-bs-theme="dark"] .simple-breadcrumb .breadcrumb-item.active,
[data-bs-theme="dark"] .simple-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #9ca3af;
}

[data-bs-theme="dark"] .simple-breadcrumb .breadcrumb-item a {
    color: #818cf8;
}

[data-bs-theme="dark"] .banner-image-wrapper {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* ======================
   About Banner Section
   ====================== */
.about-banner-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0;
}

/* Background Shapes */
.about-banner-shape-1,
.about-banner-shape-2,
.about-banner-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.about-banner-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.about-banner-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.about-banner-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: pulse 8s ease-in-out infinite;
}

/* Content Styles */
.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.about-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 2rem;
}

.about-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

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

.about-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
    transform: translateX(3px);
}

.about-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.about-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: '›';
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 1;
}

.about-banner-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
}

/* Image Wrapper */
.about-banner-image-wrapper {
    position: relative;
    padding: 30px;
    z-index: 2;
}

.about-banner-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid rgba(255, 255, 255, 0.15);
}

.about-banner-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-banner-image:hover img {
    transform: scale(1.05);
}

/* Badge */
.about-banner-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 15px 10px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transform: translateY(20px);
    animation: floatUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.about-banner-badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    font-size: 1.25rem;
}

.about-banner-badge-text span {
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.2;
}

.about-banner-badge-text small {
    color: #6b7280;
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
}

/* Floating Icons */
.about-banner-floating {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 8s ease-in-out infinite;
}

.about-banner-floating-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.about-banner-floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

/* Wave Shape */
.about-banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.about-banner-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Buttons */
.about-banner-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.about-banner-buttons .btn-primary {
    background: #fff;
    color: #4f46e5;
    border: 2px solid #fff;
}

.about-banner-buttons .btn-outline-primary {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.about-banner-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Animations */
@keyframes float {

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

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

@keyframes floatUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .about-banner-title {
        font-size: 2.5rem;
    }

    .about-banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .about-banner-section {
        padding: 80px 0 0;
    }

    .about-banner-content {
        padding: 3rem 2rem !important;
    }

    .about-banner-title {
        font-size: 2.2rem;
    }

    .about-banner-image-wrapper {
        padding: 20px;
    }

    .about-banner-badge {
        left: 50%;
        transform: translateX(-50%) translateY(20px);
    }

    .about-banner-floating {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .about-banner-section {
        text-align: center;
        padding: 60px 0 0;
    }

    .about-banner-content {
        padding: 2rem 1.5rem !important;
    }

    .about-banner-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-banner-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .about-banner-buttons {
        justify-content: center;
    }

    .about-banner-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-breadcrumb {
        justify-content: center;
    }

    .about-banner-badge {
        bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .about-banner-title {
        font-size: 1.6rem;
    }

    .about-banner-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .about-banner-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .about-banner-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #1e1e2f 100%);
}

[data-bs-theme="dark"] .about-banner-badge {
    background: #1f2937;
}

[data-bs-theme="dark"] .about-banner-badge-text span {
    color: #f9fafb;
}

[data-bs-theme="dark"] .about-banner-badge-text small {
    color: #9ca3af;
}

[data-bs-theme="dark"] .about-banner-floating {
    background: #1f2937;
    color: #818cf8;
}

/* ======================
   Enhanced Breadcrumb
   ====================== */

/*================================================
Funfact Area Style
=================================================*/
.single-funfact-info {
    padding: 50px;
    margin-bottom: 25px;
    background-color: #002A5C;
}

.single-funfact-info h2 {
    line-height: 0;
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--whiteColor);
}

.single-funfact-info h2 i {
    font-size: 45px;
    line-height: 0;
    color: #e4b200;
    margin-right: 10px;
}

.single-funfact-info p {
    color: rgba(255, 255, 255, 0.7);
}

.single-funfact-info .arrow-btn {
    color: var(--primaryColor);
}

.single-funfact-info .arrow-btn::before {
    background-color: var(--primaryColor);
}

.single-funfact-info .arrow-btn:hover {
    color: var(--whiteColor);
}

.col-lg-4:nth-child(2) .single-funfact-info {
    background-color: var(--secenderyColor);
}

.col-lg-4:nth-child(2) .single-funfact-info h2 {
    color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-funfact-info h2 i {
    color: var(--blackColor);
}

.col-lg-4:nth-child(2) .single-funfact-info p {
    color: var(--blackColor);
}

.col-lg-4:nth-child(3) .single-funfact-info {
    background-color: var(--blackColor);
}

/*================================================
Apply Area Custom Styles (Fixed Layout)
=================================================*/
.apply-area-custom {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.apply-content-custom {
    padding: 0 15px;
    margin-bottom: 30px;
}

.apply-content-custom .title {
    margin-bottom: 40px;
}

.apply-content-custom .title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.apply-content-custom .title p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
}

.apply-content-custom .apply-content-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.apply-content-custom .apply-content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.apply-content-custom .apply-content-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.apply-content-custom .apply-content-card .icon i {
    font-size: 24px;
    color: #ffffff;
}

.apply-content-custom .apply-content-card .content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.apply-content-custom .apply-content-card .content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.apply-image-custom {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}

.apply-image-custom .image {
    position: relative;
    margin-bottom: 30px;
}

.apply-image-custom .image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.apply-image-custom .user-help {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
    border-left: 4px solid #e74c3c;
}

.apply-image-custom .user-help .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.apply-image-custom .user-help .icon i {
    font-size: 20px;
    color: #ffffff;
}

.apply-image-custom .user-help .content span {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
    margin-bottom: 5px;
}

.apply-image-custom .user-help .content a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.apply-image-custom .user-help .content a:hover {
    color: #e74c3c;
}

.apply-image-custom .user-image {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 2;
}

.apply-image-custom .user-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .apply-content-custom .title h2 {
        font-size: 2rem;
    }

    .apply-image-custom .user-help {
        position: static;
        margin-bottom: 20px;
    }

    .apply-image-custom .user-image {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .apply-content-custom .title h2 {
        font-size: 1.8rem;
    }

    .apply-content-custom .apply-content-card {
        padding: 20px;
    }

    .apply-content-custom .apply-content-card .icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .apply-content-custom .apply-content-card .icon i {
        font-size: 20px;
    }

    .apply-image-custom .user-image {
        display: none;
    }
}

/*================================================
Testimonial Area Custom Styles (Beautiful Design)
=================================================*/
.testimonial-area-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    min-height: 600px;
}

.testimonial-area-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonial-section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.testimonial-slider-custom {
    position: relative;
    z-index: 2;
}

.testimonial-card-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    margin: 20px 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ffd700);
}

.testimonial-card-custom:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-card-custom .star-icon {
    margin-bottom: 25px;
}

.testimonial-card-custom .star-icon li i {
    font-size: 20px;
    color: #ffd700;
    margin-right: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card-custom p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-card-custom p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #667eea;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card-custom .user .image {
    margin-right: 15px;
    position: relative;
}

.testimonial-card-custom .user .image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card-custom .user .content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.testimonial-card-custom .user .content span {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

.testimonial-card-custom .quote-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.testimonial-card-custom .quote-icon i {
    font-size: 20px;
    color: #ffffff;
}

/* Swiper Navigation Buttons */
.testimonial-slider-custom {
    padding-bottom: 80px;
    position: relative;
    z-index: 3;
}

.testimonial-slider-custom .swiper-btn {
    position: relative;
    text-align: center;
    margin-top: 50px;
    z-index: 10;
}

.testimonial-slider-custom .swiper-button-next,
.testimonial-slider-custom .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.testimonial-slider-custom .swiper-button-next:hover,
.testimonial-slider-custom .swiper-button-prev:hover {
    background: white;
    color: white;
    transform: scale(1.1);
}

.testimonial-slider-custom .swiper-button-next::after,
.testimonial-slider-custom .swiper-button-prev::after {
    display: none;
}

.testimonial-slider-custom .swiper-button-next i,
.testimonial-slider-custom .swiper-button-prev i {
    font-size: 20px;
    color: #667eea;
    transition: all 0.3s ease;
}

.testimonial-slider-custom .swiper-button-next:hover i,
.testimonial-slider-custom .swiper-button-prev:hover i {
    color: #ffffff;
}

.testimonial-slider-custom .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .testimonial-area-custom {
        min-height: 500px;
        padding: 80px 0;
    }

    .testimonial-section-title h2 {
        font-size: 2.5rem;
    }

    .testimonial-card-custom {
        padding: 30px;
        margin: 15px 5px;
    }
}

@media (max-width: 767px) {
    .testimonial-area-custom {
        padding: 80px 0;
    }

    .testimonial-section-title {
        margin-bottom: 40px;
    }

    .testimonial-section-title h2 {
        font-size: 2rem;
    }

    .testimonial-card-custom {
        padding: 25px;
        margin: 10px 5px;
    }

    .testimonial-card-custom p {
        font-size: 1rem;
        padding-left: 25px;
    }

    .testimonial-card-custom .user .image img {
        width: 50px;
        height: 50px;
    }

    .testimonial-card-custom .quote-icon {
        width: 40px;
        height: 40px;
    }

    .testimonial-card-custom .quote-icon i {
        font-size: 16px;
    }

    .testimonial-slider-custom .swiper-button-next,
    .testimonial-slider-custom .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .testimonial-slider-custom .swiper-button-next i,
    .testimonial-slider-custom .swiper-button-prev i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .testimonial-area-custom {
        min-height: 400px;
        padding: 60px 0;
    }

    .testimonial-section-title h2 {
        font-size: 1.8rem;
    }

    .testimonial-card-custom {
        padding: 20px;
    }

    .testimonial-card-custom p {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .testimonial-card-custom .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .testimonial-card-custom .quote-icon {
        margin-top: 15px;
        align-self: flex-end;
    }
}

/*================================================
Apply Area Style
=================================================*/
.apply-area {
    background-color: #f6f6f6;
}

.apply-area.style-2 {
    background-color: var(--whiteColor);
}

.apply-image {
    position: relative;
    margin-left: -50px;
    margin-right: 50px;
    margin-bottom: 25px;
}

.apply-image .image img {
    border-radius: 100%;
}

.apply-image .user-help {
    top: 150px;
    right: -15px;
    padding: 15px 22px;
    position: absolute;
    background-color: var(--secenderyColor);
}

.apply-image .user-help .icon {
    font-size: 30px;
    flex: 0 0 auto;
    display: block;
    margin-right: 15px;
}

.apply-image .user-help .content span {
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
    color: #5b5952;
}

.apply-image .user-help .content a {
    color: var(--blackColor);
    font-family: var(--heading-font-family);
    font-size: 18px;
    font-weight: 800;
}

.apply-image .user-help .content a:hover {
    color: var(--primaryColor);
}

.apply-image.style-2 {
    margin-left: 50px;
    margin-right: 0;
}

.apply-image.style-2 .image img {
    border-radius: unset;
}

.apply-image.style-2 .user-help {
    left: 0;
    top: 239px;
    right: auto;
}

.apply-image.style-2 .user-image {
    left: 0;
    bottom: 60px;
    position: absolute;
}

.apply-image.style-2 .user-image img {
    width: 166px;
    height: 156.922px;
}

.apply-content {
    margin-left: 10px;
    margin-bottom: 25px;
}

.apply-content .title {
    margin-bottom: 40px;
}

.apply-content .title h2 {
    font-size: 42px;
}

.apply-content-card {
    transition: all 0.3s ease-in-out;
}

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

.apply-area h2 {
    font-size: 1.8rem;
}

.apply-content .apply-content-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.apply-content .apply-content-card .icon {
    flex: 0 0 auto;
    font-size: 35px;
    margin-right: 20px;
    color: var(--primaryColor);
}

.apply-content .apply-content-card .content h3 {
    font-size: 18px;
    margin-bottom: 17px;
}

.apply-content .apply-content-card .content h3 span {
    margin-right: 4px;
    color: var(--primaryColor);
}

.apply-content .apply-content-card:first-child {
    margin-top: 0;
}

.apply-content .apply-btn {
    margin-top: 20px;
}

.apply-content .apply-btn li {
    margin-right: 30px;
}

.apply-content .apply-btn li .play-btn li {
    margin-right: 15px;
}

.apply-content .apply-btn li .play-btn li .icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--secenderyColor);
}

.apply-content .apply-btn li .play-btn li .icon i {
    top: 1px;
    left: 2px;
    position: relative;
}

.apply-content .apply-btn li .play-btn li .icon:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn {
    color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn::before {
    background-color: var(--blackColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.apply-content .apply-btn li .play-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.apply-content .apply-btn li .play-btn li:last-child {
    margin-right: 0;
}

.apply-content .apply-btn li:last-child {
    margin-right: 0;
}

.apply-content.style-2 {
    margin-left: 0;
    margin-right: 40px;
}

.apply-content.style-2 .title {
    margin-bottom: 40px;
}

.apply-content.style-2 .title h2 {
    margin-bottom: 25px;
}

.apply-content.style-2 .apply-content-card {
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: 0;
}

.apply-content.style-2 .apply-content-card .icon {
    width: 76px;
    height: 76px;
    margin-right: 25px;
    line-height: 88px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    background-color: #FFEBED;
}

.apply-content.style-2 .apply-content-card .content h3 {
    margin-bottom: 15px;
}

.apply-content.style-2 .default-btn {
    margin-top: 10px;
}

.apply-content.style-2 .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

/*================================================
Events Area Style
=================================================*/
.events-area {
    background-color: #f6f6f6;
    padding-top: 2rem;
}

.single-events-card {
    padding: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.single-events-card .image {
    margin-bottom: 25px;
}

.single-events-card .content {
    padding-left: 15px;
}

.single-events-card .content .date {
    position: relative;
    margin-right: 13px;
    padding-right: 13px;
}

.single-events-card .content .date h2 {
    font-size: 32px;
    line-height: 29px;
    margin-bottom: 8px;
    color: var(--secenderyColor);
}

.single-events-card .content .date span {
    display: block;
    text-align: center;
    letter-spacing: 0.63px;
    color: var(--blackColor);
    text-transform: uppercase;
    color: var(--blackColor);
    transition: var(--transition);
    font-size: 18px;
    font-weight: 600;
}

/* .single-events-card .content .date::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 57px;
  content: "";
  position: absolute;
  background-color: var(--secenderyColor);
} */
.single-events-card .content .title {
    margin-top: 5px;
}

.single-events-card .content .title h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 13px;
}

.single-events-card .content .title span {
    font-size: 14px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.single-events-card .content .title span i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--primaryColor);
}

.single-events-card:hover {
    background-color: #002a5c;
}

.single-events-card:hover .content .date span {
    color: rgba(255, 255, 255, 0.65);
}

.single-events-card:hover .content .title h3 a {
    color: var(--whiteColor);
}

.single-events-card:hover .content .title h3 a:hover {
    color: var(--primaryColor);
}

.single-events-card:hover .content .title span {
    color: rgb(255, 255, 255);
}

.single-events-card:hover .content .title p {
    color: rgb(255, 255, 255);
}

.single-events-card.pages-style {
    background-color: #f6f6f6;
}

.single-events-card.pages-style:hover {
    background-color: #002a5c;
}

/*================================================
Tuition Area Style
=================================================*/
.single-tuition-card {
    padding: 35px;
    margin-bottom: 25px;
    background-color: #002a5c;
}

.single-tuition-card h3 {
    font-size: 18px;
    margin-bottom: 13px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--whiteColor);
}

.single-tuition-card h3 p {
    color: var(--secenderyColor);
}

.single-tuition-card p {
    font-weight: 500;
    margin-bottom: 14px;
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-tuition-card p span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.col-lg-6:nth-child(2) .single-tuition-card {
    background-color: var(--secenderyColor);
}

.col-lg-6:nth-child(2) .single-tuition-card h3 {
    color: var(--blackColor);
    border-color: rgba(255, 255, 255, 0.16);
}

.col-lg-6:nth-child(2) .single-tuition-card h3 p {
    color: var(--blackColor);
}

.col-lg-6:nth-child(2) .single-tuition-card p {
    color: #5b5952;
    border-color: rgba(255, 255, 255, 0.16);
}

.col-lg-6:nth-child(2) .single-tuition-card p span {
    color: #5b5952;
}

.tuition-content {
    margin-left: 80px;
    margin-bottom: 25px;
}

.tuition-content .title {
    margin-bottom: 30px;
}

.tuition-content .title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.tuition-content .arrow-btn {
    color: var(--primaryColor);
}

.tuition-content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.tuition-content .arrow-btn:hover {
    color: var(--blackColor);
}

.tuition-content .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

/*================================================
Facilities Area Style
=================================================*/
.facilities-content {
    margin-right: 95px;
    margin-bottom: 25px;
}

.facilities-content .title {
    margin-bottom: 25px;
}

.facilities-content .title h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.facilities-content .facilities-info {
    margin-bottom: 35px;
}

.facilities-content .facilities-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.facilities-content .facilities-info h3 span {
    margin-right: 5px;
    color: var(--primaryColor);
}

.facilities-content .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.facilities-content.style-2 {
    margin-right: auto;
    margin-left: 100px;
}

.facilities-content.style-3 {
    margin-right: auto;
    margin-left: 100px;
}

.facilities-image {
    margin-bottom: 25px;
    position: relative;
}

.facilities-image .facilities-image-info {
    left: -60px;
    bottom: 77px;
    max-width: 510px;
    padding: 20px 30px;
    position: absolute;
    background-color: var(--secenderyColor);
}

.facilities-image .facilities-image-info p {
    color: #5b5952;
    font-weight: 500;
    font-style: italic;
}

.facilities-image .facilities-image-info i {
    right: 30px;
    bottom: -28px;
    font-size: 30px;
    position: absolute;
    color: var(--whiteColor);
}

.facilities-image.style-2 .facilities-image-info {
    left: auto;
    right: -70px;
    background-color: var(--blackColor);
}

.facilities-image.style-2 .facilities-image-info p {
    color: var(--whiteColor);
}

.facilities-image.style-2 .facilities-image-info i {
    color: var(--secenderyColor);
}

.facilities-image.style-3 {
    margin-right: 30px;
    margin-bottom: 95px;
}

.facilities-image.style-3 .image-2 {
    right: -45px;
    bottom: -70px;
    position: absolute;
}

.facilities-image.style-3 .shape-4 {
    bottom: 0;
    left: 30px;
    position: absolute;
    transform: rotate(45deg);
}

.facilities-image.style-3 .shape-4 img {
    animation: zoom-in-zoom-out 5s linear infinite;
}

.facilities-image.style-3 .shape-5 {
    top: 10px;
    right: 90px;
    position: absolute;
}

.facilities-image.style-3 .shape-5 img {
    animation: zoom-in-zoom-out 3s linear infinite;
}

.facilities-image.style-3 .shape-6 {
    bottom: -50px;
    right: 245px;
    position: absolute;
}

.facilities-image.style-3 .shape-6 img {
    animation: rotateme 5s linear infinite;
}

/*================================================
Testimonial Area Style
=================================================*/
.testimonial-image {
    margin-bottom: 25px;
}

.testimonial-slider-info {
    position: relative;
    margin-left: -40px;
    margin-bottom: 25px;
}

.testimonial-slider-info .next-prev-arrow {
    margin-left: 50px;
}

.testimonial-slider-info .next-prev-arrow .next,
.testimonial-slider-info .next-prev-arrow .prev {
    top: 13px;
    font-size: 26px;
    margin-right: 20px;
    position: relative;
    color: var(--blackColor);
    transition: var(--transition);
}

.testimonial-slider-info .next-prev-arrow .next:hover,
.testimonial-slider-info .next-prev-arrow .prev:hover {
    color: var(--primaryColor);
}

.testimonial-slider-info .testimonial {
    margin-right: 0;
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide {
    opacity: 0.5;
    width: 50px !important;
    transition: var(--transition);
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide:hover {
    opacity: 1;
}

.testimonial-slider-info .testimonial .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.testimonial-slider-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.testimonial-slider-item .star-icon {
    margin-bottom: 15px;
}

.testimonial-slider-item .star-icon li i {
    font-size: 18px;
    color: rgb(243, 168, 2);
}

.testimonial-slider-item p {
    color: #5b5952;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
    flex-grow: 1;
}

.testimonial-slider-item .user .image {
    flex: 0 0 auto;
    display: block;
    margin-right: 15px;
}

.testimonial-slider-item .user .image img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.testimonial-slider-item .user .content h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-slider-item .user .content span {
    font-size: 14px;
    color: rgba(85, 85, 85, 0.8);
}

.testimonial-slider-item .quote-icon {
    font-size: 22px;
    color: var(--primaryColor);
}

.testimonial-slider-item.style-3 {
    padding: 30px;
    background-color: #f6f6f6;
}

.testimonial-slider-item.style-3 .user-list {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dfdfdf;
}

.testimonial-slider-item.style-3 .star-icon {
    margin-bottom: 0;
}

.testimonial-slider-item.style-3 p {
    margin-bottom: 0;
}

.testimonial-item-image img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.testimonial-slider-info-2 {
    margin-bottom: 35px;
    position: relative;

    ;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev {
    top: 110%;
    font-size: 26px;
    margin-right: 20px;
    color: var(--blackColor);
    transition: var(--transition);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next:hover,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev:hover {
    color: var(--primaryColor);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::after,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::after {
    display: none;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next.active,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev.active {
    color: var(--primaryColor);
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::before,
.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::before {
    position: absolute;
    font-family: flaticon !important;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next {
    right: 49%;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-next::before {
    content: "\f10a";
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-prev {
    left: 51%;
}

.testimonial-slider-info-2 .swiper-btn .swiper-button-prev::before {
    content: "\f10b";
}

.testimonial-slider-info-3 {
    margin-bottom: 35px;
    position: relative;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev {
    top: 110%;
    font-size: 26px;
    margin-right: 20px;
    color: var(--blackColor);
    transition: var(--transition);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next:hover,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev:hover {
    color: var(--primaryColor);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::after,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::after {
    display: none;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next.active,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev.active {
    color: var(--primaryColor);
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::before,
.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::before {
    position: absolute;
    font-family: flaticon !important;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next {
    right: 49%;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-next::before {
    content: "\f10a";
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-prev {
    left: 51%;
}

.testimonial-slider-info-3 .swiper-btn .swiper-button-prev::before {
    content: "\f10b";
}

/*================================================
Partner Area Style
=================================================*/
.partner-slider-info .partner-slider .swiper-wrapper .swiper-slide .single-partner-logo {
    text-align: center;
}

.single-partner-logo {
    margin-bottom: 25px;
}

.single-partner-logo img {
    width: auto;
    text-align: center;
}

/*================================================
Subscribe Area Style
=================================================*/
.subscribe-image-info {
    margin-right: 10px;
    margin-bottom: 25px;
}

.subscribe-image-info .subscribe-item {
    z-index: 1;
    padding: 60px;
    position: relative;
    background-color: var(--secenderyColor);
    margin-right: -85px;
}

.subscribe-image-info .subscribe-item h3 {
    font-size: 18px;
    margin-bottom: 13px;
}

.subscribe-image-info .subscribe-item p {
    color: #5B5952;
}

.subscribe-image-info .subscribe-item .form-group {
    margin-bottom: 20px;
}

.subscribe-image-info .subscribe-item .form-group .form-control {
    height: 56px;
    border: unset;
    border-radius: unset;
    padding-left: 20px;
    background-color: var(--whiteColor);
}

.subscribe-image-info .subscribe-item .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    color: var(--paragraphColor);
}

.subscribe-image-info .subscribe-item .form-group .form-control::placeholder {
    font-size: 14px;
    color: var(--paragraphColor);
}

.subscribe-image-info .subscribe-item .default-btn {
    width: 100%;
    transition: var(--transition);
    background-color: var(--blackColor);
}

.subscribe-image-info .subscribe-item .default-btn:hover {
    color: var(--blackColor) !important;
    background-color: var(--whiteColor);
}

.subscribe-image {
    margin-left: -20px;
    margin-right: 65px;
}

.subscribe-content {
    margin-left: -50px;
    margin-bottom: 25px;
    margin-right: -15px;
}

.subscribe-content .title {
    margin-bottom: 30px;
}

.subscribe-content .title h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.subscribe-content .subscribe-btn li {
    margin-right: 30px;
}

.subscribe-content .subscribe-btn li .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn {
    color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn::before {
    background-color: var(--blackColor);
}

.subscribe-content .subscribe-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.subscribe-content .subscribe-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.subscribe-content .subscribe-btn li:last-child {
    margin-right: 0;
}

/*================================================
Overview Area Style
=================================================*/
.overview-content {
    margin-bottom: 25px;
}

.overview-content .image {
    margin-bottom: 40px;
}

.overview-content .graduets-counter h2 {
    line-height: 0;
    font-size: 60px;
    margin-bottom: 15px;
}

.overview-content .graduets-counter h2 img {
    margin-right: 10px;
}

.overview-content .graduets-counter p {
    color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn {
    font-weight: 700;
    color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn::before {
    background-color: var(--blackColor);
}

.overview-content .graduets-btn .arrow-btn:hover {
    color: var(--primaryColor);
}

.overview-content .graduets-btn .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.overview-image {
    margin-top: 30px;
    margin-left: 70px;
    margin-bottom: 25px;
    margin-right: -10px;
}

.overview-image .title {
    margin-bottom: 30px;
}

.overview-image .title h2 {
    font-size: 42px;
    line-height: 0;
    margin-bottom: 25px;
}

.overview-image .title h2 img {
    margin-right: 10px;
}

.overview-image .arrow-btn {
    color: var(--primaryColor);
}

.overview-image .arrow-btn::before {
    background-color: var(--primaryColor);
}

.overview-image .arrow-btn:hover {
    color: var(--blackColor);
}

.overview-image .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

.overview-image .casual-image {
    margin-top: 80px;
    position: relative;
}

.overview-image .casual-image .adma {
    top: -55px;
    right: 0;
    position: absolute;
}

.overview-image .casual-image.pages-style .content-shape {
    top: -55px;
    right: 0;
    position: absolute;
}

.overview-image .casual-image.pages-style .content-shape::before {
    left: 0;
    right: 0;
    top: 50%;
    content: "";
    width: 10px;
    height: 10px;
    margin: auto;
    border-radius: 100%;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    background-color: var(--primaryColor);
}

.overview-image .casual-image.pages-style .content-shape img {
    animation: rotateme 15s linear infinite;
}

/*================================================
Programs Area Style
=================================================*/
.programs-area {
    overflow: hidden;
    background-color: #f6f6f6;
}

.programs-section-title {
    margin-bottom: 40px;
}

.programs-section-title .title h2 {
    font-size: 42px;
    margin-bottom: 0;
}

.programs-section-title .programs-nav-tab .nav .nav-item {
    margin-right: 42px;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link {
    padding: 0;
    font-weight: 700;
    position: relative;
    color: var(--blackColor);
    background-color: transparent;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link::before {
    left: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link:hover {
    color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link.active {
    color: var(--primaryColor);
}

.programs-section-title .programs-nav-tab .nav .nav-item .nav-link.active::before {
    width: 100%;
}

.programs-section-title .programs-nav-tab .nav .nav-item:last-child {
    margin-right: 0;
}

.single-programs-card {
    margin-bottom: 25px;
    transition: var(--transition);
}

.single-programs-card .image {
    margin-bottom: 25px;
    position: relative;
}

.single-programs-card .image img {
    width: 100%;
    height: 300px;
    /* Set a fixed height for consistency */
    object-fit: cover;
    /* Crop and fill the box nicely */
    display: block;
    /* border-radius: 8px; Optional: consistent rounded edges */
}

@media (max-width: 768px) {
    .single-programs-card .image img {
        height: 300px;
    }
}


.single-programs-card .image .list {
    left: 15px;
    bottom: 15px;
    padding: 10px 14px;
    position: absolute;
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.single-programs-card .image .list li {
    font-size: 14px;
    position: relative;
    margin-right: 8px;
    transition: var(--transition);
    padding-left: 25px;
    padding-right: 12px;
}

.single-programs-card .image .list li i {
    top: -3px;
    left: 0;
    font-size: 18px;
    position: absolute;
    color: var(--blackColor);
    transition: var(--transition);
}

.single-programs-card .image .list li::before {
    top: 0;
    right: 0;
    width: 1px;
    height: 20px;
    content: "";
    position: absolute;
    background-color: #f0f0f0;
    transition: var(--transition);
}

.single-programs-card .image .list li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.single-programs-card .image .list li:last-child::before {
    display: none;
}

.single-programs-card .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-programs-card .content .arrow-btn {
    color: var(--primaryColor);
}

.single-programs-card .content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.single-programs-card .content .arrow-btn:hover {
    color: var(--blackColor);
}

.single-programs-card .content .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

.single-programs-card:hover .image .list {
    background-color: var(--primaryColor);
}

.single-programs-card:hover .image .list li {
    color: var(--whiteColor);
}

.single-programs-card:hover .image .list li i {
    color: var(--whiteColor);
}

.single-programs-card:hover .content h3 a {
    color: var(--primaryColor);
}

.programs-tab-content .programs-slider {
    overflow: inherit;
    left: 0;
}

.programs-single-btn .default-btn {
    color: var(--blackColor) !important;
    background-color: var(--secenderyColor);
}

.programs-single-btn .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

/*================================================
Upcoming Area Style
=================================================*/
.upcoming-image {
    padding: 20px;
    background-color: var(--blackColor);
    margin-left: -5px;
    margin-right: 80px;
    margin-bottom: 25px;
}

.upcoming-image .image {
    margin-bottom: 25px;
}

.upcoming-image .content {
    margin-bottom: 20px;
}

.upcoming-image .content .title {
    margin-bottom: 25px;
}

.upcoming-image .content .title h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--whiteColor);
}

.upcoming-image .content .title h6 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.upcoming-image .content .upcoming-timer {
    margin-bottom: 30px;
}

.upcoming-image .content .upcoming-timer .coundown-container .big-text {
    font-size: 26px;
    margin-bottom: 0;
    color: var(--whiteColor);
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el {
    width: 81px;
    height: 75px;
    padding-top: 10px;
    text-align: center;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.11) !important;
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el span {
    text-align: center;
    color: rgba(255, 255, 255, 0.69);
}

.upcoming-image .content .upcoming-timer .coundown-container .countdown-el:last-child {
    margin-right: 0;
}

.upcoming-image .content .arrow-btn {
    font-weight: 700;
    color: var(--primaryColor);
}

.upcoming-image .content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.upcoming-image .content .arrow-btn:hover {
    color: var(--whiteColor);
}

.upcoming-image .content .arrow-btn:hover::after {
    background-color: var(--whiteColor);
}

.upcoming-content {
    margin-left: -35px;
    margin-right: -10px;
    margin-bottom: 25px;
}

.upcoming-content .title {
    margin-bottom: 40px;
}

.upcoming-content .title h2 {
    font-size: 42px;
}

.upcoming-content .upcoming-content-info {
    margin-bottom: 25px;
    background-color: #faf7f2;
}

.upcoming-content .upcoming-content-info .image {
    display: block;
    flex: 0 0 auto;
    position: relative;
}

.upcoming-content .upcoming-content-info .image img {
    width: 203px;
}

.upcoming-content .upcoming-content-info .image .price {
    left: 10px;
    width: 51px;
    height: 33px;
    bottom: 10px;
    margin-bottom: 0;
    line-height: 33px;
    text-align: center;
    position: absolute;
    display: inline-block;
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    font-size: 16px;
    font-weight: 700;
}

.upcoming-content .upcoming-content-info .content {
    padding: 0 30px;
}

.upcoming-content .upcoming-content-info .content h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.upcoming-content .upcoming-content-info .content ul li {
    font-size: 14px;
    padding-left: 24px;
    position: relative;
    margin-right: 15px;
}

.upcoming-content .upcoming-content-info .content ul li i {
    top: -2px;
    left: 0;
    font-size: 18px;
    position: absolute;
    color: var(--primaryColor);
}

.upcoming-content .upcoming-content-info:last-child {
    margin-bottom: 0;
}

.upcoming-content .upcoming-content-info:hover .content h3 a {
    color: var(--primaryColor);
}

/*================================================
Application Area Style
=================================================*/
.application-area {
    position: relative;
    background-color: #f6f6f6;
}

.application-area .shape-1 {
    left: 622px;
    bottom: 90px;
    position: absolute;
}

.application-area .shape-2 {
    top: 150px;
    right: 664px;
    position: absolute;
}

.application-area.university-pages {
    background-color: var(--whiteColor);
}

.application-area.apply-pages {
    background-color: var(--whiteColor);
}

.application-section-title {
    margin-bottom: 40px;
}

.application-section-title .application-title h2 {
    font-size: 42px;
    margin-bottom: 0;
}

.single-application-card {
    padding: 30px;
    margin-bottom: 60px;
    background-color: var(--whiteColor);
}

.single-application-card .icon {
    flex: 0 0 auto;
    font-size: 35px;
    margin-right: 15px;
    color: var(--primaryColor);
}

.single-application-card .content h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.single-application-card .content h3 span {
    margin-right: 4px;
    color: var(--primaryColor);
}

.single-application-card.style-3 {
    padding: 40px;
    margin-bottom: 25px;
}

.single-application-card.style-3 .d-flex {
    margin-bottom: 20px;
}

.single-application-card.style-3 .d-flex .icon {
    font-size: 50px;
    line-height: 0;
}

.single-application-card.style-3 .d-flex h1 {
    font-size: 42px;
    color: transparent;
    transition: var(--transition);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(250, 57, 74, 0.15);
}

.single-application-card.style-3:hover .d-flex h1 {
    font-size: 42px;
    color: var(--primaryColor);
}

.single-application-card.university-pages {
    margin-bottom: 25px;
    background-color: #f6f6f6;
}

.single-application-card.university-pages .image {
    margin-bottom: 25px;
}

.single-application-card.university-pages:hover .content h3 a {
    color: var(--primaryColor);
}

.single-application-card.apply-pages {
    background-color: #f6f6f6;
}

/*================================================
Blog Area Style
=================================================*/
.single-blog-card {
    margin-bottom: 25px;
}

.single-blog-card .image {
    position: relative;
    margin-bottom: 20px;
    transition: var(--transition);
}

.single-blog-card .image span {
    left: 15px;
    bottom: 15px;
    padding: 8px 16px;
    font-size: 14px;
    position: absolute;
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.single-blog-card .image:hover span {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.single-blog-card .content h3 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.single-blog-card .content ul li {
    font-size: 14px;
    padding-left: 25px;
    position: relative;
    margin-right: 25px;
}

.single-blog-card .content ul li a {
    color: var(--paragraphColor);
}

.single-blog-card .content ul li a:hover {
    color: var(--primaryColor);
}

.single-blog-card .content ul li i {
    top: -2px;
    left: 0;
    font-size: 18px;
    position: absolute;
    color: var(--primaryColor);
}

.single-blog-card .content ul li:last-child {
    margin-right: 0;
}

/*================================================
Admission Area Style
=================================================*/
.admission-area {
    background-color: var(--secenderyColor);
}

.admission-image {
    margin-bottom: 25px;
    position: relative;
}

.admission-image .image-2 {
    top: 15px;
    right: 55px;
    position: absolute;
}

.admission-image .image-2 img {
    width: 129.957px;
    height: 99.473px;
    transform: rotate(30deg);
    border: 3px solid var(--whiteColor);
}

.admission-content {
    margin-bottom: 25px;
}

.admission-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.admission-content h2 i {
    font-size: 30px;
    line-height: 0;
    margin-right: 5px;
    color: var(--blackColor);
}

.admission-content p {
    color: #5b5952;
}

.admission-btn {
    margin-bottom: 25px;
}

.admission-btn .default-btn {
    background-color: var(--blackColor);
}

.admission-btn .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--primaryColor);
}

/*================================================
Adma About Area Style
=================================================*/
.adma-about-image {
    margin-bottom: 25px;
    position: relative;
}

.adma-about-image .shape-3 {
    top: 35px;
    left: -15px;
    position: absolute;
}

.adma-about-image .shape-3 img {
    animation: rotateme 5s linear infinite;
}

.adma-about-image .shape-4 {
    left: -15px;
    bottom: 40px;
    position: absolute;
}

.adma-about-image .shape-4 img {
    animation: zoom-in-zoom-out 3s linear infinite;
}

.adma-about-content {
    margin-bottom: 25px;
}

.adma-about-content .title {
    max-width: 646px;
    margin-bottom: 30px;
}

.adma-about-content .title h2 {
    font-size: 42px;
    line-height: 0;
    margin-bottom: 25px;
}

.adma-about-content .title h2 img {
    margin-right: 15px;
}

.adma-about-content .adma-about-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.adma-about-content .adma-about-card h3 i {
    line-height: 0;
    font-size: 30px;
    margin-right: 10px;
    color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn {
    margin-top: 15px;
    color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn::before {
    background-color: var(--primaryColor);
}

.adma-about-content .adma-about-card .arrow-btn:hover {
    color: var(--blackColor);
}

.adma-about-content .adma-about-card .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

.col-lg-6:nth-child(2) .adma-about-card p {
    max-width: 313px;
}

/*================================================
Video Area Style
=================================================*/
.video-area {
    z-index: 1;
    position: relative;
}

.video-area::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    content: "";
    z-index: -1;
    position: absolute;
    background-color: #f6f6f6;
}

.video-area.apply-pages::before {
    display: none;
}

.video-image {
    position: relative;
}

.video-image .video-btn {
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    position: absolute;
    transform: translateY(-50%);
}

.video-image .video-btn a {
    width: 103px;
    height: 103px;
    font-size: 25px;
    border-radius: 100%;
    line-height: 114px;
    text-align: center;
    display: inline-block;
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.video-image .video-btn a i {
    left: 2px;
    position: relative;
}

.video-image .video-btn a:hover {
    background-color: var(--blackColor);
}

/*================================================
Counter Area Style
=================================================*/
.single-counter-info {
    margin-bottom: 25px;
}

.single-counter-info .icon {
    font-size: 50px;
    margin-right: 10px;
    color: var(--secenderyColor);
}

.single-counter-info h2 {
    font-size: 60px;
    line-height: 1;
}

.col-lg-3:nth-child(2) .single-counter-info {
    margin-left: 35px;
}

.col-lg-3:nth-child(3) .single-counter-info {
    margin-left: 85px;
}

/*================================================
Choose Area Style
=================================================*/
.choose-content {
    margin-right: 65px;
    margin-bottom: 25px;
}

.choose-content .title {
    margin-bottom: 30px;
}

.choose-content .title h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.choose-content .arrow-btn {
    color: var(--primaryColor);
}

.choose-content .arrow-btn::before {
    background-color: var(--primaryColor);
}

.choose-content .arrow-btn:hover {
    color: var(--blackColor);
}

.choose-content .arrow-btn:hover::after {
    background-color: var(--blackColor);
}

.choose-content .choose-counter-info {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #fff0f0;
}

.choose-content .choose-counter-info ul li {
    margin-right: 100px;
}

.choose-content .choose-counter-info ul li h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 5px;
}

.choose-content .choose-counter-info ul li i {
    line-height: 0;
    font-size: 35px;
    margin-right: 15px;
    color: var(--primaryColor);
}

.choose-content .choose-counter-info ul li p {
    font-weight: 500;
    color: var(--blackColor);
}

.choose-content .choose-counter-info ul li:last-child {
    margin-right: 0;
}

.choose-image {
    position: relative;
    margin-left: 50px;
    margin-bottom: 25px;
}

.choose-image .choose-image-info {
    left: -60px;
    bottom: 50px;
    max-width: 510px;
    padding: 20px 30px;
    position: absolute;
    background-color: var(--secenderyColor);
}

.choose-image .choose-image-info p {
    color: #5b5952;
    font-weight: 500;
    font-style: italic;
}

.choose-image .choose-image-info i {
    right: 20px;
    bottom: -28px;
    font-size: 30px;
    position: absolute;
    color: var(--blackColor);
}

/*================================================
Student Area Style
=================================================*/
.student-image {
    z-index: 1;
    position: relative;
    margin-right: -65px;
    margin-bottom: 25px;
}

.student-card {
    padding: 40px;
    background-color: #f6f6f6;
    margin-left: 35px;
    margin-bottom: 25px;
}

.student-card ul li {
    display: block;
    margin-bottom: 45px;
}

.student-card ul li a {
    margin-right: 40px;
    position: relative;
    display: inline-block;
    color: var(--blackColor);
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 700;
}

.student-card ul li a i {
    top: 2px;
    line-height: 0;
    font-size: 25px;
    margin-left: 15px;
    position: absolute;
}

.student-card ul li a::before {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--blackColor);
}

.student-card ul li a::after {
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    content: "";
    position: absolute;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.student-card ul li a:hover {
    color: var(--primaryColor);
}

.student-card ul li a:hover::before {
    opacity: 0;
}

.student-card ul li a:hover::after {
    width: 100%;
}

.student-card ul li:last-child {
    margin-bottom: 0;
}

.student-content {
    margin-left: 35px;
    margin-bottom: 25px;
    margin-right: -10px;
}

.student-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.student-content .default-btn {
    margin-top: 10px;
}

/*================================================
Newsletter Area Style
=================================================*/
.newsletter-content {
    margin-right: 70px;
    margin-bottom: 25px;
}

.newsletter-content .title {
    margin-bottom: 35px;
}

.newsletter-content .title h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 13px;
}

.newsletter-content .subscribe-btn li {
    margin-right: 30px;
}

.newsletter-content .subscribe-btn li .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn {
    color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn::before {
    background-color: var(--blackColor);
}

.newsletter-content .subscribe-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.newsletter-content .subscribe-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.newsletter-content .subscribe-btn li:last-child {
    margin-right: 0;
}

.newsletter-content.pages-style {
    margin-right: 0;
    margin-left: 70px;
}

.newsletter-form {
    padding: 50px;
    margin-bottom: 25px;
    background-color: var(--secenderyColor);
}

.newsletter-form .title {
    margin-bottom: 25px;
}

.newsletter-form .title h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form .form-group .form-control {
    height: 56px;
    border: unset;
    border-radius: unset;
    padding-left: 20px;
    background-color: var(--whiteColor);
}

.newsletter-form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    color: var(--paragraphColor);
}

.newsletter-form .form-group .form-control::placeholder {
    font-size: 14px;
    color: var(--paragraphColor);
}

.newsletter-form .default-btn {
    width: 100%;
    transition: var(--transition);
    background-color: var(--blackColor);
}

.newsletter-form .default-btn:hover {
    color: var(--blackColor) !important;
    background-color: var(--whiteColor);
}

/*================================================
Page Banner Area Style
=================================================*/
.pages-banner-area {
    z-index: 1;
    position: relative;
    padding-top: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/bg/bg-3.jpg);
}

.pages-banner-area .container-fluid {
    max-width: 1480px;
    padding-left: 30px;
    padding-right: 30px;
}

.pages-banner-area .shape-7 {
    left: 250px;
    bottom: 0;
    position: absolute;
}

.pages-banner-area::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    position: absolute;
    background-color: rgba(0, 30, 67, 0.92);
}

.pages-banner-area::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    z-index: -1;
    content: "";
    position: absolute;
    background-color: var(--whiteColor);
}

.pages-title {
    margin-top: 50px;
}

.pages-title h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--whiteColor);
}

.pages-title ul li {
    color: #d2d6dc;
    margin-right: 10px;
    padding-right: 20px;
    position: relative;
}

.pages-title ul li a {
    font-weight: 700;
    color: var(--secenderyColor);
}

.pages-title ul li a:hover {
    color: var(--whiteColor);
}

.pages-title ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #d2d6dc;
    transform: translateY(-50%);
}

.pages-title ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.pages-title ul li:last-child::before {
    display: none;
}

.pages-image {
    margin-top: 8rem;
}

.single-pages-widget {
    margin-bottom: 50px;
}

.single-pages-widget h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.single-pages-widget.form .form-group {
    position: relative;
}

.single-pages-widget.form .form-group .form-control {
    height: 56px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
}

.single-pages-widget.form .form-group button {
    top: 50%;
    right: 20px;
    border: unset;
    position: absolute;
    background-color: unset;
    transform: translateY(-50%);
    color: rgb(85, 85, 85);
}

.single-pages-widget.latest .latest-card {
    margin-bottom: 25px;
}

.single-pages-widget.latest .latest-card .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 20px;
}

.single-pages-widget.latest .latest-card .image img {
    width: 122px;
    height: 98px;
}

.single-pages-widget.latest .latest-card .content h3 {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.single-pages-widget.latest .latest-card .content p {
    font-size: 14px;
}

.single-pages-widget.latest .latest-card .content p i {
    font-size: 18px;
    line-height: 1;
    margin-right: 10px;
    color: var(--primaryColor);
}

.single-pages-widget.latest .latest-card:last-child {
    margin-bottom: 0;
}

.single-pages-widget.gallery ul {
    margin-right: -20px;
}

.single-pages-widget.gallery ul li {
    margin-bottom: 15px;
    margin-right: 10px;
}

.single-pages-widget.gallery ul li a {
    display: inline-block;
}

.single-pages-widget.gallery ul li a img {
    width: 94px;
    height: 91px;
}

.single-pages-widget.tags ul {
    margin-right: -11px;
}

.single-pages-widget.tags ul li {
    margin-right: 10px;
    margin-bottom: 15px;
}

.single-pages-widget.tags ul li a {
    font-size: 14px;
    padding: 7px 13px;
    color: var(--blackColor);
    background-color: #f6f6f6;
}

.single-pages-widget.tags ul li a:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.single-pages-widget.tags.style-2 ul li a:hover {
    background-color: var(--primaryColor);
}

.single-pages-widget.categories a {
    margin-bottom: 20px;
    color: var(--paragraphColor);
}

.single-pages-widget.categories a:hover {
    color: var(--primaryColor);
}

.single-pages-widget.categories a:last-child {
    margin-bottom: 0;
}

.single-pages-widget:last-child {
    margin-bottom: 0;
}

blockquote {
    padding: 30px;
    position: relative;
    background-color: #f6f6f6;
    border-left: 3px solid var(--primaryColor);
    margin-top: 25px;
    margin-bottom: 25px;
}

blockquote i {
    right: 30px;
    bottom: 11px;
    line-height: 0;
    font-size: 25px;
    position: absolute;
    color: var(--blackColor);
    transition: var(--transition);
}

blockquote:hover i {
    color: var(--primaryColor);
}

.pages-share-and-tags {
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 25px;
    margin-bottom: 60px;
}

.pages-share-and-tags .share {
    margin-bottom: 25px;
}

.pages-share-and-tags .share ul li {
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: var(--blackColor);
}

.pages-share-and-tags .share ul li a {
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 33px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--primaryColor);
    background-color: #fff3f4;
}

.pages-share-and-tags .share ul li a:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.pages-share-and-tags .share ul li:last-child {
    margin-right: 0;
}

.pages-share-and-tags .tags {
    margin-bottom: 25px;
}

.pages-share-and-tags .tags ul li {
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: var(--blackColor);
}

.pages-share-and-tags .tags ul li a {
    padding: 7px 13px;
    color: var(--blackColor);
    background-color: #f6f6f6;
    font-size: 14px;
    font-weight: 400;
}

.pages-share-and-tags .tags ul li a:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.pages-share-and-tags .tags ul li:last-child {
    margin-right: 0;
}

.pages-comment-area h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.pages-comment-area h1 span {
    color: #99a5b4;
}

.pages-comment-area .comment-card {
    padding: 35px;
    margin-bottom: 25px;
    background-color: #f6f6f6;
}

.pages-comment-area .comment-card .ml-30 {
    padding-top: 25px;
    border-top: 1px solid #e4e4e4;
    margin-top: 25px;
    margin-left: 30px;
}

.pages-comment-area .comment-card .users {
    margin-bottom: 20px;
}

.pages-comment-area .comment-card .users .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 20px;
}

.pages-comment-area .comment-card .users .image img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.pages-comment-area .comment-card .users .content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
}

.pages-comment-area .comment-card .users .reply a {
    font-size: 14px;
    padding: 7px 13px;
    display: inline-block;
    color: var(--blackColor);
    background-color: #e2e2e2;
}

.pages-comment-area .comment-card .users .reply a:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.pages-comment-area .comment-card .users .reply .star-icon li {
    margin-right: 5px;
}

.pages-comment-area .comment-card .users .reply .star-icon li i {
    color: rgb(243, 168, 2);
}

.pages-comment-area .comment-card .users .reply .star-icon li:last-child {
    margin-right: 0;
}

.pages-comment-area .comment-card:hover .reply a {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.pages-leave-reply {
    margin-bottom: 25px;
}

.pages-leave-reply h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.pages-leave-reply form .form-group {
    margin-bottom: 25px;
}

.pages-leave-reply form .form-group .form-control {
    height: 56px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
}

.pages-leave-reply form .form-group .form-control.textarea {
    height: 229px;
    padding-top: 15px;
}

.pages-leave-reply form .form-check {
    margin-bottom: 40px;
}

.pages-leave-reply form .form-check .form-check-input {
    box-shadow: unset;
    border-radius: unset;
    border: 1px solid var(--primaryColor);
}

.pages-leave-reply form .form-check .form-check-input:checked {
    background-color: var(--primaryColor);
}

.pages-leave-reply form .form-check .form-check-label {
    font-size: 14px;
}

.pages-leave-reply form button {
    width: 100%;
    border: unset;
    display: flex;
    padding: 15px 33px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
    font-family: var(--heading-font-family);
    font-size: 16px;
    font-weight: 700;
}

.pages-leave-reply form button i {
    line-height: 0;
    font-size: 25px;
    margin-left: 19px;
    position: relative;
}

.pages-leave-reply form button:hover {
    background-color: var(--primaryColor);
}

.pages-leave-reply.style-2 h1 {
    margin-bottom: 15px;
}

.pages-leave-reply.style-2 .star-icon {
    margin-bottom: 20px;
}

.pages-leave-reply.style-2 .star-icon span {
    font-size: 14px;
    font-weight: 500;
}

.pages-leave-reply.style-2 .star-icon ul {
    margin-left: 10px;
}

.pages-leave-reply.style-2 .star-icon ul li {
    margin-right: 3px;
}

.pages-leave-reply.style-2 .star-icon ul li i {
    font-size: 18px;
    color: rgb(243, 168, 2);
}

.pages-leave-reply.style-2 .star-icon ul li:last-child {
    margin-right: 0;
}

.tuition-info {
    margin: auto;
    padding: 70px;
    max-width: 872px;
    background-color: #f6f6f6;
}

.tuition-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.tuition-info .tuition-item .accordion-item {
    border: none;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: transparent;
}

.tuition-info .tuition-item .accordion-item .accordion-button {
    padding: 0;
    padding-bottom: 15px;
    border: unset;
    box-shadow: none;
    position: relative;
    transition: var(--transition);
    background-color: transparent;
}

.tuition-info .tuition-item .accordion-item .accordion-button span {
    color: var(--primaryColor);
    transition: var(--transition);
    font-size: 16px;
    font-weight: 700;
}

.tuition-info .tuition-item .accordion-item .accordion-button::after {
    top: 2px;
    width: 15px;
    right: 15px;
    height: 15px;
    content: "\ea4d";
    position: absolute;
    margin: auto !important;
    color: var(--primaryColor);
    transition: var(--transition);
    background-image: unset !important;
    font-size: 14px;
    font-weight: 700;
    font-family: "remixicon" !important;
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed {
    border-radius: unset;
    background-color: transparent;
    border-bottom: 1px solid #ececec;
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed::after {
    top: 2px;
    color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button.collapsed span {
    color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button:focus {
    outline: 0;
    box-shadow: unset;
}

.tuition-info .tuition-item .accordion-item .accordion-button:hover::after {
    color: var(--primaryColor);
}

.tuition-info .tuition-item .accordion-item .accordion-button:hover span {
    color: var(--primaryColor);
}

.tuition-info .tuition-item .accordion-item .accordion-body {
    padding: 0;
    border: unset;
    line-height: 1.8;
    padding-bottom: 15px;
    border-radius: unset;
    color: var(--paragraphColor);
    background-color: transparent;
    border-bottom: 1px solid #ececec;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table {
    margin-bottom: 0;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table thead tr th {
    border: unset;
    padding-left: 25px;
    color: var(--blackColor);
    font-size: 16px;
    font-weight: 500;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table thead tr th:last-child {
    text-align: center;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr td {
    border: unset;
    background-color: transparent;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 25px;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr td:last-child {
    text-align: center;
}

.tuition-info .tuition-item .accordion-item .accordion-body .table tbody tr .bold {
    font-weight: 700;
    color: var(--blackColor);
}

.tuition-info .tuition-item .accordion-item:last-child {
    margin-bottom: 0;
}

.single-register-info {
    margin: auto;
    padding: 60px;
    max-width: 558px;
    background-color: #f6f6f6;
}

.single-register-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.single-register-info form .form-group {
    margin-bottom: 25px;
}

.single-register-info form .form-group .form-control {
    height: 56px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
    background-color: transparent;
}

.single-register-info form .form-check {
    margin-bottom: 40px;
}

.single-register-info form .form-check .form-check-input {
    box-shadow: unset;
    border-radius: unset;
    background-color: transparent;
    border: 1px solid var(--primaryColor);
}

.single-register-info form .form-check .form-check-input:checked {
    background-color: var(--primaryColor);
}

.single-register-info form .form-check .form-check-label {
    font-size: 14px;
}

.single-register-info form .form-check .form-check-label a {
    font-weight: 500;
}

.single-register-info form .default-btn {
    width: 100%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.single-register-info form .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.single-register-info p {
    font-size: 14px;
    text-align: center;
}

.single-register-info p a {
    font-weight: 500;
}

.application-form-details {
    padding: 70px;
    background-color: #F6F6F6;
}

.application-form-details h3 {
    font-size: 28px;
    margin-bottom: 35px;
}

.application-form-details .form-group {
    margin-bottom: 35px;
}

.application-form-details .form-group .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 13px;
    color: var(--blackColor);
}

.application-form-details .form-group .form-control {
    height: 56px;
    box-shadow: unset;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
    background-color: transparent;
}

.application-form-details .form-group .form-control.textarea {
    height: 125px;
    padding-top: 15px;
}

.application-form-details .form-group .form-select {
    height: 56px;
    box-shadow: unset;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
    background-color: transparent;
}

.application-form-details .form-check {
    margin-bottom: 40px;
}

.application-form-details .form-check .form-check-input {
    box-shadow: unset;
    border-radius: unset;
    border: 1px solid var(--primaryColor);
    background-color: transparent;
}

.application-form-details .form-check .form-check-input:checked {
    background-color: var(--primaryColor);
}

.application-form-details .form-check .form-check-label {
    font-size: 14px;
}

.application-form-details .form-check .form-check-label a {
    font-weight: 500;
}

.application-form-details .default-btn {
    width: 100%;
    transition: var(--transition);
}

.application-form-details .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.application-form-details .m-30 {
    margin-bottom: 30px;
}

.single-faculty-card {
    margin-bottom: 25px;
}

.single-faculty-card .image {
    margin-bottom: 25px;
}

.single-faculty-card .content .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.single-faculty-card .content .title h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-faculty-card .content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 13px;
}

.single-faculty-card .content ul li a {
    color: var(--paragraphColor);
}

.single-faculty-card .content ul li a:hover {
    color: var(--primaryColor);
}

.single-faculty-card .content ul li i {
    left: 0;
    top: 0;
    position: absolute;
    color: var(--primaryColor);
}

.single-faculty-card .content ul li:last-child {
    margin-bottom: 0;
}

.privacy-policy-content .sub {
    font-size: 15px;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.privacy-policy-content .cards {
    margin-bottom: 30px;
}

.privacy-policy-content .cards h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.privacy-policy-content .list-card {
    margin-bottom: 25px;
}

.privacy-policy-content .list-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.privacy-policy-content .list-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 18px;
}

.privacy-policy-content .list-card ul li i {
    top: -2px;
    left: 0;
    font-size: 18px;
    position: absolute;
    color: var(--primaryColor);
}

.privacy-policy-content .list-card ul li:last-child {
    margin-bottom: 0;
}

.blog-left-sidebar {
    margin-right: 12px;
}

.blog-left-sidebar .leading-management {
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-left-sidebar .leading-management h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-left-sidebar .applications-info h3 {
    font-size: 18px;
    margin-bottom: 13px;
}

.blog-left-sidebar .applications-info .applications-card {
    margin-bottom: 15px;
}

.blog-left-sidebar .applications-info .applications-card i {
    line-height: 1;
    font-size: 25px;
    margin-right: 10px;
    color: var(--primaryColor);
}

.blog-left-sidebar .applications-info .applications-card p {
    font-weight: 500;
}

.blog-left-sidebar .applications-info .image {
    margin-top: 15px;
    margin-bottom: 25px;
}

.blog-right-sidebar {
    margin-left: 5px;
}

.program-details-left-sidebar {
    margin-right: 12px;
}

.program-details-left-sidebar .reviews-image {
    margin-bottom: 25px;
    position: relative;
}

.program-details-left-sidebar .reviews-image .reviews-info {
    left: 30px;
    right: 30px;
    margin: auto;
    bottom: 30px;
    padding: 30px;
    position: absolute;
    background-color: #f6f6f6;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li {
    margin-right: 55px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li p {
    font-size: 14px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 15px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .image img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .content h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .user .content p {
    font-size: 14px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li {
    margin-right: 5px;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li i {
    color: rgb(243, 168, 2);
}

.program-details-left-sidebar .reviews-image .reviews-info ul li .star-icon li:last-child {
    margin-right: 0;
}

.program-details-left-sidebar .reviews-image .reviews-info ul li:last-child {
    margin-right: 0;
}

.program-details-left-sidebar .biochemistry {
    margin-bottom: 45px;
}

.program-details-left-sidebar .biochemistry h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.program-details-left-sidebar .biochemistry .list-info {
    margin-bottom: 20px;
}

.program-details-left-sidebar .biochemistry .list-info .applications-card {
    margin-bottom: 15px;
}

.program-details-left-sidebar .biochemistry .list-info .applications-card i {
    line-height: 1;
    font-size: 20px;
    margin-right: 10px;
    color: var(--primaryColor);
}

.program-details-left-sidebar .biochemistry .list-info .applications-card p {
    font-weight: 500;
}

.program-details-left-sidebar .biochemistry .program-card {
    margin-bottom: 25px;
}

.program-details-left-sidebar .biochemistry .program-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.program-details-right-sidebar {
    margin-left: 5px;
}

.single-program-widget {
    padding: 40px;
    margin-bottom: 50px;
    background-color: #f6f6f6;
}

.single-program-widget h3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.single-program-widget.department .list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    color: var(--paragraphColor);
}

.single-program-widget.department .list li a {
    color: var(--paragraphColor);
}

.single-program-widget.department .list li a:hover {
    color: var(--primaryColor);
}

.single-program-widget.department .list li i {
    top: 0;
    left: 0;
    position: absolute;
    color: var(--primaryColor);
}

.single-program-widget.department .share {
    margin-top: 30px;
}

.single-program-widget.department .share ul li {
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    color: var(--blackColor);
}

.single-program-widget.department .share ul li a {
    width: 38px;
    height: 38px;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--whiteColor);
}

.single-program-widget.department .share ul li a:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.single-program-widget.department .share ul li:last-child {
    margin-right: 0;
}

.single-program-widget.programs .programs-card {
    margin-bottom: 20px;
}

.single-program-widget.programs .programs-card .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 25px;
}

.single-program-widget.programs .programs-card .image img {
    width: 109px;
    height: 82px;
}

.single-program-widget.programs .programs-card .content h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.single-program-widget.programs .programs-card .content ul li {
    position: relative;
    padding-left: 25px;
}

.single-program-widget.programs .programs-card .content ul li i {
    left: 0;
    top: 0;
    position: absolute;
    color: var(--primaryColor);
}

.single-program-widget.programs .programs-card:last-child {
    margin-bottom: 0;
}

.single-program-widget.register form .form-group {
    margin-bottom: 20px;
}

.single-program-widget.register form .form-group .form-control {
    height: 56px;
    border: unset;
    box-shadow: unset;
    padding-left: 20px;
    border-radius: unset;
    background-color: var(--whiteColor);
}

.single-program-widget.register form .default-btn {
    border: 0;
    width: 100%;
    transition: var(--transition);
}

.single-program-widget.events .events-card {
    margin-bottom: 20px;
}

.single-program-widget.events .events-card .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 15px;
}

.single-program-widget.events .events-card .image img {
    width: 122px;
    height: 98px;
}

.single-program-widget.events .events-card .content h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 7px;
}

.single-program-widget.events .events-card .content ul li {
    position: relative;
    padding-left: 25px;
}

.single-program-widget.events .events-card .content ul li i {
    left: 0;
    top: 0;
    position: absolute;
    color: var(--primaryColor);
}

.single-program-widget.events .events-card:last-child {
    margin-bottom: 0;
}

.single-program-widget:last-child {
    margin-bottom: 0;
}

.events-details-left-sidebar {
    margin-right: 12px;
    margin-bottom: 25px;
}

.events-details-left-sidebar .image {
    margin-bottom: 25px;
}

.events-details-left-sidebar h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.events-details-left-sidebar .events-card {
    margin-top: 25px;
}

.events-details-left-sidebar .events-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.events-details-left-sidebar .register {
    margin-top: 50px;
}

.events-details-left-sidebar .register form .form-group {
    margin-bottom: 25px;
}

.events-details-left-sidebar .register form .form-group .form-control {
    height: 56px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
}

.events-details-left-sidebar .register form .form-group .form-control.textarea {
    height: 229px;
    padding-top: 15px;
}

.events-details-left-sidebar .register form .default-btn {
    margin-top: 30px;
    transition: var(--transition);
}

.events-details-left-sidebar .register form .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.events-details-right-sidebar {
    margin-left: 5px;
    margin-bottom: 25px;
}

.events-details-right-sidebar .events-details-map iframe {
    width: 100%;
    height: 296px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form {
    margin-right: 12px;
    margin-bottom: 25px;
}

.contact-form h1 {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form form .form-group {
    margin-bottom: 25px;
}

.contact-form form .form-group .form-control {
    height: 56px;
    padding-left: 20px;
    border-radius: unset;
    border: 1px solid #ebebeb;
}

.contact-form form .form-group .form-control.textarea {
    height: 229px;
    padding-top: 15px;
}

.contact-form form .form-check {
    margin-bottom: 40px;
}

.contact-form form .form-check .form-check-input {
    box-shadow: unset;
    border-radius: unset;
    border: 1px solid var(--primaryColor);
}

.contact-form form .form-check .form-check-input:checked {
    background-color: var(--primaryColor);
}

.contact-form form .form-check .form-check-label {
    font-size: 14px;
}

.contact-form form .default-btn {
    width: 100%;
    transition: var(--transition);
}

.contact-form form .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.contact-information {
    padding: 40px;
    background-color: #f6f6f6;
    margin-top: 74px;
    margin-bottom: 25px;
}

.contact-information h3 {
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-information .information-card {
    margin-bottom: 30px;
}

.contact-information .information-card .icon {
    width: 48px;
    height: 42px;
    display: block;
    flex: 0 0 auto;
    font-size: 23px;
    line-height: 42px;
    margin-right: 20px;
    text-align: center;
    color: var(--blackColor);
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.contact-information .information-card .icon:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.contact-information .information-card .content a {
    font-weight: 500;
    color: var(--paragraphColor);
}

.contact-information .information-card .content a:hover {
    color: var(--blackColor);
}

.contact-information .information-card .content p {
    font-weight: 500;
    color: var(--paragraphColor);
}

.contact-information .information-card:hover .icon {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.contact-information .information-card:last-child {
    margin-bottom: 0;
}

.contact-map iframe {
    width: 100%;
    height: 463px;
}

/*================================================
Navigation Area CSS
=================================================*/
.pagination {
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination .page-item {
    margin-right: 10px;
}

.pagination .page-item .page-link {
    height: 50px;
    width: 50px;
    border: none;
    box-shadow: none;
    line-height: 37px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--blackColor);
    background-color: #F6F6F6;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 700;
}

.pagination .page-item .page-link:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.pagination .page-item .page-link i {
    left: -1px;
    font-size: 25px;
    position: relative;
}

.pagination .page-item .page-link i.two {
    left: 1px;
}

.pagination .page-item .active {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.pagination .page-item:last-child {
    margin-right: 0;
}

/*================================================
Fitness Area CSS
=================================================*/
.fitness-image {
    z-index: 1;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.fitness-image::before {
    left: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    width: 200px;
    height: 158px;
    position: absolute;
    background-color: var(--secenderyColor);
}

.fitness-image.style-2 {
    padding-left: 0;
    padding-right: 30px;
}

.fitness-image.style-2::before {
    left: auto;
    right: 0;
    width: 200px;
    height: 242.717px;
    background-color: var(--blackColor);
}

.fitness-content {
    margin-left: 45px;
    margin-bottom: 25px;
}

.fitness-content .title {
    margin-bottom: 25px;
}

.fitness-content .title h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.fitness-content .list li {
    font-weight: 500;
    padding-left: 26px;
    position: relative;
    margin-bottom: 15px;
}

.fitness-content .list li i {
    top: -3px;
    left: 0;
    font-size: 20px;
    position: absolute;
    color: var(--primaryColor);
}

.fitness-content .list li:last-child {
    margin-bottom: 0;
}

.fitness-content.style-2 {
    margin-left: 0;
    margin-right: 45px;
}

.fitness-content.style-2 .fitness-btn {
    margin-top: 35px;
}

.fitness-content.style-2 .fitness-btn li {
    margin-right: 30px;
}

.fitness-content.style-2 .fitness-btn li .play-btn li {
    margin-right: 15px;
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon {
    width: 56px;
    height: 56px;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--secenderyColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon i {
    top: 1px;
    left: 2px;
    position: relative;
}

.fitness-content.style-2 .fitness-btn li .play-btn li .icon:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn {
    color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn::before {
    background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn:hover {
    color: var(--primaryColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li .arrow-btn:hover::after {
    background-color: var(--primaryColor);
}

.fitness-content.style-2 .fitness-btn li .play-btn li:last-child {
    margin-right: 0;
}

.fitness-content.style-2 .fitness-btn li .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

.fitness-content.style-2 .fitness-btn li:last-child {
    margin-right: 0;
}

/*================================================
Support Area CSS
=================================================*/
.support-image {
    z-index: 1;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.support-image::before {
    left: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    width: 200px;
    height: 233px;
    position: absolute;
    background-color: var(--blackColor);
}

.support-content {
    margin-bottom: 25px;
}

.support-content .title {
    margin-bottom: 30px;
}

.support-content .title h2 {
    font-size: 42px;
}

.support-content .questions-content {
    margin-bottom: 45px;
}

.support-content .questions-content .accordion-item {
    border: none;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: transparent;
}

.support-content .questions-content .accordion-item .accordion-button {
    padding: 0;
    padding-bottom: 15px;
    border: unset;
    box-shadow: none;
    position: relative;
    transition: var(--transition);
    background-color: transparent;
}

.support-content .questions-content .accordion-item .accordion-button span {
    color: var(--blackColor);
    transition: var(--transition);
    font-size: 16px;
    font-weight: 700;
}

.support-content .questions-content .accordion-item .accordion-button::after {
    top: 2px;
    width: 15px;
    right: 0;
    height: 15px;
    content: "\ea4d";
    position: absolute;
    margin: auto !important;
    color: var(--primaryColor);
    transition: var(--transition);
    background-image: unset !important;
    font-size: 14px;
    font-weight: 700;
    font-family: "remixicon" !important;
}

.support-content .questions-content .accordion-item .accordion-button.collapsed {
    border-radius: unset;
    background-color: transparent;
    border-bottom: 1px solid #ececec;
}

.support-content .questions-content .accordion-item .accordion-button.collapsed::after {
    top: 2px;
    color: var(--blackColor);
}

.support-content .questions-content .accordion-item .accordion-button.collapsed span {
    color: var(--blackColor);
}

.support-content .questions-content .accordion-item .accordion-button:focus {
    outline: 0;
    box-shadow: unset;
}

.support-content .questions-content .accordion-item .accordion-button:hover::after {
    color: var(--primaryColor);
}

.support-content .questions-content .accordion-item .accordion-body {
    padding: 0;
    border: unset;
    line-height: 1.8;
    padding-bottom: 15px;
    border-radius: unset;
    color: var(--paragraphColor);
    background-color: transparent;
    border-bottom: 1px solid #ececec;
}

.support-content .default-btn:hover {
    color: var(--whiteColor) !important;
    background-color: var(--blackColor);
}

/*================================================
Footer Area Style
=================================================*/
.footer-area {
    background-color: #f6f6f6;
}

.single-footer-widget {
    margin-bottom: 25px;
}

.single-footer-widget h3 {
    font-size: 18px;
    margin-bottom: 25px;
}

.single-footer-widget ul li {
    margin-bottom: 20px;
}

.single-footer-widget ul li a {
    text-decoration: none;
    color: var(--paragraphColor);
}

.single-footer-widget ul li a:hover {
    color: var(--primaryColor);
}

.single-footer-widget ul li:last-child {
    margin-bottom: 0;
}

.single-footer-widget.about {
    margin-right: 35px;
}

.single-footer-widget.about p {
    margin-bottom: 35px;
}

.single-footer-widget.about h6 {
    font-size: 18px;
    margin-bottom: 20px;
}

.single-footer-widget.about .social-link li {
    margin-right: 10px;
}

.single-footer-widget.about .social-link li a {
    width: 36px;
    height: 36px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--paragraphColor);
    background-color: var(--whiteColor);
}

.single-footer-widget.about .social-link li a:hover {
    color: var(--blackColor);
    background-color: var(--secenderyColor);
}

.single-footer-widget.about .social-link li:last-child {
    margin-right: 0;
}

.single-footer-widget.contact {
    margin-left: 15px;
}

.single-footer-widget.contact ul li {
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.single-footer-widget.contact ul li a i {
    left: 0;
    top: 1px;
    font-size: 16px;
    position: absolute;
    color: var(--primaryColor);
}

.single-footer-widget.contact ul li i {
    left: 0;
    top: 3px;
    font-size: 16px;
    position: absolute;
    color: var(--primaryColor);
}

.single-footer-widget.quick {
    margin-left: 50px;
}

.single-footer-widget.mobile {
    margin-left: 57px;
}

.single-footer-widget.mobile ul li {
    margin-bottom: 12px;
}

.single-footer-widget.mobile ul li:last-child {
    margin-bottom: 0;
}

.copyright-area {
    padding-top: 25px;
}

.copyright-logo {
    margin-bottom: 25px;
}

.copyright-title {
    margin-bottom: 25px;
}

.copyright-title p strong {
    color: var(--primaryColor);
}

.copyright-list {
    margin-bottom: 25px;
}

.copyright-list ul li {
    margin-right: 25px;
}

.copyright-list ul li a {
    color: var(--paragraphColor);
}

.copyright-list ul li a:hover {
    color: var(--primaryColor);
}

.copyright-list ul li:last-child {
    margin-right: 0;
}

/*================================================
Back to Top Style
=================================================*/
#back-to-top {
    opacity: 0;
    top: 87%;
    right: 2%;
    z-index: 4;
    width: 40px;
    height: 50px;
    border: unset;
    position: fixed;
    transition: 0.9s;
    cursor: pointer;
    line-height: 45px;
    border-radius: 5px;
    text-align: center;
    background-color: var(--blackColor);
}

#back-to-top i {
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 25px;
    transition: 0.5s;
    position: absolute;
    color: var(--whiteColor);
    transform: translateY(-50%);
}

#back-to-top:hover {
    color: #ffffff;
    background: var(--secenderyColor);
}

#back-to-top:hover i {
    color: var(--blackColor);
}

#back-to-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

#back-to-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

#back-to-top:focus {
    color: #ffffff;
}

#back-to-top:focus::before {
    opacity: 1;
    visibility: visible;
}

#back-to-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

#back-to-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

#back-to-top.active {
    top: 93%;
    right: 2%;
    opacity: 1;
    visibility: visible;
    transform: translateY(-95%);
}

/*# sourceMappingURL=style.css.map */



/* Consistent image height and prevent shifting */
/* Ensure images are visible and uniform */
#activityGallery .carousel-inner {
    min-height: 320px;
}

#activityGallery .carousel-inner img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

@media (min-width: 768px) {
    #activityGallery .carousel-inner {
        min-height: 420px;
    }

    #activityGallery .carousel-inner img {
        height: 420px;
    }
}

.faculty-img-box {
    width: 100%;
    height: 400px;
    /* fixed uniform height */
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ crops nicely to fill box */
    border-radius: 6px;
}

.donor-img-box {
    height: 380px;
    /* uniform image height */
    overflow: hidden;
}

.donor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop neatly */
    transition: transform 0.4s ease;
}

.donor-img:hover {
    transform: scale(1.05);
    /* subtle zoom effect */
}

/* White pagination dots */
.swiper-pagination-bullet {
    background-color: #fff !important;
    /* White dots */
    opacity: 0.5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff !important;
}

/* White arrows (next/prev) */
.swiper-button-next,
.swiper-button-prev {
    color: #4a4cdb !important;
    /* Make arrows white */
    font-weight: bold;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    /* Arrow size */
    font-weight: bold;
}


@media (max-width: 768px) {
    .overview-area .image-container {
        transform: none !important;
        margin-bottom: 30px;
    }

    .overview-area h2 {
        font-size: 2rem !important;
    }

    .overview-area .content-section {
        padding: 20px !important;
    }

    .overview-area .stats-card,
    .overview-area .stats-link-card {
        margin-bottom: 20px;
    }

    .overview-area .cta-section {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .overview-area .stats-card h2 {
        font-size: 2rem !important;
    }

    .overview-area .title-section h2 {
        font-size: 1.8rem !important;
    }

    .overview-area .content-section p {
        font-size: 1rem !important;
    }
}

/* Smooth scroll behavior */
.overview-area {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
.overview-area .btn-custom:hover {
    transform: translateY(-2px) !important;
}

/* Loading animation for counters */
.counter {
    display: inline-block;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Facilities Area Responsive Styles */
@media (max-width: 768px) {
    .facilities-area .president-image-section {
        margin-bottom: 40px;
    }

    .facilities-area .president-image-section img {
        height: 350px !important;
    }

    .facilities-area .title-section h2 {
        font-size: 2.2rem !important;
    }

    .facilities-area .content-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }

    .facilities-area .quote-container {
        flex-direction: column;
        text-align: center;
    }

    .facilities-area .quote-container .quote-text {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .facilities-area .president-image-section img {
        height: 280px !important;
    }

    .facilities-area .title-section h2 {
        font-size: 1.8rem !important;
    }

    .facilities-area .content-card p {
        font-size: 1rem !important;
    }

    .facilities-area .quote-text p {
        font-size: 1rem !important;
    }

    .facilities-area .cta-section .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Enhanced Overview Area Styles */
.overview-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    scroll-behavior: smooth;
}

.overview-area .bg-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.overview-area .bg-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.overview-area .container {
    position: relative;
    z-index: 2;
}

.overview-area .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
}

.overview-area .image-container img {
    height: 550px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-area .image-container img:hover {
    transform: scale(1.05);
}

.overview-area .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    border-radius: 0 0 20px 20px;
}

.overview-area .stats-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

.overview-area .stats-card:hover {
    transform: translateY(-5px);
}

.overview-area .stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.overview-area .stats-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.overview-area .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.overview-area .stats-number-plus {
    font-size: 1.5rem;
}

.overview-area .stats-label {
    font-weight: 600;
    color: #495057;
    font-size: 1.1rem;
}

.overview-area .stats-link-card {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.overview-area .stats-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.overview-area .stats-link-card:hover::before {
    left: 100%;
}

.overview-area .stats-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.4);
}

.overview-area .stats-link-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.overview-area .stats-link-icon i {
    font-size: 20px;
    color: white;
}

.overview-area .stats-link-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.overview-area .stats-link-subtitle {
    color: white;
    opacity: 0.95;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.overview-area .title-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
    margin-right: 15px;
}

.overview-area .title-shape {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.overview-area .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-area .content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ffc107;
}

.overview-area .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
    margin-bottom: 0;
}

.overview-area .content-highlight-blue {
    color: #007bff;
}

.overview-area .content-highlight-green {
    color: #28a745;
}

.overview-area .btn-custom {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.overview-area .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.overview-area .bottom-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.overview-area .bottom-image-container img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-area .bottom-image-container img:hover {
    transform: scale(1.05);
}

.overview-area .bottom-image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.overview-area .bottom-image-decoration i {
    font-size: 24px;
    color: #007bff;
}

/* Enhanced Facilities Area Styles */
.facilities-area {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.facilities-area .bg-decoration-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.facilities-area .bg-decoration-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.facilities-area .container {
    position: relative;
    z-index: 2;
}

.facilities-area .president-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #ffffff, #f1f3f4);
}

.facilities-area .president-image-container img {
    max-height: 670px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facilities-area .president-image-container img:hover {
    transform: scale(1.02);
}

.facilities-area .quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 30px 30px;
    border-radius: 0 0 25px 25px;
}

.facilities-area .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.facilities-area .quote-icon i {
    font-size: 24px;
    color: white;
}

.facilities-area .quote-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Pramukh Name Styles */
.facilities-area .signature {
    margin-top: 15px;
    text-align: right;
    opacity: 0.9;
}

.facilities-area .pramukh-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    font-style: normal;
}

.facilities-area .pramukh-designation {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

/* Responsive Styles for Pramukh Name */
@media (max-width: 991.98px) {
    .facilities-area .pramukh-name {
        font-size: 1.1rem;
    }

    .facilities-area .pramukh-designation {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .facilities-area .pramukh-name {
        font-size: 1rem;
    }

    .facilities-area .pramukh-designation {
        font-size: 0.85rem;
    }
}

.facilities-area .corner-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.facilities-area .corner-decoration i {
    font-size: 32px;
    color: #007bff;
}

.facilities-area .title-decoration-line {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 3px;
    margin-right: 20px;
}

.facilities-area .title-decoration-dot {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
}

.facilities-area .president-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.facilities-area .president-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.president-title::after .facilities-area .content-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.facilities-area .content-card-1 {
    border-left: 4px solid #28a745;
}

.facilities-area .content-card-2 {
    border-left: 4px solid #007bff;
}

.facilities-area .content-card-3 {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #ffc107;
}

.facilities-area .content-card-decoration-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 50%;
}

.facilities-area .content-card-decoration-2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 50%;
}

.facilities-area .content-card-decoration-3 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}

.facilities-area .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
    margin: 12px;
    position: relative;
    z-index: 2;
}

.facilities-area .highlight-blue {
    color: #007bff;
}

.facilities-area .highlight-green {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.facilities-area .highlight-yellow {
    color: #ffc107;
}

.facilities-area .highlight-yellow-bg {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.facilities-area .cta-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.facilities-area .cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facilities-area .cta-icon i {
    font-size: 20px;
    color: white;
}

.facilities-area .cta-title {
    font-weight: 600;
}

.facilities-area .cta-subtitle {
    opacity: 0.9;
}

/* Overview Area CTA Section Styles */
.overview-area .cta-section {
    margin-top: 1.5rem;
}

.overview-area .stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.overview-area .stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.overview-area .stats-card:hover::before {
    left: 100%;
}

.overview-area .stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.overview-area .stats-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.overview-area .stats-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.overview-area .stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overview-area .stats-number-plus {
    color: #ffc107;
    font-size: 1.6rem;
}

.overview-area .stats-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.overview-area .cta-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 25px;
    border: none;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100px;
    display: flex;
    align-items: center;
}

.overview-area .cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.overview-area .cta-card:hover::before {
    left: 100%;
}

.overview-area .cta-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
}

.overview-area .cta-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.overview-area .cta-subtitle {
    opacity: 0.95;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.overview-area .cta-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.overview-area .cta-card:hover .cta-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.overview-area .cta-icon i {
    font-size: 18px;
    color: white;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {

    .overview-area .stats-card,
    .overview-area .stats-link-card {
        height: 160px;
    }

    .overview-area .stats-number {
        font-size: 2.4rem;
    }

    .overview-area .stats-link-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {

    .overview-area .stats-card,
    .overview-area .stats-link-card {
        height: 140px;
        margin-bottom: 20px;
    }

    .overview-area .stats-icon {
        width: 55px;
        height: 55px;
        margin-right: 15px;
    }

    .overview-area .stats-link-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .overview-area .cta-card {
        height: 90px;
        margin-top: 0px;
    }
}

@media (max-width: 768px) {

    .overview-area .stats-card,
    .overview-area .stats-link-card {
        height: 120px;
        margin-bottom: 15px;
        border-radius: 20px;
    }

    .overview-area .stats-number {
        font-size: 2rem;
    }

    .overview-area .stats-label {
        font-size: 0.95rem;
    }

    .overview-area .stats-link-title {
        font-size: 1.1rem;
    }

    .overview-area .stats-link-subtitle {
        font-size: 0.8rem;
    }

    .overview-area .cta-card {
        height: 80px;
        padding: 1rem !important;
        border-radius: 20px;
    }

    .overview-area .cta-title {
        font-size: 1.1rem;
    }

    .overview-area .cta-subtitle {
        font-size: 0.8rem;
    }

    .overview-area .cta-icon {
        width: 45px;
        height: 45px;
    }

    .overview-area .cta-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .overview-area .stats-card,
    .overview-area .stats-link-card {
        height: 100px;
        padding: 15px !important;
    }

    .overview-area .stats-icon,
    .overview-area .stats-link-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .overview-area .stats-number {
        font-size: 1.8rem;
    }

    .overview-area .stats-label,
    .overview-area .stats-link-title {
        font-size: 0.9rem;
    }

    .overview-area .cta-card {
        height: 70px;
        flex-direction: column;
        text-align: center;
    }

    .overview-area .cta-icon {
        margin-top: 8px;
        width: 35px;
        height: 35px;
    }
}

/* Enhanced Partner Section with Glass Effects and Hover Animations */
.partner-area {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.partner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: backgroundFloat 15s ease-in-out infinite;
}

@keyframes backgroundFloat {

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

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

.partner-slider-info {
    position: relative;
    z-index: 2;
}

.partner-slider {
    padding: 20px 0;
    overflow: visible;
}

.single-partner-logo {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.single-partner-logo:hover::before {
    left: 100%;
}

.single-partner-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.single-partner-logo:hover::after {
    width: 200px;
    height: 200px;
}

.single-partner-logo:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.single-partner-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: grayscale(100%) opacity(0.7);
}

.single-partner-logo:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) opacity(1) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

/* Slider Navigation Enhancement */
.partner-slider .swiper-button-next,
.partner-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #667eea;
}

.partner-slider .swiper-button-next:hover,
.partner-slider .swiper-button-prev:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.partner-slider .swiper-button-next::after,
.partner-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* Pagination Enhancement */
.partner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.partner-slider .swiper-pagination-bullet-active {
    background: #667eea;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .single-partner-logo {
        height: 140px;
        padding: 30px 25px;
        margin: 0 10px;
    }

    .single-partner-logo img {
        max-width: 100px;
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .single-partner-logo {
        height: 120px;
        padding: 25px 20px;
        margin: 0 8px;
        border-radius: 15px;
    }

    .single-partner-logo img {
        max-width: 80px;
        max-height: 60px;
    }

    .single-partner-logo:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 576px) {
    .single-partner-logo {
        height: 100px;
        padding: 20px 15px;
        margin: 0 5px;
        border-radius: 12px;
    }

    .single-partner-logo img {
        max-width: 70px;
        max-height: 50px;
    }

    .partner-slider .swiper-button-next,
    .partner-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .partner-slider .swiper-button-next::after,
    .partner-slider .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* Application Section Modern Styles */
.application-area-modern {
    position: relative;
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.main-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.steps-container {
    margin: 60px 0;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #e2e8f0;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-header {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-box {
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: scale(1.1);
}

.step-icon-box i {
    font-size: 24px;
    color: #3498db;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon-box i {
    color: white;
}

.step-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-body p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: white;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn i {
    transition: transform 0.3s ease;
}

.apply-btn:hover i {
    transform: translateX(4px);
}

.help-text {
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.help-text i {
    color: #4f46e5;
    font-size: 16px;
}

.help-text strong {
    color: #1f2937;
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    top: 60%;
    right: -3%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    bottom: 20%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    .step-card {
        padding: 24px 20px;
        margin-bottom: 24px;
    }

    .step-header {
        margin-bottom: 20px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step-icon-box {
        width: 48px;
        height: 48px;
    }

    .step-icon-box i {
        font-size: 20px;
    }

    .step-body h3 {
        font-size: 1.1rem;
    }

    .apply-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .help-text {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 576px) {
    .application-area-modern {
        padding: 60px 0;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .step-card {
        padding: 20px 16px;
    }

    /* .step-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    } */

    .bg-shapes .shape {
        display: none;
    }
}

/* Timeline Design Styles */
.subscribe-area-timeline {
    position: relative;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    animation: pulse 2s infinite;
}

.timeline-badge i {
    font-size: 2rem;
    color: white;
}

.timeline-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.timeline-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4f46e5 0%, #10b981 50%, #f59e0b 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vision-marker {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mission-marker {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.action-marker {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.marker-inner {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.marker-inner i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    width: 45%;
    padding: 0 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.timeline-item:nth-child(even) .card-number {
    right: auto;
    left: 20px;
}

.timeline-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.timeline-text p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.timeline-text p:last-child {
    margin-bottom: 0;
}

.timeline-features {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.timeline-item:nth-child(even) .timeline-features {
    justify-content: flex-end;
}

.feature-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.action-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.action-card .timeline-card-title {
    color: white;
}

.action-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-timeline-btn {
    background: white;
    color: #4f46e5;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.primary-timeline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #4f46e5;
}

.secondary-timeline-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-timeline-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.timeline-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 15s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    top: 60%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .timeline-title {
        font-size: 2.25rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }

    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .marker-inner {
        width: 45px;
        height: 45px;
    }

    .marker-inner i {
        font-size: 1.25rem;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px;
        padding: 0;
        text-align: left !important;
    }

    .timeline-features {
        justify-content: flex-start !important;
    }

    .card-number {
        right: 15px !important;
        left: auto !important;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 2rem 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .timeline-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .subscribe-area-timeline {
        padding: 60px 0;
    }

    .timeline-header {
        margin-bottom: 3rem;
    }

    .timeline-title {
        font-size: 1.875rem;
    }

    .timeline-badge {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .timeline-badge i {
        font-size: 1.5rem;
    }

    .timeline-card {
        padding: 1.5rem 1.25rem;
    }

    .timeline-card-title {
        font-size: 1.25rem;
    }

    .floating-shape {
        display: none;
    }
}

/* Subscribe Area Enhanced Styles */
.subscribe-area-enhanced {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.section-header-enhanced {
    margin-bottom: 3rem;
}

.section-badge-enhanced {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-enhanced {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.vision-mission-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-header-enhanced {
    position: relative;
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-wrapper-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.vision-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
}

.mission-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.vision-card-enhanced:hover .vision-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: scale(1.1) rotate(5deg);
}

.mission-card-enhanced:hover .mission-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scale(1.1) rotate(-5deg);
}

.icon-wrapper-enhanced i {
    font-size: 2rem;
    transition: all 0.4s ease;
}

.vision-icon i {
    color: #3b82f6;
}

.mission-icon i {
    color: #f59e0b;
}

.vision-card-enhanced:hover .vision-icon i,
.mission-card-enhanced:hover .mission-icon i {
    color: white;
}

.card-badge-enhanced {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vision-badge {
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.mission-badge {
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.card-content-enhanced {
    padding: 0 2rem 2rem;
}

.card-title-enhanced {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.card-description-enhanced {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-description-enhanced:last-child {
    margin-bottom: 0;
}

.card-decoration-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.vision-decoration {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mission-decoration {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.cta-section-enhanced {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 24px;
}

.cta-title-enhanced {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle-enhanced {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons-enhanced {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-enhanced {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.primary-btn-enhanced {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.primary-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
    color: white;
}

.secondary-btn-enhanced {
    background: white;
    color: #3498db;
    border: 2px solid #2980b9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn-enhanced:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.bg-elements-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-shape-enhanced {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bg-shape-enhanced.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    top: 10%;
    right: -5%;
    animation: float 12s ease-in-out infinite;
}

.bg-shape-enhanced.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    bottom: 15%;
    left: -3%;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-shape-enhanced.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.floating-elements-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon-enhanced {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatIcon 15s ease-in-out infinite;
}

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

.floating-icon-enhanced.icon-2 {
    top: 70%;
    right: 20%;
    animation-delay: 5s;
}

.floating-icon-enhanced.icon-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes float {

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

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

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-enhanced {
        font-size: 2rem;
    }

    .section-subtitle-enhanced {
        font-size: 1rem;
    }

    .vision-mission-card {
        margin-bottom: 2rem;
    }

    .card-header-enhanced {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .card-content-enhanced {
        padding: 0 1.5rem 1.5rem;
    }

    .icon-wrapper-enhanced {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper-enhanced i {
        font-size: 1.75rem;
    }

    .card-title-enhanced {
        font-size: 1.375rem;
    }

    .cta-section-enhanced {
        padding: 2rem 1.5rem;
    }

    .cta-title-enhanced {
        font-size: 1.5rem;
    }

    .cta-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }

    .btn-enhanced {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .bg-shape-enhanced {
        display: none;
    }
}

@media (max-width: 576px) {
    .subscribe-area-enhanced {
        padding: 60px 0;
    }

    .section-header-enhanced {
        margin-bottom: 2rem;
    }

    .section-title-enhanced {
        font-size: 1.75rem;
    }

    .card-header-enhanced {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .card-content-enhanced {
        padding: 0 1.25rem 1.25rem;
    }

    .cta-section-enhanced {
        padding: 1.5rem 1rem;
    }

    .cta-title-enhanced {
        font-size: 1.25rem;
    }

    .floating-icon-enhanced {
        display: none;
    }
}

/* Pages Banner Enhanced Styles */
.pages-banner-area-enhanced {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.pages-content-enhanced {
    padding: 2rem 0;
    z-index: 2;
    position: relative;
}

.college-badge-enhanced {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.college-since {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.pages-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.college-type {
    display: block;
    color: #10b981;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.location-text {
    display: block;
    color: #f59e0b;
    font-size: 2rem;
    margin-top: 0.25rem;
}

.pages-subtitle-enhanced {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.breadcrumb-enhanced {
    margin-bottom: 2.5rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-link:hover {
    color: #3b82f6;
}

.breadcrumb-item.active {
    color: #e2e8f0;
}

.college-stats-enhanced {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.pages-cta-enhanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-enhanced:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.pages-image-enhanced {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f2937;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achievement-badge i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
}

.floating-card.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-1 i {
    color: #3b82f6;
}

.floating-card.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-2 i {
    color: #10b981;
}

.floating-card.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

.floating-card.card-3 i {
    color: #f59e0b;
}

.banner-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    top: 10%;
    right: -10%;
    animation: float 15s ease-in-out infinite;
}

.bg-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    bottom: 15%;
    left: -5%;
    animation: float 12s ease-in-out infinite reverse;
}

.bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    top: 60%;
    right: 15%;
    animation: float 10s ease-in-out infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle.particle-2 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.particle.particle-3 {
    top: 70%;
    left: 20%;
    animation-delay: 8s;
}

.particle.particle-4 {
    top: 30%;
    left: 60%;
    animation-delay: 12s;
}

.particle.particle-5 {
    top: 80%;
    left: 70%;
    animation-delay: 16s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translateY(-40px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pages-title-enhanced {
        font-size: 2.5rem;
    }

    .college-type {
        font-size: 2rem;
    }

    .location-text {
        font-size: 1.5rem;
    }

    .pages-subtitle-enhanced {
        font-size: 1.125rem;
    }

    .college-stats-enhanced {
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pages-cta-enhanced {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .main-image {
        height: 400px;
    }

    .image-wrapper {
        transform: none;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 576px) {
    .pages-banner-area-enhanced {
        min-height: auto;
        padding: 80px 0;
    }

    .pages-title-enhanced {
        font-size: 2rem;
    }

    .college-type {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .location-text {
        font-size: 1.25rem;
    }

    .college-stats-enhanced {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .main-image {
        height: 300px;
    }

    .bg-shape,
    .particle {
        display: none;
    }
}

/* Application Section Enhanced Styles */
.application-area-enhanced {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.application-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

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

    50% {
        transform: scale(1.05);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    line-height: 1.6;
}

.enhanced-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.enhanced-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-text {
    margin-right: 10px;
    z-index: 2;
    position: relative;
}

.btn-icon {
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.enhanced-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.enhanced-btn:hover .btn-ripple {
    left: 100%;
}

.application-steps {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.application-step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.application-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.application-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.application-step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.application-step-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 2rem;
    color: #667eea;
    transition: color 0.3s ease;
}

.application-step-card:hover .icon-wrapper i {
    color: white;
}

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

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-description {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.application-step-card:hover .step-arrow {
    opacity: 1;
    right: -15px;
}

@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }
}

.application-info {
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.application-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.application-shapes .shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.application-shapes .shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: floatCircle 10s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: -6s;
}

@keyframes float {

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

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

@keyframes floatCircle {

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

    33% {
        transform: translateY(-30px) scale(1.1);
    }

    66% {
        transform: translateY(15px) scale(0.9);
    }
}

/* Responsive Design for Application Section */
@media (max-width: 768px) {
    .application-area-enhanced .section-title {
        font-size: 2rem;
    }

    .application-area-enhanced .section-subtitle {
        font-size: 1rem;
    }

    .application-step-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: -10px;
        right: 15px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Removed empty enhanced-btn ruleset */

    .application-area-enhanced .section-subtitle {
        font-size: 1rem;
    }

    .application-step-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: -10px;
        right: 15px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .enhanced-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* University Overview Page */
.university-overview-page {
    --ac-overview-primary: #2c3e50;
    --ac-overview-secondary: #3498db;
    --ac-overview-bg: #ffffff;
    --ac-overview-text: #333;
    --ac-overview-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --ac-overview-hover-shadow: 0 10px 25px rgba(0, 0, 0 0.1);
}

.university-overview-page .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ac-overview-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.university-overview-page .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--ac-overview-secondary);
    border-radius: 3px;
}

.university-overview-page .overview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.university-overview-page .overview-area {
    padding: 100px 0;
    position: relative;
    background-color: var(--ac-overview-bg);
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .university-overview-page .section-title h2 {
        font-size: 2rem;
    }

    .university-overview-page .overview-text p {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .university-overview-page .section-title h2 {
        font-size: 1.8rem;
    }

    .university-overview-page .overview-area {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .university-overview-page .section-title h2 {
        font-size: 1.6rem;
    }

    .university-overview-page .overview-area {
        padding: 60px 0;
    }

    .university-overview-page .overview-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.university-overview-page .overview-area {
    background: linear-gradient(135deg, var(--ac-overview-light-bg) 0%, #e9ecef 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.university-overview-page .overview-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(49, 130, 206, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(26, 54, 93, 0.1) 0%, transparent 40%);
    z-index: 1;
    animation: gradientMove 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.university-overview-page .overview-content {
    background: var(--ac-overview-card-bg);
    border-radius: 16px;
    padding: 2.8rem;
    box-shadow: var(--ac-overview-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.university-overview-page .overview-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--ac-overview-hover-shadow);
    border-color: rgba(49, 130, 206, 0.2);
}

.university-overview-page .title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ac-overview-primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    background: linear-gradient(90deg, var(--ac-overview-primary), var(--ac-overview-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.8s forwards 0.5s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.university-overview-page .title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--ac-overview-secondary), var(--ac-overview-primary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.university-overview-page .title:hover h2::after {
    width: 100%;
}

.university-overview-page p {
    color: var(--ac-overview-text);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.08rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.8s forwards 0.7s;
}

@keyframes fadeIn {
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.university-overview-page .swiper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ac-overview-shadow);
    transform: scale(0.98);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    opacity: 0;
    animation: zoomIn 0.8s forwards 0.4s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(0.98);
    }
}

.university-overview-page .swiper:hover {
    transform: scale(1);
    box-shadow: var(--ac-overview-hover-shadow);
}

.university-overview-page .swiper-slide {
    position: relative;
    overflow: hidden;
}

.university-overview-page .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.university-overview-page .swiper-slide.swiper-slide-active::before {
    opacity: 0.7;
}

.university-overview-page .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 8s ease;
    transform: scale(1.1);
}

.university-overview-page .swiper-slide-active img {
    transform: scale(1);
}

.university-overview-page .swiper-button-next,
.university-overview-page .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards 1s;
}

.university-overview-page .swiper-button-next {
    right: 20px;
}

.university-overview-page .swiper-button-prev {
    left: 20px;
}

.university-overview-page .swiper-button-next::after,
.university-overview-page .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.university-overview-page .swiper-button-next:hover,
.university-overview-page .swiper-button-prev:hover {
    background: var(--ac-overview-secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.university-overview-page .swiper-pagination {
    bottom: 20px !important;
    opacity: 0;
    animation: fadeIn 0.5s forwards 1s;
}

.university-overview-page .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.6;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.university-overview-page .swiper-pagination-bullet:hover {
    opacity: 0.9;
    transform: scale(1.2);
}

.university-overview-page .swiper-pagination-bullet-active {
    background: var(--ac-overview-secondary);
    opacity: 1;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
}

@media (max-width: 1199px) {
    .university-overview-page .overview-content {
        padding: 2.2rem;
    }

    .university-overview-page .swiper-slide img {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .university-overview-page .overview-area {
        padding: 4rem 0;
    }

    .university-overview-page .overview-content {
        margin-top: 2.5rem;
        padding: 2rem;
    }

    .university-overview-page .swiper-slide img {
        height: 350px;
    }

    .university-overview-page .title h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .university-overview-page .overview-area {
        padding: 3rem 0;
    }

    .university-overview-page .overview-content {
        padding: 1.8rem;
        margin-top: 2rem;
    }

    .university-overview-page .title h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .university-overview-page p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .university-overview-page .swiper-slide img {
        height: 280px;
    }

    .university-overview-page .swiper-button-next,
    .university-overview-page .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .university-overview-page .swiper-button-next::after,
    .university-overview-page .swiper-button-prev::after {
        font-size: 1.2rem;
    }

    .university-overview-page .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575px) {
    .university-overview-page .title h2 {
        font-size: 1.8rem;
    }

    .university-overview-page .swiper-slide img {
        height: 240px;
    }
}

/* End University Overview Styles */

/* Faculty Section Styles */
/* ============================================
   College Activities Section
   ============================================ */
.college-activities-gallery {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.college-activities-gallery .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.college-activities-gallery .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.college-activities-gallery .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.activity-carousel {
    position: relative;
    z-index: 2;
}

.activity-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-slide-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-slide-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slide-wrapper:hover .activity-image-overlay {
    opacity: 0.6;
}

.gallery-slide-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: white;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.gallery-caption h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-caption p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.activity-carousel:hover .carousel-control-prev,
.activity-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    z-index: 5;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .college-activities-gallery .section-title {
        font-size: 2.2rem;
    }

    .gallery-caption h5 {
        font-size: 1.2rem;
    }

    .gallery-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .college-activities-gallery {
        padding: 60px 0;
    }

    .college-activities-gallery .section-title {
        font-size: 1.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
}

/* ============================================
   Contact Section - Enhanced with Animations
   ============================================ */
/* Contact Section Styles */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9IiNlZWUiPjwvcmVjdD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiIG9wYWNpdHk9IjAuMSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.3;
    z-index: -1;
}

/* Contact Card Styles */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a6cf7, #6c5ce7);
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    /* transform: rotateY(180deg); */
}

.contact-icon-wrapper i {
    transition: transform 0.3s ease;
}

.contact-icon-wrapper:hover i {
    animation: bounceIcon 0.6s ease;
}

@keyframes bounceIcon {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(3px);
    }

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

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

.contact-info a:hover {
    color: #4a6cf7;
    padding-left: 5px;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 5px solid white;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-header .lead {
        width: 100% !important;
    }

    .map-container iframe {
        height: 300px !important;
    }
}

/* Fix for empty ruleset */
.some-class {
    color: inherit;
}

/* Standard background-clip property */
.bg-clip-content {
    background-clip: content-box;
    -webkit-background-clip: content-box;
}

.university-overview-page .contact-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    z-index: 1;
}

.university-overview-page .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9IiNlZWUiPjwvcmVjdD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiIG9wYWNpdHk9IjAuMSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.3;
    z-index: -1;
}

.university-overview-page .contact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.university-overview-page .contact-card {
    animation: fadeInUp 0.8s ease-out forwards;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.university-overview-page .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.university-overview-page .contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.university-overview-page .contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 8s infinite linear;
}

.university-overview-page .contact-header h2 {
    position: relative;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.university-overview-page .contact-header h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.university-overview-page .contact-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.university-overview-page .contact-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.university-overview-page .contact-body {
    padding: 3rem 2.5rem;
}

.university-overview-page .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.university-overview-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eef1ff;
}

.university-overview-page .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
    border-color: #e0e5ff;
}

.university-overview-page .contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.8rem;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.university-overview-page .contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.university-overview-page .contact-details h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.university-overview-page .contact-details p,
.university-overview-page .contact-details a {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.university-overview-page .contact-details a:hover {
    color: #667eea;
}

.university-overview-page .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.university-overview-page .contact-item:hover::before {
    transform: scaleX(1);
}

.university-overview-page .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 5px solid white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 350px;
    margin-top: 2rem;
    border: 1px solid #eef1ff;
}

.university-overview-page .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .university-overview-page .contact-header {
        padding: 2rem 1.5rem;
    }

    .university-overview-page .contact-body {
        padding: 2rem 1.5rem;
    }

    .university-overview-page .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .university-overview-page .contact-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .university-overview-page .contact-header h2::before,
    .university-overview-page .contact-header h2::after {
        display: none;
    }

    .university-overview-page .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .university-overview-page .contact-item {
        padding: 1.25rem;
    }
}

/* Faculty Section Styles */
.faculty-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    z-index: 1;
    overflow: hidden;
}

.faculty-bg-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.1) 0%, rgba(41, 128, 185, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.faculty-bg-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite reverse;
}

.faculty-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faculty-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f1f5f9;
}

.faculty-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 128, 185, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-overlay {
    opacity: 1;
}

.faculty-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2980b9;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #1a5276;
    color: #fff;
    transform: translateY(-3px);
}

.faculty-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.faculty-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faculty-designation {
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.faculty-department {
    color: #2980b9;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0;
}

.faculty-view-more {
    background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faculty-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faculty-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(41, 128, 185, 0.2);
}

.faculty-view-more:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .faculty-section {
        padding: 3rem 0;
    }

    .faculty-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .faculty-section .section-header h2 {
        font-size: 1.75rem;
    }

    .faculty-section .lead {
        width: 100% !important;
    }

    .faculty-view-more {
        width: 100%;
        max-width: 300px;
    }
}

/* Labs & Library Section Styles */
.labs-library-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    padding: 5rem 0;
}

.labs-bg-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.1) 0%, rgba(41, 128, 185, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.labs-bg-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite reverse;
}

.lab-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lab-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lab-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.lab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lab-card:hover .lab-image {
    transform: scale(1.05);
}

.lab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.lab-card:hover .lab-overlay {
    opacity: 1;
}

.lab-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2980b9;
    font-size: 24px;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.lab-card:hover .lab-icon {
    transform: scale(1);
}

.lab-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lab-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.lab-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    border-radius: 2px;
}

.lab-description {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.lab-explore-btn {
    display: inline-flex;
    align-items: center;
    color: #2980b9;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.lab-explore-btn i {
    transition: transform 0.3s ease;
}

.lab-explore-btn:hover {
    color: #1a5276;
}

.lab-explore-btn:hover i {
    transform: translateX(5px);
}

/* Lab Card Hover Effect */
.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lab-card .lab-image-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 70%;
}

.lab-card .lab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lab-card:hover .lab-image {
    transform: scale(1.05);
}

.lab-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lab-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.lab-description {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.lab-explore-btn {
    display: inline-flex;
    align-items: center;
    color: #2980b9;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.lab-explore-btn i {
    transition: transform 0.3s ease;
}

.lab-explore-btn:hover {
    color: #1a5276;
}

.lab-explore-btn:hover i {
    transform: translateX(5px);
}

.view-all-labs {
    background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-labs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.view-all-labs:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.view-all-labs:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .lab-title {
        font-size: 1.15rem;
    }

    .lab-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 991.98px) {
    .labs-library-section {
        padding: 4rem 0;
    }

    .labs-swiper-button-prev,
    .labs-swiper-button-next {
        display: none;
    }

    .lab-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .labs-library-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .section-header p.lead {
        width: 100% !important;
    }

    .lab-content {
        padding: 1.25rem;
    }
}

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

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

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

/* College Activities Gallery Styles */
.college-activities-gallery {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    overflow: hidden;
    padding: 5rem 0;
}

.college-activities-gallery .gallery-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.college-activities-gallery .gallery-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite reverse;
}

.gallery-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#collegeActivityCarousel {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#collegeActivityCarousel:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gallery-slide-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 500px;
}

.gallery-slide-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
}

.carousel-item.active .gallery-slide-wrapper img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff !important;
    transform: translateY(20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.carousel-item.active .gallery-caption {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.gallery-caption h5 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-caption p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #f0f0f0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.carousel-indicators {
    bottom: 20px;
    margin: 0;
    justify-content: flex-start;
    padding-left: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 30px;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

#collegeActivityCarousel:hover .carousel-control-prev,
#collegeActivityCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(50%);
    width: 1.5rem;
    height: 1.5rem;
}

.gallery-view-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.gallery-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-view-more:hover::before {
    opacity: 1;
}

/* Animation for gallery items */
@keyframes fadeInUpGallery {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .gallery-slide-wrapper {
        height: 400px;
    }

    .gallery-caption h5 {
        font-size: 1.5rem;
    }

    .gallery-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-slide-wrapper {
        height: 300px;
    }

    .gallery-caption {
        padding: 1.5rem;
    }

    .gallery-caption h5 {
        font-size: 1.25rem;
    }

    .gallery-caption p {
        font-size: 0.9rem;
    }

    .gallery-view-more {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Add Animate.css for animations */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Donors Section */
.donors-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.donors-section .section-header {
    position: relative;
    z-index: 1;
}

.donors-section .divider {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.donor-card {
    position: relative;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    background: #fff;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.donor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.donor-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    padding: 20px 20px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donor-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.donor-card:hover .donor-img {
    transform: scale(1.05);
}

.donor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.donor-card:hover .donor-overlay {
    opacity: 0.8;
}

.donor-content {
    padding: 25px !important;
    position: relative;
    z-index: 1;
}

.donor-name {
    color: #1e293b;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    position: relative;
    padding-bottom: 15px;
}

.donor-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.donor-card:hover .donor-name::after {
    width: 80px;
}

.donation-amount {
    background: rgba(41, 128, 185, 0.1);
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 15px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    border-left: 4px solid #2980b9;
}

.donation-amount span:first-child {
    color: #64748b;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.donation-amount span:last-child {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2980b9;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.donation-purpose h4 {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    position: relative;
    display: inline-block;
}

.donation-purpose h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2980b9;
    border-radius: 2px;
}

.donation-purpose p {
    color: #64748b !important;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .donor-img-wrapper {
        height: 220px;
    }
}

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

    .donor-img-wrapper {
        height: 300px;
        padding: 15px 15px 0;
    }
}

@media (max-width: 767.98px) {
    .donors-section .section-header h2 {
        font-size: 2rem !important;
    }

    .donor-img-wrapper {
        height: 250px;
    }

    .donor-content {
        padding: 20px !important;
    }
}

@media (max-width: 767.98px) {
    .donor-img-wrapper {
        height: 250px;
        padding: 10px 10px 0;
    }

    .donor-name {
        font-size: 1.25rem !important;
    }

    .donation-amount {
        padding: 8px 12px;
    }

    .donation-amount span:first-child {
        font-size: 0.75rem;
    }

    .donation-amount span:last-child {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.donor-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.donor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(41, 128, 185, 0.15) !important;
}

.donor-card:hover .donation-amount {
    background: rgba(41, 128, 185, 0.15);
}

.donor-card:hover .donation-amount span:last-child {
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.donor-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.donor-card:nth-child(1) {
    animation-delay: 0.1s;
}

.donor-card:nth-child(2) {
    animation-delay: 0.2s;
}

.donor-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Courses Section */
.courses-section {
    position: relative;
    overflow: hidden;
}

.courses-section .text-gradient {
    background: linear-gradient(90deg, #4a6cf7 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for older browsers */
    display: inline-block;
}

.courses-section .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.courses-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}

.courses-section .hover-shadow {
    transition: all 0.3s ease;
}

.courses-section .hover-shadow:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.courses-section .btn-hover-arrow {
    position: relative;
    padding-right: 2.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.courses-section .btn-hover-arrow i {
    position: absolute;
    right: 1rem;
    transition: all 0.3s ease;
}

.courses-section .btn-hover-arrow:hover i {
    transform: translateX(5px);
}

.courses-section .transition-all {
    transition: all 0.3s ease;
}

.courses-section .badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .courses-section .section-header p {
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .courses-section .card-body {
        padding: 1.25rem !important;
    }

    .courses-section .d-flex {
        flex-direction: column;
    }

    .courses-section .me-4 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
}

/* Principal Message Section */
.principal-message-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: 80px 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
}

.principal-card-wrapper {
    position: relative;
    z-index: 2;
}

/* Executive Committee Page Styles */
.executive-committee-page .team-area {
    padding: 100px 0;
}

.executive-committee-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.executive-committee-page .section-title h2 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.executive-committee-page .section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.executive-committee-page .section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.executive-committee-page .single-team-box {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Effects */
.executive-committee-page .single-team-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.executive-committee-page .single-team-box .image {
    position: relative;
    overflow: hidden;
    height: 280px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.executive-committee-page .single-team-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s;
}

.executive-committee-page .single-team-box:hover .image img {
    transform: scale(1.1);
    transform: scale(1.1);
}

.executive-committee-page .single-team-box .social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.executive-committee-page .single-team-box:hover .social {
    opacity: 1;
    transform: translateY(0);
    opacity: 1;
}

.executive-committee-page .social-btn {
    width: 35px;
    height: 35px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.executive-committee-page .social-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

.executive-committee-page .single-team-box .content {
    padding: 25px 20px;
    text-align: center;
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.executive-committee-page .single-team-box .content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.3;
}

.executive-committee-page .single-team-box .content span {
    display: block;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: block;
    color: #ff6b6b;
    font-weight: 600;
    margin: 5px 0;
    font-size: 15px;
}

.executive-committee-page .single-team-box .content p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.executive-committee-page .single-team-box .content .phone {
    color: #28a745;
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
    font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .executive-committee-page .single-team-box .content h3 {
        font-size: 16px;
    }

    .executive-committee-page .single-team-box .content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .executive-committee-page .team-area {
        padding: 60px 0;
    }

    .executive-committee-page .single-team-box {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Profile Card */
.principal-profile-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    background: #fff;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.principal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    filter: brightness(0.8);
}

/* Profile Caption (Always Visible) */
.profile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    z-index: 2;
}

/* Profile Overlay (On Hover) */
.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 3;
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 30px 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.principal-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.principal-designation {
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #fff;
    color: #0d6efd;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Message Content */
.message-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: #0d6efd;
    display: inline-block;
}

.divider-icon {
    margin: 0 15px;
    color: #0d6efd;
    font-size: 1.2rem;
}

/* Message Card */
.message-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #0d6efd;
    margin-top: 15px;
}

.message-icon {
    min-width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.message-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Experience Card */
.experience-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
}

.exp-icon {
    min-width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.exp-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.exp-content p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

/* Shapes */
.principal-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.principal-shape-1 {
    top: 10%;
    left: 5%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.principal-shape-2 {
    bottom: 10%;
    right: 5%;
    animation: floatAnimation 8s ease-in-out infinite;
}

@keyframes floatAnimation {

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

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

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }

    .message-content {
        padding: 30px;
    }

    .experience-card {
        flex-direction: column;
    }

    .exp-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }

    .message-card,
    .experience-card {
        padding: 20px;
    }

    .message-content {
        padding: 25px 20px;
    }

    .principal-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .application-area-enhanced {
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .application-area-enhanced .section-title {
        font-size: 1.8rem;
    }

    .application-step-card {
        padding: 1.5rem 1rem;
    }

    .floating-circle {
        display: none;
    }
}


/* Modern Support Accordion */
.modern-support-accordion {
    --primary-color: #2980b9;
    --secondary-color: #2980b9;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f8f9ff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.support-card-modern:last-child {
    margin-bottom: 0;
}

.support-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-card-header-modern {
    padding: 20px 25px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.support-card-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.support-card-header-modern:hover {
    background-color: var(--bg-light);
}

.support-card-header-modern:hover::before {
    height: 100%;
}

.support-card-header-modern.collapsed .toggle-icon-modern {
    transform: rotate(0);
}

.support-card-header-modern .toggle-icon-modern {
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition);
    transform: rotate(180deg);
    margin-left: 15px;
    flex-shrink: 0;
}

.support-icon-modern {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.support-card-modern:hover .support-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.05);
}

.support-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
    text-align: left;
}

.support-card-body-modern {
    padding: 0 25px 25px 85px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
}

.support-card-body-modern::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    height: 1px;
    width: calc(100% - 80px);
    background: linear-gradient(90deg,
            rgba(102, 126, 234, 0.1) 0%,
            rgba(102, 126, 234, 0.3) 50%,
            rgba(102, 126, 234, 0.1) 100%);
}

.support-card-body-modern p {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}

.support-card-body-modern p::before {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Animation for accordion */
.collapsing {
    transition: height 0.35s ease;
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .support-card-header-modern {
        padding: 18px 20px;
    }

    .support-card-body-modern {
        padding: 0 20px 20px 80px;
    }
}

@media (max-width: 767.98px) {
    .support-title-modern {
        font-size: 1rem;
    }

    .support-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .support-card-body-modern {
        font-size: 0.95rem;
        padding: 0 15px 15px 75px;
    }

}

@media (max-width: 575.98px) {
    .support-card-header-modern {
        padding: 16px 15px;
    }

    .support-card-body-modern {
        padding: 0 15px 15px 70px;
    }

}

#imagePreview {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    margin: 0 auto;
    display: block;
}

.custom-file-label::after {
    content: "Browse";
}
