.topbar {
    background: var(--uniba-green) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 8px 0;
}

.mb-2rem {
    margin-bottom: 2rem !important;
}

.topbar-left li,
.topbar-right li {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.topbar-left li i {
    margin-right: 8px;
    color: var(--uniba-brown);
}

.topbar-right li a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.topbar-right li a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--uniba-brown);
}

.pad {
    padding: 5px 15px;
}

/* Global Flex Utilities (Use these instead of overriding .row) */
.d-flex {
    display: flex;
}

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

.align-items-center {
    align-items: center;
}

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

.justify-content-between {
    justify-content: space-between;
}

/* Responsive Typography */
.hero-title-large {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
}

.section-title-large {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

/* Mobile Typography Overrides */
@media (max-width: 768px) {
    .hero-title-large {
        font-size: 32px !important;
    }

    .section-title-large,
    .contact-title {
        font-size: 28px !important;
    }

    .modern-hero h1 {
        font-size: 32px !important;
    }

    .modern-hero p {
        font-size: 16px !important;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}


/* Modern Landing Hero */
.modern-hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 60px;
    /* Add padding for content spacing */
    background-color: #004d26;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        height: auto;
        padding-top: 100px;
        /* Account for fixed header */
        padding-bottom: 50px;
    }
}

.modern-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 51, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.modern-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

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

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

.hero-tag {
    display: inline-block;
    background: var(--uniba-brown);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease backwards;
}

.modern-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.modern-hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-btns .btn {
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btns .btn-white {
    background: #fff;
    color: var(--uniba-green);
}

.hero-btns .btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

/* Quick Info Cards */
.info-row {
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

@media (max-width: 991px) {
    .info-row {
        margin-top: 30px;
        /* Remove negative margin on smaller screens */
    }

    .info-card {
        margin-bottom: 20px;
    }
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Vertical spacing for info cards in columns */
[class*="col-"]>.info-card {
    margin: 15px 0;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--uniba-green);
    box-shadow: 0 20px 50px rgba(0, 102, 51, 0.15);
}

.info-card i {
    font-size: 32px;
    color: var(--uniba-green);
    background: rgba(0, 102, 51, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-card h4 {
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.info-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

/* Timeline Specific Styles */
.timelineContent {
    display: none;
    padding: 35px 0;
}

.timelineContent.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.timeline-info-card {
    padding: 25px !important;
    gap: 20px !important;
    align-items: center !important;
    margin-bottom: 30px !important;
}

.timeline-info-card i {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
    flex-shrink: 0;
}

.timeline-label {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 700;
}

.timeline-date {
    font-size: 16px;
    color: var(--uniba-green);
    font-weight: 800;
    display: block;
}

/* Section Styling */
.section-premium {
    padding: 100px 0;
}

.section-head {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title-premium {
    font-size: 42px;
    font-weight: 800;
    color: var(--uniba-green);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle-premium {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.title-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--uniba-brown);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Features Premium */
.feature-premium-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.feature-premium-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    background: #f0fdf4;
    color: var(--uniba-green);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-premium-card:hover .feature-icon-wrap {
    background: var(--uniba-green);
    color: #fff;
    transform: rotate(10deg);
}

.feature-premium-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* International Section */
#internasional {
    background: linear-gradient(135deg, var(--uniba-green) 0%, #008542 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

#internasional .container {
    max-width: 800px;
}

#internasional h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

#internasional .lead {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

#internasional .btn-primary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--uniba-brown);
    border: 2px solid var(--uniba-brown);
    transition: all 0.3s ease;
}

/* Faculty Section */
#fakultas .thumbnail {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid var(--border-color);
}

#fakultas .thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--uniba-green);
}

#fakultas .thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#fakultas .thumbnail:hover img {
    transform: scale(1.05);
}

#fakultas .thumbnail .caption {
    padding: 25px 20px;
    background: #fff;
    text-align: center;
}

#fakultas .thumbnail .caption h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--uniba-green);
    margin: 0;
}

/* Biaya Kuliah Section */
#biaya .panel {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#biaya .panel-body h3 {
    color: var(--uniba-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--uniba-brown);
}

#biaya .pad {
    padding: 8px 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5px;
}

#biaya .pad:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Timeline Section */
#timeline .panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#timeline .panel-body h4 {
    color: var(--uniba-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

#timeline .panel-body strong {
    color: var(--uniba-brown);
    font-size: 16px;
    font-weight: 700;
}

/* Persyaratan Section */
#persyaratan .panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#persyaratan .panel-body strong {
    color: var(--uniba-green);
    font-size: 14px;
    font-weight: 600;
}

/* Beasiswa Section */
#beasiswa .panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#beasiswa .panel-body strong {
    color: var(--uniba-green);
    font-size: 14px;
    font-weight: 600;
}

/* FAQ Section Modern */
#faq .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

#faq .panel-heading {
    background: transparent;
    border: none;
    padding: 0;
}

#faq .panel-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: block;
    position: relative;
    padding: 20px 25px;
    padding-right: 50px;
    transition: all 0.3s ease;
}

