/********** Template CSS **********/
:root {
    --primary: #06bbcc;
    --light: #f0fbfc;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/*** Navbar ***/
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #434242;
    padding: 10px 100px;
    color: #ffffff;
    font-weight: bold;
}
/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
}

.contact-info span {
    margin-left: 15px;
    font-size: 16px;
}

.social-links {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    /*    font-weight: bold;*/
    font-size: 18px;
}

.mandatory {
    color: black;
}

.logo-container {
    position: relative;
    z-index: 10;
}

.logo {
    width: 88px;
    height: 88px;
    position: relative;
    top: -2px;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px 100px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin-top: 20px;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 15px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        overflow-x: hidden !important;
    }
    #cir {
        overflow-x: hidden !important;
    }
    #test {
        overflow-x: hidden !important;
    }
    body {
        overflow-x: hidden !important;
    }

    .address,
    .contact-info,
    .social-links {
        margin: 5px 0;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        margin-top: 10px;
        display: none;
    }

    .social-links a {
        margin: 0 5px;
    }
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        z-index: 1000;
        display: flex;
    }

    .nav-links li {
        margin: 10px 45px;
    }
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    list-style: none;
    min-width: 215px;
    z-index: 100;
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    padding: 10px;
    font-size: 14px;
    color: black;
    display: block;
}

.dropdown a:hover {
    width: fit-content;
    background: #ffc107;
    color: black;
}

.nav-links li:hover .dropdown {
    display: block;
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo-container {
        flex: 1;
        text-align: left;
    }

    .menu-icon {
        display: block;
        font-size: 28px;
    }

    .dropdown {
        position: static;
        box-shadow: none;
    }

    .dropdown li {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    font-size: 22px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: brown;
    border-color: brown;
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/abt_banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.page-headerr {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/ac.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-headerr-inner {
    background: rgba(15, 23, 43, 0.7);
}

.page-headerrr {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/addmission.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-headerrr-inner {
    background: rgba(15, 23, 43, 0.7);
}

.page-headerrrr {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/events.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-headerrrr-inner {
    background: rgba(15, 23, 43, 0.7);
}

.pagee-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/prgs.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pagee-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.pageee-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/gallery.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pageee-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.pppage-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/ac7.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pppage-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.ppage-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/blog.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ppage-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.paage-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
        url(../img/contact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.paage-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #ffed00;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #ffed00;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
/* Director Section */
.director-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
}

.director-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Orange Title */
    margin-bottom: 15px;
}

.director-name {
    font-size: 24px;
    font-weight: bold;
    color: #222;
}

.director-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.director-message {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Director's Image */
.director-img {
    width: 44%;
    max-width: 300px;
    border-radius: 50%;
    height: 230px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .director-section .row {
        flex-direction: column;
        text-align: center;
    }
    #subb {
        display: none;
    }

    .director-img {
        width: 60%;
        max-width: 250px;
        margin-bottom: 20px;
    }
}
/* Vision & Mission Section */
.vision-mission-section {
    padding: 70px 0;
    background: #f5f5f5;
}

/* Vision & Mission Box */
.vision-mission-box {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.vision-mission-box:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.icon-container {
    width: 70px;
    height: 70px;
    background: #e31e24; /* Orange Circle */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto 15px;
}
/* Academics Section */
.academics-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24;
    margin-bottom: 30px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-button {
    background: #fff;
    border: 2px solid #e31e24;
    color: #e31e24;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #e31e24;
    color: #fff;
}

/* Tab Content */
.tab-content {
    display: none;
    /* background: white; */
    padding: 50px 20px;
    border-radius: 10px;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
    margin-top: 50px;
}

.tab-content.active {
    display: block;
}

/* Curriculum List */
.curriculum-list {
    list-style: none;
    padding: 0;
}

.curriculum-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* Subjects Section */
.subject-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 15px;
}

.subject-box {
    background: #fff;
    border-radius: 10px;
    padding: 46px;
    width: 30%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.subject-box:hover {
    transform: scale(1.05);
}

.subject-box h4 {
    color: #e31e24;
    font-size: 18px;
}

/* Grading Table */
.grading-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.grading-table th,
.grading-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.grading-table th {
    background: #e31e24;
    color: white;
}

.grading-table tr:nth-child(even) {
    background: #f2f2f2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 80%;
        margin-bottom: 10px;
    }

    .subject-box {
        width: 100%;
        margin-bottom: 15px;
    }
}
/* Admissions Section */
.admission-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24;
    margin-bottom: 30px;
}

/* Admission Boxes */
.admission-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

/* Admission Steps */
.admission-steps {
    list-style: none;
    padding: 0;
}

.admission-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.admission-steps li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #e31e24;
    font-weight: bold;
}

/* Enquiry Form */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    background: #e31e24;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #e66a00;
}

/* Scholarship Table */
.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.scholarship-table th,
.scholarship-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.scholarship-table th {
    background: #e31e24;
    color: white;
}

.scholarship-table tr:nth-child(even) {
    background: #f2f2f2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100%;
    }
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Red Color */
    margin-bottom: 30px;
}

