:root {
    --primary: #004e9e;
    /* Deep red for hospitality industry */
    --secondary: #777777;
    /* Gold accent */
    /* --dark: #1a1a1a; */
    --light: #f2f2f2;
    --gray: #e6e7e8;
    --text-primary: #004e9e !important;
    --text-gold: #004e9e !important;
    --text-dark: #262626;
    --text-light: #9e9e9e;
    --primary-blue: #004e9e;
    --primary-second-blue: #004e9e;
    --dark: #262626;
    --gold: ##004e9e;
    --light-gold: #f9eedd;
    --light-blue: #ebeaf4;
}

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

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-gold {
    color: var(--text-gold) !important;
}

.text-grey {
    color: var(--text-light) !important;
}

.bg-gold {
    background-color: var(--gold);
    color: white;
}

.bg-blue {
    background-color: var(--primary-blue);
    color: white;
}

.bg-light-gold {
    background-color: var(--text-light);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

/* Header Top Bar */
.header-top {
    background-color: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.header-top a:hover {
    color: var(--gold);
}

.social-icons a {
    margin-right: 12px;
    font-size: 1rem;
}

/* Logo Section */
.logo-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.border{
    border-bottom: #000;
    margin: 0px 200px 0px 200px;
}

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

.logo-img-container {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-img {
    height: 70px;
    width: auto;
    margin-right: 15px;
}

.institute-name {
    flex: 2;
}

.institute-name h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.institute-name .tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-info {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-info i {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Main Navigation */
.main-navbar {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 1030;
}

.navbar-nav {
    width: 100%;
    justify-content: space-between;
}

.nav-item {
    position: static;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    padding: 18px 20px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Mega Menu */
.dropdown-menu.megamenu {
    width: 100%;
    left: 0 !important;
    right: 0;
    margin-top: 0;
    border: none;
    border-top: 3px solid var(--gold);
    border-radius: 0;
    background-color: white;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.megamenu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.menu-section {
    margin-bottom: 20px;
}

.menu-section h5 {
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 8px;
}

.menu-list a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
}

.menu-list a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.menu-list a i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .institute-name h1 {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 15px 12px !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-img-container {
        justify-content: center;
        margin-bottom: 10px;
    }

    .contact-info {
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 12px 15px !important;
    }

    .dropdown-menu.megamenu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        padding: 15px;
    }

    .megamenu-container {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        font-size: 0.8rem;
    }

    .logo-img {
        height: 60px;
    }

    .institute-name h1 {
        font-size: 1.3rem;
    }
}

/* Hero Section for demo purposes */
.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../assets/Images/banner/home-banner.png") no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.content-section {
    padding: 60px 0;
}

/* Card hover effect */
.hover-lift {
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 68, 140, 0.1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--gold);
}

/* Programs Section Styles */

/* Card Styling */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-header {
    border-bottom: none;
}

/* Program Header Colors */
.bg-gold {
    background-color: var(--gold) !important;
}

.bg-primary-second-blue {
    background-color: var(--primary-second-blue) !important;
}

/* Program Icon Animation */
.program-icon i {
    transition: transform 0.3s ease;
}

.hover-lift:hover .program-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Detail Items */
.detail-item {
    transition: transform 0.3s ease;
}

.hover-lift:hover .detail-item {
    transform: translateX(5px);
}

/* Button Styling */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: #8a5b27;
    border-color: #8a5b27;
}

.btn-primary-second-blue {
    background-color: var(--primary-second-blue);
    border-color: var(--primary-second-blue);
}

.btn-primary-second-blue:hover {
    background-color: #34467a;
    border-color: #34467a;
}

/* Hover Effect */
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }

    .detail-icon {
        padding: 0.75rem !important;
    }

    .d-flex.flex-md-row {
        flex-direction: column;
        align-items: center;
    }

    .d-flex.flex-md-row .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

/* Card Image Styling */
.card-img-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.footer-heading:after {
    background-color: var(--secondary);
    border-radius: 3px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px;
}

.s-about-program {
    padding-block: 4rem;
    position: relative;
}

.s-about-program .img-wrapper {
    margin-inline: auto;
    text-align: center;
}

.s-about-program .text-wrapper {
    background-color: var(--primary-blue);
    padding: 3rem;
    border-radius: 1rem;
    margin: auto;
}

.s-counter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex: 1;
}

