@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&display=swap');

:root {
    --primary-green: #097b47;
    --secondary-blue: #264995;
    --accent-orange: #ff9800;
    --accent-orange-dark: #e68900;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
}

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

body {
    font-family: 'poppins', sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.accent-orange {
    color: var(--accent-orange);
}

/* Top Bar - Compact */
.top-bar {
    background: var(--secondary-blue);
    color: white;
    padding: 3px 0;
    font-size: 12px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--accent-orange);
}

/* Top Bar Social Icons */
.top-bar .fab {
    font-size: 12px;
}

/* Small Button in Top Bar */
.btn-sm-custom {
    padding: 3px 10px !important;
    font-size: 9px;
    border-radius: 30px;
    margin-left: 8px;
}

.btn-accent {
    background: var(--accent-orange);
    color: white;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 6px 16px;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

.btn-accent:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-accent {
    border: 1px solid var(--accent-orange);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 6px 16px;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

.btn-outline-accent:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-1px);
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 28px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background: var(--accent-orange);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 28px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-blue);
}

.btn-lg {
    padding: 12px 35px;
    font-size: 1rem;
}

.text-accent {
    color: var(--accent-orange);
}

.text-secondary-blue {
    color: var(--secondary-blue);
}

/* Navbar - Compact */
.navbar {
    background: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar .container {
    padding-left: 20px !important;
    padding-right: 0;
}

/* Logo Section - Reduced left spacing */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-right: 0;
    padding: 8px 0;
    margin-left: -10px;
}

.navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-text {
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.15;
}

.brand-text small {
    font-size: 0.65rem;
    font-weight: normal;
}

/* Navigation Menu - Centered */
.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    margin: 0 auto;
    gap: 2px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0;
    transition: 0.3s;
    border-radius: 30px;
    padding: 6px 12px !important;
    font-size: 0.85rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-orange) !important;
}

.navbar-nav .dropdown-menu {
    background: var(--primary-green);
    border: none;
    border-radius: 10px;
    padding: 6px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item {
    color: white;
    font-weight: 500;
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-orange) !important;
}

.navbar-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile: remove the green box, blend into the collapsed navbar */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        padding-left: 14px; /* slight indent so submenu items read as nested under "Admissions" */
    }

    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        border-radius: 0;
        padding: 8px 12px;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus,
    .navbar-nav .dropdown-item.active {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 30px;
    }

    .navbar-brand {
        margin-left: 0;
    }

    .navbar-nav {
        margin: 10px 0;
    }

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

/* Remove default container padding on large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-title {
    color: var(--primary-green);
    font-weight: bold;
}

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

.section-header h2 {
    color: var(--secondary-blue);
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 3px;
}

.section-header p {
    color: #666;
    margin-top: 8px;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.8rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.feature-box h4 {
    margin-bottom: 12px;
    color: var(--secondary-blue);
    font-size: 1.2rem;
}

/* News List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.news-list li:hover {
    transform: translateX(5px);
}

.news-list li i {
    color: var(--accent-orange);
    margin-right: 10px;
    width: 22px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 0;
}

.footer h5 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin-right: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer ul li i {
    margin-right: 8px;
    width: 18px;
    font-size: 13px;
}

.footer ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.input-group {
    border-radius: 50px;
    overflow: hidden;
}

.input-group .form-control {
    border: none;
    padding: 8px 12px;
    font-size: 13px;
    height: 38px;
}

.input-group .form-control:focus {
    box-shadow: none;
    outline: none;
}

.input-group .btn-accent {
    border-radius: 0;
    padding: 8px 15px;
    font-size: 13px;
    height: 38px;
}

.copyright {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
}

/* Utility Classes */
.py-5 {
    padding: 60px 0;
}

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

.rounded {
    border-radius: 15px !important;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .py-5 {
        padding: 40px 0;
    }
}

/* ========== SECTION TITLES - NO UNDERLINES ========== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #264995;
    margin-bottom: 15px;
    text-decoration: none !important;
    border-bottom: none !important;
}

.section-title .highlight {
    color: #097b47;
    text-decoration: none !important;
    border-bottom: none !important;
}

.section-title .highlight::before,
.section-title .highlight::after,
.section-title::before,
.section-title::after {
    display: none !important;
    content: none !important;
}

.section-description {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title-left {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff9800;
    display: inline-block;
}

/* ========== PROFESSIONAL HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    background-image: url('https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 123, 71, 0.88) 0%, rgba(38, 73, 149, 0.92) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    padding: 60px 0 100px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-wrapper {
    margin-bottom: 0px;
    margin-top: -20px !important;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 0.8rem;
    color: #ff9800;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    color: #ff9800;
    position: relative;
    display: inline-block;
}

.hero-title-light {
    display: block;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle-wrapper {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ff9800, transparent);
    margin: 0 auto;
    border-radius: 3px;
}

.hero-buttons {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons .btn {
    position: relative;
    margin: 5px 10px;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn-primary {
    background: white;
    color: #097b47;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.hero-buttons .btn-accent {
    background: #ff9800;
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.hero-buttons .btn-accent:hover {
    background: #264995;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(38, 73, 149, 0.4);
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-buttons .btn:hover .btn-overlay {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 0px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 160px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 152, 0, 0.5);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 152, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.3rem;
    color: #ff9800;
}

.stat-info {
    text-align: left;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
    color: #ff9800;
    line-height: 1.2;
}

.stat-info p {
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
 .hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            z-index: 2;
            line-height: 0;
            
        }

        .hero-wave svg {
            display: block;
            width: 100%;
            height: auto;
            border: #fff;
        }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 152, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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



/* Responsive Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat {
        min-width: 140px;
        padding: 10px 20px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 1rem;
    }

    .stat-info h3 {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero .container {
        padding: 40px 0 80px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
    }

    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.75rem;
        margin: 5px;
    }

    .hero-stats {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: 200px;
        padding: 10px 20px;
    }

    .hero-line {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
    }

    .hero-buttons .btn {
        padding: 6px 16px;
        font-size: 0.7rem;
    }

    .stat {
        min-width: 180px;
        padding: 8px 16px;
    }

    .stat-info h3 {
        font-size: 1rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
    }

    .stat-icon i {
        font-size: 0.9rem;
    }
}

/* ========== DIRECTOR'S MESSAGE ========== */
.director-section {
    height: 100%;
}