#faq .panel-title a::after {
    content: '\f107';
    /* fa-angle-down */
    font-family: 'FontAwesome';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--uniba-green);
}

#faq .panel-title a:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

#faq .panel-title a:hover {
    color: var(--uniba-green);
}

/* Timeline Tabs */
.timelineTabs {
    margin-bottom: 40px;
}

.timelineTab {
    background: #fff;
    border: 2px solid var(--uniba-green);
    color: var(--uniba-green);
    padding: 12px 25px;
    margin: 0 8px 10px 0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.timelineTab:hover,
.timelineTab.active {
    background: var(--uniba-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 51, 0.3);
}

.timelineContent {
    display: none;
}

.timelineContent.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-box {
        padding: 30px 20px;
    }

    .hero-box h1 {
        font-size: 28px;
    }

    .hero-box p {
        font-size: 14px;
    }

    .sectionTitle h2 {
        font-size: 24px;
    }

    .whiteBg,
    .colorBg {
        padding: 50px 0;
    }

    #internasional {
        padding: 50px 0;
    }

    #internasional h2 {
        font-size: 24px;
    }

    #faq .faq-item {
        flex: 1 1 100%;
    }

    .timelineTab {
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }

    .courseBox,
    .featuresBox,
    .panel {
        margin-bottom: 20px;
    }
}

/* Navigation Modern Style */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

.sticky-header .header {
    padding: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.header_inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
}

.navbar-header,
.navbar-collapse {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-brand {
    height: auto !important;
    padding: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.navbar-nav {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.navbar-nav>li {
    float: none !important;
}

.navbar-nav>li:not(.apply_now)>a {
    padding: 25px 18px !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    color: #545454 !important;
    letter-spacing: 0.5px !important;
    position: relative;
}

.navbar-nav .caret,
.navbar-nav .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.navbar-nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--uniba-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav>li>a:hover::after,
.navbar-nav>li.active>a::after {
    width: 20px;
}

.navbar-nav>li>a:hover,
.navbar-nav>li.active>a {
    color: var(--uniba-green) !important;
    background-color: rgba(0, 102, 51, 0.05) !important;
    border-radius: 5px !important;
    transform: translateY(-1px) !important;
}

/* Dropdown Professional Style - Performance Optimized */


.apply_now {
    margin: 0 !important;
}

.apply_now a {
    background: var(--uniba-green) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    margin: 0 0 0 15px !important;
    box-shadow: 0 4px 15px rgba(0, 102, 51, 0.2);
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
}

.apply_now a:hover {
    background: var(--uniba-brown) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3) !important;
}


/* Footer Modern Style */
.footer-v1 {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #333 !important;
}

.footer-title {
    color: var(--uniba-green) !important;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--uniba-brown);
    border-radius: 2px;
}

@media (max-width: 767px) {
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.menuLink li {
    margin-bottom: 10px;
}

.menuLink li a {
    color: #666 !important;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.menuLink li a:hover {
    color: var(--uniba-green) !important;
    padding-left: 5px;
}

@media (max-width: 767px) {
    .menuLink li a:hover {
        padding-left: 0;
        transform: scale(1.05);
    }
}

.footer-address address {
    color: #666;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}

.btn-map {
    color: var(--uniba-green) !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-map:hover {
    color: var(--uniba-brown) !important;
}

.socialArea .list-inline-item a {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 51, 0.05);
    color: var(--uniba-green) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 51, 0.1);
}

.socialArea .list-inline-item a:hover {
    background: var(--uniba-green);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 51, 0.2);
}

.phone-number {
    color: var(--uniba-green) !important;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.footer-bottom {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
    font-size: 13px;
    color: #888;
}

/* Fix for mobile stacking borders if needed */
@media (max-width: 767px) {
    .menuFooter [class^="col-"] {
        margin-bottom: 2rem;
    }

    .menuFooter [class^="col-"]:last-child {
        margin-bottom: 0;
    }
}



/* Contact page styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 102, 51, 0.95) 0%, rgba(0, 133, 66, 0.95) 100%);
    padding: 60px 0 40px;
    color: #fff;
}

.contact-hero .contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-hero .contact-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

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

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.contact-info-card .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.contact-list li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-list li i {
    color: var(--uniba-green);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.contact-list a {
    color: var(--uniba-brown);
}

.social-links {
    margin-top: 12px;
}

.social-links .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--uniba-green);
    margin-right: 8px;
    transition: all .25s ease;
    text-decoration: none;
}

.social-links .social:hover {
    background: var(--uniba-brown);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form .form-control {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    font-size: 14px;
}

.contact-form label {
    font-weight: 600;
    font-size: 13px;
}

.contact-form .btn-primary {
    background: var(--uniba-green) !important;
    border-color: var(--uniba-green) !important;
    padding: 10px 22px;
    border-radius: 6px;
}

.contact-map iframe {
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    border: 0;
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 30px 0;
    }

    .contact-hero .contact-title {
        font-size: 24px;
    }

    .contact-card {
        padding: 18px;
    }
}

/* News & Article Cards */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 102, 51, 0.1);
    border-color: rgba(0, 102, 51, 0.1);
}