.s-counter .title {
    color: #fea319;
    margin: 0;
    font-size: 1.5rem;
}

.gallery-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Slick Slider Custom Styles */
.image-slider {
    margin: 0 auto 30px;
    width: 90%;
}

.slider-item {
    padding: 10px;
    outline: none;
}

.slider-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-image:hover {
    transform: scale(1.02);
}

.image-caption {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border-top: 3px solid #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .slider-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 15px;
    }

    .slider-image {
        height: 250px;
    }
}

/* Visual Why Choose Us Styles */
.visual-section {
    position: relative;
    overflow: hidden;
}

.visual-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(43, 68, 140, 0.08);
    height: 100%;
}

.visual-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(43, 68, 140, 0.15);
}

.visual-card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,
            var(--primary-blue),
            var(--primary-second-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.visual-card-icon::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(45deg);
}

.visual-card-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

/* .visual-card:hover .visual-card-icon {
    background: linear-gradient(135deg, var(--gold), #d4a74c);
} */

.visual-card-image {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.visual-card-image img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    transition: transform 0.6s ease;
}

.visual-card:hover .visual-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
}

.stats-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary-blue),
            var(--primary-second-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 15px 30px rgba(43, 68, 140, 0.2);
}

.stats-circle::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary-blue),
            var(--primary-second-blue));
    z-index: -1;
    opacity: 0.3;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.floating-element {
    animation: float 5s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

.hotel-slider-container {
    position: relative;
    padding: 80px 0;
    z-index: 2;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hotel-logo-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.hotel-logo {
    max-width: 200px;
    max-height: 100px;
    transition: all 0.3s ease;
}

.hotel-building-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hotel-building-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-building-img img {
    transform: scale(1.1);
}

.hotel-info {
    padding: 25px;
    text-align: center;
}

.hotel-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slick Slider Customization */
.hotel-slider {
    margin: 0 -15px;
}

.slick-slide {
    padding: 0 15px;
}

.slick-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.slick-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slick-arrow:before {
    color: white;
    font-size: 20px;
    opacity: 0.9;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

/* Hotel Type Tags */
.hotel-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .hotel-slider-section {
        background-attachment: scroll;
    }

    .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -30px;
    }

    .hotel-building-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hotel-slider-container {
        padding: 50px 0;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

.gallery-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Slick Slider Custom Styles */
.image-slider {
    margin: 0 auto 30px;
    width: 90%;
}

.slider-item {
    padding: 10px;
    outline: none;
}

.slider-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-image:hover {
    transform: scale(1.02);
}

.image-caption {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border-top: 3px solid #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .slider-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 15px;
    }

    .slider-image {
        height: 250px;
    }
}

.fact-box {
    border: 3px dashed #2b448c;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s ease;
}

.fact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-box {
    transition: 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.support-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.side {
    margin: 0 70px;
}

.team-section {
    background: #0d1b2a;
    position: relative;
}

.team-bg {
    background: url('../assets/Images/banner/fees-banner.avif') no-repeat center center;
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.team-card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-content {
    padding: 15px;
}

.social a {
    margin: 0 5px;
    color: #0d6efd;
}

/* Custom hover effects */
.hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 15px !important;
    overflow: hidden;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #fd46ee !important;
}

.accreditation-logo {
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.hover-card:hover .accreditation-logo {
    filter: grayscale(0%);
}

/* Section styling */
.accreditation-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Badge styling */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .hover-card {
        margin-bottom: 1rem;
    }
}

/* Custom Styles */
.vision-mission-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.vision-card:hover .icon-box {
    background-color: #4661FD !important;
    color: white !important;
    transition: all 0.3s ease;
}

.mission-card:hover .icon-box {
    background-color: #198754 !important;
    color: white !important;
    transition: all 0.3s ease;
}

/* Value Cards */
.value-card {
    border-radius: 15px !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .card-body {
        padding: 2rem !important;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box i {
        font-size: 1.5rem !important;
    }
}

/* Check icon styling */
.bi-check-circle-fill {
    font-size: 1.2rem;
}

/* Badge styling */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.faculties-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faculties-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(70, 97, 253, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faculties-section .container {
    position: relative;
    z-index: 1;
}

/* Faculty Card Styles */
.faculty-card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: white;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.faculty-card:hover::before {
    transform: scaleX(1);
}

/* Individual card colors */
.faculty-card:hover .faculty-icon {
    transform: scale(1.1) rotate(5deg);
}

.faculty-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faculty-icon-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.faculty-card:hover .faculty-icon-small {
    opacity: 1;
    transform: translateX(0);
}

.faculty-number {
    font-size: 3rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-number {
    opacity: 0.1 !important;
}

/* Button Styles */
.btn-link {
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(70, 97, 253, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faculty-card {
        margin-bottom: 1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .faculty-number {
        font-size: 2.5rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.faculty-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.faculty-card:nth-child(1) {
    animation-delay: 0.1s;
}

.faculty-card:nth-child(2) {
    animation-delay: 0.2s;
}

.faculty-card:nth-child(3) {
    animation-delay: 0.3s;
}

.faculty-card:nth-child(4) {
    animation-delay: 0.4s;
}

.faculty-card:nth-child(5) {
    animation-delay: 0.5s;
}

.faculty-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

/* Hover Effects for Links */
.btn-link {
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

/* Card Content Styles */
.card-body {
    position: relative;
    z-index: 1;
}

/* Text Styles */
.text-secondary {
    color: #6c757d !important;
    line-height: 1.6;
}

.semester-card {
    position: relative;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.subject-item {
    position: relative;
    padding: 12px 12px 12px 35px;
    /* left space for icon */
    border-left: 3px solid var(--color-accent);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.subject-item i {
    position: absolute;
    left: 10px;
    top: 14px;
    font-size: 16px;
}

.subject-item:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.subject-list {
    list-style: none;
    padding: 0;
}

.syllabus-tabs .nav-pills .nav-link.active {
    color: white !important;
    background: var(--primary);
    border-color: var(--primary);
}

.syllabus-tabs .nav-pills .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    background: rgb(248, 249, 250);
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    padding: 12px 24px;
    margin: 0px 8px;
    border-radius: 8px;
    transition: 0.3s;
}

.study-area {
    background-position: 50%;
    position: relative;
    z-index: 1;
}

.study-area:after, .study-area:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
}

.study-area:before {
    top: 0;
    height: 100%;
    opacity: .9;
}

.single-study i, .study-area:before {
    background-color: var(--optional-color);
}

.study-area:after {
    bottom: 0;
    height: 200px;
}

.study-area:after, .study-area:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
}

.single-study, .study-area:after {
    background-color: White;
}

.position-relative.p-5.shadow-sm.bg-light {
    border-radius: 0px 20px 0px 0px;
}

.container-xl {
    max-width: 1750px;
}

/* custom minimal icon font – mimics the class names from the image */
.icon-stopwatch::before {
    content: "\f252";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.icon-education::before {
    content: "\f19d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* university cap */
.icon-online-course::before {
    content: "\f15c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* file-alt → online course feel */
.fas.fa-arrow-right {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

/* ---- exact UUI from description, adapted to bootstrap ---- */
.feature-one {
    padding: 80px 0;
    background: #f8fafc;
    font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    margin-bottom: 50px;
}

.section-title__tagline-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.section-title__tagline-shape {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-title__tagline-shape-2 {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-title__tagline {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #13253b;
    margin-top: 10px;
}

.split-line {
    display: inline-block;
}

.split-line span {
    display: inline-block;
}

/* feature cards */
.feature-one__single {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-one__single:hover {
    transform: translateY(-6px);
}

.feature-one__count {
    /* invisible count marker as in original (empty) */
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 90, 60, 0.05);
    border-radius: 0 0 0 40px;
    z-index: 1;
}

.feature-one__icon {
    width: 90px;
    height: 90px;
    background: #fff1ed;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 30px;
    position: relative;
    z-index: 3;
    font-size: 3rem;
    color: var(--primary);
}

.feature-one__content {
    padding: 20px 30px 35px 30px;
    position: relative;
    z-index: 2;
    background: white;
    flex: 1;
}

.feature-one__content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.feature-one__sub-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.feature-one__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1e33;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.feature-one__title a {
    text-decoration: none;
    color: inherit;
}

.feature-one__title a:hover {
    color: var(--primary);
}

.feature-one__text {
    color: #5a6577;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.feature-one__read-more a {
    font-weight: 600;
    color: #13253b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.feature-one__read-more a:hover {
    color: var(--primary);
}

.feature-one__read-more a:hover .fas.fa-arrow-right {
    transform: translateX(5px);
}

/* bootstrap row override small */
@media (max-width: 991px) {
    .section-title__title {
        font-size: 2.5rem;
    }

    .feature-one__icon {
        margin: 20px 0 0 20px;
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .feature-one__content {
        padding: 15px 20px 30px 20px;
    }

    .feature-one__title {
        font-size: 1.5rem;
    }
}

/* preserve title animation structure (split lines) but static – no extra JS needed */
.title-animation .split-line {
    display: block;
    text-align: center;
    position: relative;
}

.title-animation .split-line div {
    position: relative;
    display: inline-block;
}

.title-animation .split-line span {
    display: inline-block;
}

/* small extra polish: background image simulation (inline style already present) */
/* .feature-one__content-bg {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M20 20 L80 20 L70 80 L30 80 Z" fill="%23ff5a3c"/><circle cx="50" cy="40" r="8" fill="%2313253b"/></svg>'), linear-gradient(45deg, #f0f0f0, #fafafa);
    background-blend-mode: overlay;
} */

/* fadeIn animation from wow, visible as in example */
.wow {
    visibility: visible !important;
}

.fadeInLeft {
    animation: fadeInLeft 0.8s;
}

.fadeInUp {
    animation: fadeInUp 0.8s;
}

.fadeInRight {
    animation: fadeInRight 0.8s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f5f7ff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.chip i {
    color: #0d6efd;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--chip-bg);
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2e4a;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    cursor: default;
}

.chip i {
    color: #0d6efd;
    font-size: 1.1rem;
    width: 1.2rem;
    text-align: center;
}

.chip:hover {
    background: var(--chip-hover);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.gap-3 {
    gap: 1rem;
}

/* image gallery styling */
.gallery-wrapper .row {
    --bs-gutter-y: 0.8rem;
}

.gallery-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
    /* softer large rounding */
    box-shadow: 0 15px 25px -8px rgba(0, 20, 40, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 30px -6px rgba(0, 50, 80, 0.2);
}

.col-6 .mb-3 {
    margin-bottom: 0.9rem !important;
}

/* reveal class (we just keep without animation, but present) */
.reveal {
    /* placeholder for scroll reveal – static but visible */
}

/* responsive fine-tuning */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.3rem;
    }

    h3 {
        font-size: 1.7rem;
    }

    .col-lg-6 .d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .chip {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }

    .col-lg-6 .d-flex {
        flex-direction: column;
        align-items: stretch;
    }
}

/* tweak for muted paragraph color consistency */
.text-center p.lead {
    color: #4a5b70;
}

/* split class (for reveal, no extra) */
.split {
    /* from original template */
}

/* image placeholder handling (since hotel-program.webp might be missing, we keep background as fallback) */
img[alt="Sports"] {
    background: #dfe7f2;
    min-height: 140px;
    object-fit: cover;
}

/* we can also add a subtle pattern behind images but not needed */

/* ===== ACTIVITIES SECTION (grid-2 cards) ===== */
#activities .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

#activities .card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#activities .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd40;
}

#activities .card-media {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

#activities .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#activities .card:hover .card-media img {
    transform: scale(1.05);
}

#activities .card-body {
    padding: 28px 24px 32px;
    flex: 1;
}

#activities .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b4a;
    margin-bottom: 12px;
    line-height: 1.2;
}

#activities .card-text {
    color: #4f5b68;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== STATS BAND (dark gradient with numbers) ===== */
.stats {
    background: linear-gradient(135deg, #0d2b4e 0%, #1a3f64 100%);
    border-radius: 40px;
    padding: 60px 40px;
    color: white;
    box-shadow: 0 25px 40px -12px rgba(0, 40, 80, 0.35);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.stats .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats .section-title {
    color: white;
    margin-bottom: 10px;
    font-size: 2.8rem;
    font-weight: 800;
}

.stats .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats .stat .n {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    color: white;
    letter-spacing: -0.02em;
}

.stats .stat .l {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery .g {
    overflow: hidden;
    border-radius: 8px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery .g:hover img {
    transform: scale(1.1);
}

/* Custom layout */
.g1 {
    grid-row: span 2;
}

.g2 {
    grid-column: span 2;
}

.g5 {
    grid-column: span 2;
}

/* ===== CTA SECTION (conversion band) ===== */
.cta {
    background: linear-gradient(135deg, #0d6efd 0%, #0b4b9e 100%);
    border-radius: 40px;
    padding: 70px 50px;
    color: white;
    text-align: center;
    box-shadow: 0 30px 50px -15px #0d6efd70;
}

.cta .section-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* button group */
.cta .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: white;
    color: #0d6efd;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px #00000040;
}

/* feature list with check icons */
.cta .mt-8 {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.cta .flex.items-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.cta .flex.items-center img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.cta .flex.items-center span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta p.text-xl {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.5;
}

/* ===== SECTION TITLES & LEAD (shared across all) ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b2b4a;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.section-title.text-white {
    color: white;
}

.lead {
    font-size: 1.2rem;
    color: #4f5b68;
    max-width: 800px;
    line-height: 1.6;
}

/* ===== UTILITIES (for flex, gaps, colors) ===== */
.fw-bold {
    font-weight: 700;
}

.bg-accent {
    background: #ff5a3c;
}

.hover\:bg-accent-600:hover {
    background: #e64e33;
}

.text-white {
    color: white;
}

.shadow-xl {
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.3rem;
    }

    #activities .card-title {
        font-size: 1.5rem;
    }

    .stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #activities .grid-2 {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 40px 20px;
    }

    .stats .stat .n {
        font-size: 2.8rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery .g1,
    .gallery .g4 {
        aspect-ratio: 16/9;
    }

    .cta {
        padding: 50px 20px;
    }

    .cta .mt-8 {
        flex-direction: column;
        gap: 1rem;
    }

    .cta .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta .flex.items-center {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b2b4a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4f5b68;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-center-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b2b4a;
    margin-bottom: 15px;
    text-align: center;
}

/* ===== CONTACT CARDS GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    border-radius: 30px;
    padding: 45px 30px 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -12px rgba(13, 110, 253, 0.25);
    border-color: #0d6efd40;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b4a;
    margin-bottom: 15px;
}

.contact-info {
    color: #4f5b68;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    padding: 8px 20px;
    border-radius: 40px;
    background: #e8f0fe;
}

.contact-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
    gap: 12px;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 40px;
    padding: 60px;
    margin: 80px 0;
    border: 1px solid #eef2f6;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b2b4a;
    margin-bottom: 15px;
}

.form-subtitle {
    color: #4f5b68;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #0b2b4a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: #1e293b;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f5b68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* checkbox */
.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    margin: 0;
}

.form-group label[for="newsletter"] {
    color: #4f5b68;
    font-size: 0.95rem;
}

/* ===== DEPARTMENT CARDS (commented but kept ready) ===== */
.department-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.department-card {
    background: white;
    border-radius: 30px;
    padding: 35px 30px;
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.department-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd40;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.department-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.department-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.department-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2b4a;
}

.contact-person {
    background: #f8fafd;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
}

.person-name {
    font-weight: 600;
    color: #0b2b4a;
    margin-bottom: 4px;
}

.person-role {
    font-size: 0.9rem;
    color: #64748b;
}

.department-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.info-item i {
    color: var(--primary);
    width: 20px;
    font-size: 1.1rem;
}

/* ===== CAMPUS VISIT SECTION ===== */
.campus-visit {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 40px;
    padding: 60px;
    margin: 80px 0;
    border: 1px solid #e2e8f0;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.visit-card {
    background: white;
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -12px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd40;
}

.visit-icon {
    width: 80px;
    height: 80px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.visit-card:hover .visit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.visit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b4a;
    margin-bottom: 15px;
}

.visit-desc {
    color: #4f5b68;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--primary);
    width: 22px;
    font-size: 1.2rem;
}

.btn-accent {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-accent:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--primary);
}

/* ===== SOCIAL CONNECT ===== */
.social-connect {
    text-align: center;
    margin: 80px 0;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-card {
    background: white;
    padding: 25px 20px;
    border-radius: 28px;
    text-align: center;
    width: 140px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px -8px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd40;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.15);
}

.social-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* platform-specific top borders */
.social-card.facebook {
    border-top: 4px solid var(--primary);
}

.social-card.twitter {
    border-top: 4px solid var(--primary);
}

.social-card.instagram {
    border-top: 4px solid var(--primary);
}

.social-card.linkedin {
    border-top: 4px solid var(--primary);
}

.social-card.youtube {
    border-top: 4px solid var(--primary);
}

.social-card.whatsapp {
    border-top: 4px solid var(--primary);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #0b4b9e;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -8px #0d6efd80;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.3rem;
    }

    .contact-grid,
    .department-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 40px 16px;
    }

    .contact-grid,
    .department-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section,
    .campus-visit {
        padding: 40px 25px;
    }

    .social-card {
        width: 120px;
        padding: 20px 15px;
    }

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

@media (max-width: 480px) {
    .contact-card {
        padding: 35px 20px;
    }

    .visit-card {
        padding: 30px 20px;
    }

    .social-grid {
        gap: 15px;
    }

    .social-card {
        width: calc(50% - 20px);
        min-width: 130px;
    }
}

.lab-card img {
    width: 100%;
    height: 220px;
}

.home-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(Images/banner/home-banner.jpg) center center / cover no-repeat;
}

.banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.modern-info-bar {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 100%);
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modern-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-button {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: rgba(166, 116, 55, 0.3) 0px 4px 15px;
    background: var(--primary);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 10px 25px;
    border-radius: 25px;
    transition: var(--transition);
}

.size-font{
    font-size: 2.5rem;
}


.accordion-item.shadow{
    box-shadow: 0 8px 25px rgba(13,110,253,0.25) !important;
}

.accordion-item{
    background:#fff;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.accordion-button{
    font-size:16px;
    padding:18px;
}

.accordion-button:not(.collapsed){
    background: var(--primary-blue);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

@media (max-width: 576px) {
    .side {
        margin: 0 5px;
    }
}

html, body {
    overflow-x: hidden;
}