/* FAQ Container */
.faq-container {
    margin: auto;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    background: #e31e24;
    color: white;
    font-size: 18px;
    padding: 15px;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    border-radius: 5px;
}

.faq-question:hover {
    background: #c01a1d;
}

/* FAQ Answer (Initially Hidden) */
.faq-answer {
    display: none;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    color: #555;
    text-align: left;
    border-radius: 5px;
}

/* Icon Styling */
.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        width: 90%;
    }
}
/* Events & Calendar Section */
.events-calendar-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Red Theme */
    margin-bottom: 30px;
}

/* Events Box */
.events-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Events List */
.event-list {
    list-style: none;
    padding: 0;
}

.event-list li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #555;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.event-date {
    font-weight: bold;
    color: #e31e24;
}

/* Academic Calendar */
.calendar-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.academic-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.academic-calendar th,
.academic-calendar td {
    border: 1px solid #ddd;
    padding: 10px;
}

.academic-calendar th {
    background: #e31e24;
    color: white;
}

.academic-calendar tr:nth-child(even) {
    background: #f2f2f2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-list li {
        flex-direction: column;
        align-items: center;
    }

    .academic-calendar th,
    .academic-calendar td {
        padding: 8px;
    }
}
/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24;
    margin-bottom: 30px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Contact Form Box */
.contact-form-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    background: #e31e24;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c01a1d;
}

/* Contact Information Section */
.contact-info-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Red Theme */
    margin-bottom: 30px;
}

/* Contact Card */
.contact-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-item:hover {
    transform: translateY(-5px);
}

/* Contact Icons */
.contact-icon {
    font-size: 24px;
    color: #e31e24;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Text */
.contact-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 90%;
    }
}
/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24;
    margin-bottom: 30px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Gallery Images */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover img {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Lightbox Content */
.lightbox-content {
    position: relative;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Title */

/* Text */
.section-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-section .row {
        flex-direction: column;
        text-align: center;
    }

    .vision-mission-box {
        margin-bottom: 20px;
    }
}
/* Campus Section */
.campus-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
}

/* Title */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Orange Title */
    margin-bottom: 30px;
}

/* Subheading */
.sub-heading {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

/* Paragraph Text */
.campus-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Image Styling */
.campus-img-container {
    text-align: center;
}

.campus-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.campus-img:hover {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
    .campus-section .row {
        flex-direction: column;
        text-align: center;
    }

    .campus-img {
        margin-top: 20px;
    }
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Orange Title */
    margin-bottom: 30px;
}

/* Team Member Cards */
.team-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: scale(1.05);
}

/* Team Member Image */
.team-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.team-img:hover {
    transform: scale(1.03);
}

/* Team Name */
.team-name {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-top: 15px;
}

/* Team Designation */
.team-designation {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .team-member {
        width: 100%;
    }
}
/* Awards Section */
.awards-section {
    padding: 60px 0;
    /*    background-color: #f9f9f9;*/
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #e31e24; /* Orange Title */
    margin-bottom: 30px;
}

/* Award Card */
.award-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 25px;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Award Icons */
.award-icon {
    font-size: 40px;
    color: #e31e24; /* Orange Icons */
    margin-bottom: 15px;
}

/* Award Title */
.award-title {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

/* Award Description */
.award-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .award-item {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .award-item {
        width: 100%;
    }
}

/*** Service ***/
.service-item {
    background: #4342420f;
    transition: 0.5s;
}

.service-item:hover {
    margin-top: -10px;
    background: #db98983b;
}

.service-item * {
    transition: 0.5s;
}

.service-item:hover * {
    color: #000;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}

/*** Team ***/
.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: brown !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #cccccc;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    background: brown;
    border-color: brown;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: brown;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

#sub {
    color: #ffed00 !important;
}

#success-alert {
    position: fixed;
    top: 81px;
    right: 76px;
    z-index: 1000;
    height: 54px;
    background-color: #e31e24;
    border-color: #e31e24;
    color: white;
    font-weight: bolder;
    border-radius: 9px;
    font-size: 15px;
}