.news-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-card:hover .news-img-wrap img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--uniba-green);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-card-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--uniba-green);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-more {
    margin-top: auto;
    color: var(--uniba-green);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-more:hover {
    gap: 12px;
    color: var(--uniba-brown);
}

/* Blog / Post detail styles */
.post-hero {
    background: linear-gradient(135deg, rgba(0, 102, 51, 0.95) 0%, rgba(0, 133, 66, 0.95) 100%);
    padding: 60px 0 30px;
    color: #fff;
}

.breadcrumb-wrap .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-wrap .breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-wrap .breadcrumb li.active {
    color: #fff;
    opacity: 0.9;
}

.breadcrumb-wrap .breadcrumb>li+li::before {
    color: rgba(255, 255, 255, 0.5);
}

.post-hero-inner {
    padding: 10px 0 30px;
}

.post-hero-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.post-meta {
    margin-bottom: 10px;
}

.post-meta .meta-item {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 15px;
    font-size: 14px;
}

.post-meta .meta-item i {
    margin-right: 5px;
    color: var(--uniba-brown);
}

.post-content-section {
    padding-bottom: 70px;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.post-article .post-body {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
}

.post-article .post-body h2,
.post-article .post-body h3 {
    color: var(--uniba-green);
    margin-top: 25px;
    font-weight: 700;
}

.post-article .post-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.post-share {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-share .share-label {
    font-weight: 600;
    color: var(--text-light);
    margin-right: 8px;
}

.post-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--uniba-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-share .share-btn:hover {
    background: var(--uniba-green);
    color: #fff;
    transform: translateY(-3px);
}

.sidebar .widget {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
}

.widget-title {
    font-weight: 700;
    color: var(--uniba-green);
    margin-bottom: 12px;
}

.widget-contact {
    margin-bottom: 8px;
    color: var(--text-dark);
}

@media (max-width: 767px) {
    .post-title {
        font-size: 22px;
    }

    .post-hero-image {
        max-height: 220px;
    }
}

.faculty-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faculty-header-modern {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
    background: var(--uniba-green);
}

.faculty-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faculty-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0, 0.2, 1);
    transform-origin: center;
}

.faculty-card:hover .faculty-bg-img {
    transform: scale(1.12);
}

.faculty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 102, 51, 0.95) 0%, rgba(0, 102, 51, 0.4) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.faculty-card:hover .faculty-overlay {
    background: linear-gradient(90deg, rgba(0, 102, 51, 1) 0%, rgba(0, 102, 51, 0.2) 100%);
}

.faculty-content-wrap {
    position: relative;
    z-index: 3;
}

.faculty-name-modern {
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.faculty-card .prodi-grid {
    padding: 40px;
    margin-right: 0;
    margin-left: 0;
}

.prodi-grid .col-sm-6,
.prodi-grid .col-md-4 {
    margin-bottom: 25px;
}

.prodi-grid {
    gap: 20px;
}

.prodi-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.prodi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 51, 0.12);
    border-color: rgba(0, 102, 51, 0.2);
}

.prodi-thumb {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
}

.prodi-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    z-index: 1;
}

.prodi-card:hover .prodi-thumb::after {
    height: 80%;
    opacity: 1;
}

.prodi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    transform-origin: center;
}

.prodi-card:hover .prodi-thumb img {
    transform: scale(1.15);
}

.prodi-body {
    padding: 20px;
    text-align: center;
}

.prodi-name {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.prodi-card:hover .prodi-name {
    color: var(--uniba-green);
}

.prodi-tag {
    display: inline-block;
    background: #f0fdf4;
    color: #166534;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid #dcfce7;
    margin-top: 5px;
}

.faculty-card .alert-warning {
    border-radius: 12px;
    background-color: #fefce8;
    border-color: #fef08a;
    color: #854d0e;
    padding: 25px;
    margin: 0;
}

/* Standard Responsive Utilities */

/* Navbar Fixes */
@media (max-width: 991px) {
    .topbar {
        display: none !important;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

/* Image Fluidity */
img {
    max-width: 100%;
    height: auto;
}

/* Additional Utilities */
.hero-tag.transparent {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-bottom: 15px;
}

.contact-sub {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-sub {
        font-size: 16px;
    }

    .faculty-header-modern h3 {
        font-size: 20px;
    }
}

/* =========================================
   Modern Navbar Enhancements
   ========================================= */

/* Desktop Dropdown Animation */
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: none;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
    }


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

/* Dropdown Item Styling */
.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--uniba-green) !important;
    background-color: rgba(0, 102, 51, 0.05) !important;
    padding-left: 25px;
    border-left-color: var(--uniba-green);
}

/* Link Hover Effect */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--uniba-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
}

.navbar-nav .nav-link:hover {
    color: var(--uniba-green);
}

/* Mobile Navbar Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1000;
        border-radius: 0 0 15px 15px;
    }

    .navbar-nav .nav-item {
        padding: 8px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    }

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

    /* Ensure dropdowns inside mobile menu are clean */
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
        background: #f8fafc;
        margin-top: 5px;
    }
}