.message-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.director-img-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff9800;
}

.director-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info {
    flex: 1;
}

.director-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #264995;
    margin-bottom: 5px;
}

.director-info .designation {
    color: #ff9800;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}

.message-text-wrapper {
    position: relative;
    clear: both;
    width: 100%;
}

.quote-icon {
    color: #ff9800;
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.message-text-wrapper p {
    color: #555;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* ========== NEWS SECTION ========== */
.news-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.news-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.news-container::-webkit-scrollbar {
    width: 5px;
}

.news-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.news-container::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 10px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    padding: 10px;
    border-radius: 10px;
}

.news-item:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
}

.news-date-badge {
    flex-shrink: 0;
    width: 50px;
    background: linear-gradient(135deg, #097b47, #264995);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 8px 4px;
}

.news-date-day {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.news-date-month {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.news-content {
    flex: 1;
    min-width: 0;
}

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

.news-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.news-heading i {
    color: #ff9800;
    font-size: 1rem;
}

.news-heading strong {
    color: #264995;
    font-size: 0.95rem;
}

.news-details p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 8px 0;
    padding-left: 25px;
}

.news-expiry {
    font-size: 0.7rem;
    color: #999;
    margin-top: 5px;
    padding-left: 25px;
}

.news-expiry i {
    color: #ff9800;
    margin-right: 5px;
}

.no-news {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.no-news i {
    color: #ff9800;
    margin-bottom: 10px;
}

/* ========== PROGRAM CARDS ========== */
.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.program-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
}

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

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.btn-view {
    background: #ff9800;
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view:hover {
    background: white;
    color: #097b47;
    transform: translateY(-2px);
}

.program-body {
    padding: 15px;
}

.program-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #264995;
    margin-bottom: 8px;
    min-height: 40px;
}

.program-short-desc {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
}

.program-meta {
    margin-top: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.7rem;
}

.meta-item i {
    color: #ff9800;
}

.btn-details {
    background: transparent;
    border: none;
    color: #097b47;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-details:hover {
    color: #ff9800;
}

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

.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #097b47, #264995);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(9, 123, 71, 0.3);
    color: white;
}

/* ========== CAMPUS CARDS ========== */
.campus-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.campus-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #097b47, #264995);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.campus-icon-wrapper i {
    font-size: 30px;
    color: white;
}

.campus-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #264995;
    margin-bottom: 10px;
}

.campus-card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.campus-phone {
    font-size: 0.65rem;
    color: #6c757d;
    display: inline-block;
    margin-top: 5px;
}

/* ========== MODAL STYLES ========== */
.program-details-section {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.program-details-section h6 {
    color: #264995;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.program-content {
    line-height: 1.6;
    color: #555;
    font-size: 0.85rem;
}

.bg-gradient {
    background: linear-gradient(135deg, #097b47, #264995);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
}

/* ========== ABOUT SECTION ========== */
.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
}

/* Row gap for spacing */
.row.g-5 {
    --bs-gutter-x: 3rem;
    gap: 2rem 0;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .program-img-wrapper {
        height: 140px;
    }

    .news-section {
        margin-top: 20px;
    }

    .section-title-left {
        font-size: 1.2rem;
    }

    .news-heading strong {
        font-size: 0.85rem;
    }

    .news-details p {
        font-size: 0.75rem;
        padding-left: 20px;
    }

    .message-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .director-img-wrapper {
        width: 100px;
        height: 100px;
    }

    .director-info h4 {
        font-size: 1.1rem;
    }

    .message-text-wrapper p {
        font-size: 0.85rem;
        text-align: left;
    }

    .about-text {
        font-size: 0.85rem;
        text-align: left;
    }

    .about-image-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.3rem;
    }

    .btn-view-all {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .message-card {
        padding: 20px;
    }

    .message-text p {
        font-size: 0.8rem;
    }
}