/* Insight 2026 styles extracted from welcome.blade.php */
.navbar-professional {
    /* Brighter light green */
    background-color: #90EE90;
    margin-bottom: 0 !important;
}
.navbar-no-gap .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.navbar-no-gap {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
}
.navbar-professional .nav-link {
    color: var(--bs-success-text-emphasis);
    padding: .5rem .75rem;
    border-radius: .5rem;
    transition: background-color .15s ease, color .15s ease;
    font-size: 0.95rem;
}
.navbar-professional .nav-link:hover {
    background-color: rgba(var(--bs-success-rgb), .12);
    color: var(--bs-success-text-emphasis);
}
.navbar-professional .navbar-brand span {
    color: var(--bs-success-text-emphasis);
}
.navbar-professional .navbar-brand img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 1200px) {
    .navbar-professional .nav-link { padding: .5rem 0.5rem; font-size: 0.85rem; }
}
@media (max-width: 992px) {
    .navbar-professional .navbar-brand span { display: none; }
    .navbar-professional .nav-link { padding: .75rem 0; font-size: 1rem; }
    .navbar-professional .navbar-nav { margin-top: 1rem; }
}
@media (max-width: 480px) {
    .navbar-professional .navbar-brand img { height: 30px; }
    .navbar-professional .nav-link { padding: 0.5rem 0; font-size: 0.9rem; }
    .navbar-professional .btn-success { font-size: 0.85rem; padding: 0.4rem 0.8rem; }
}

/* Hero section with background */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}
.hero-section.hero-with-image {
    background-image: url('../assets/bandung-ecopark.jpg');
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #90EE90;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}
.hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content .subtitle { font-size: 1.3rem; }
}
@media (max-width: 992px) {
    .hero-section { min-height: auto; padding: 4rem 0; }
    .hero-content { padding: 2rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
    .hero-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .hero-section { padding: 3rem 0; }
    .hero-content { padding: 1.5rem; }
    .hero-content h1 { font-size: 1.8rem; margin-bottom: 1rem; }
    .hero-content .subtitle { font-size: 1rem; margin-bottom: 1rem; }
    .hero-content p { font-size: 0.9rem; line-height: 1.6; }
}
@media (max-width: 480px) {
    .hero-section { padding: 2rem 0; }
    .hero-content { padding: 1rem; max-width: 100%; }
    .hero-content h1 { font-size: 1.3rem; margin-bottom: 0.75rem; }
    .hero-content .subtitle { font-size: 0.85rem; margin-bottom: 0.75rem; }
    .hero-content p { font-size: 0.75rem; line-height: 1.5; }
}

/* Partner Logos (responsive) */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-direction: row; /* enforce horizontal on larger screens */
    flex-wrap: nowrap;    /* prevent wrapping so logos stay in a row */
    margin-bottom: 2rem;
}

/* Ensure desktop always stays horizontal in case of other overrides */
@media (min-width: 769px) {
    .partner-logos { flex-direction: row; flex-wrap: nowrap; }
}

.partner-logo-wrap {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.partner-logo-wrap:hover {
    transform: scale(1.08) translateY(-8px);
}

.partner-logo {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    /* On tablet and smaller screens, stack logos vertically for better reading */
    .partner-logos { gap: 1rem; flex-direction: column; align-items: center; }
    .partner-logo-wrap { width: 140px; height: 140px; padding: 16px; margin: 0.5rem 0; }
    .partner-logo { max-height: 90px; }
}

@media (max-width: 480px) {
    /* Mobile: display logos in a responsive 3-column grid (2 rows for 6 logos) */
    .partner-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        justify-items: center;
        align-items: center;
        width: 100%;
    }

    .partner-logo-wrap {
        width: 100%;
        max-width: 110px;
        padding: 10px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-logo { max-height: 70px; width: auto; }
}

/* Call for Papers section with background */
.call-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    overflow: hidden;
}
.call-section.call-with-image {
    background-image: url('../assets/call-for-paper.jpg');
}
.call-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}
.call-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #90EE90;
}
.call-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}
@media (max-width: 1200px) {
    .call-content h2 { font-size: 2.5rem; }
    .call-content p { font-size: 1rem; }
}
@media (max-width: 992px) {
    .call-section { padding: 3rem 0; }
    .call-content { padding: 2rem 1.5rem; }
    .call-content h2 { font-size: 2rem; }
    .call-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .call-section { padding: 2.5rem 0; }
    .call-content { padding: 1.5rem 1rem; width: 95%; }
    .call-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .call-content p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .call-section { padding: 2rem 0; }
    .call-content { padding: 1rem; width: 100%; max-width: 100%; }
    .call-content h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .call-content p { font-size: 0.75rem; line-height: 1.5; margin-bottom: 1rem; }
}

/* Community Service section with background */
.service-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    overflow: hidden;
}
.service-section.service-with-image {
    background-image: url('../assets/comunity-service.jpg');
}
.service-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 950px;
    width: 100%;
    box-sizing: border-box;
}
.service-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #90EE90;
}
.service-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}
@media (max-width: 1200px) {
    .service-content h2 { font-size: 2.5rem; }
    .service-content p { font-size: 1rem; }
}
@media (max-width: 992px) {
    .service-section { padding: 3rem 0; }
    .service-content { padding: 2rem 1.5rem; }
    .service-content h2 { font-size: 2rem; }
    .service-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .service-section { padding: 2.5rem 0; }
    .service-content { padding: 1.5rem 1rem; width: 95%; }
    .service-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .service-content p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .service-section { padding: 2rem 0; }
    .service-content { padding: 1rem; width: 100%; max-width: 100%; }
    .service-content h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .service-content p { font-size: 0.75rem; line-height: 1.5; margin-bottom: 1rem; }
}

/* Student Competition section with background */
.competition-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f5132 0%, #1a6f47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.competition-section.competition-with-image {
    background: linear-gradient(135deg, #0f5132 0%, #1a6f47 100%);
}
#student-competitions.competition-with-image {
    background: url('../assets/student-competition.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#business-competition.competition-with-image {
    background: linear-gradient(135deg, #0f5132 0%, #1a6f47 100%);
}
.competition-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 950px;
    width: 100%;
    box-sizing: border-box;
}
.competition-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #90EE90;
    text-align: center;
}
.competition-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}
@media (max-width: 1200px) {
    .competition-content h2 { font-size: 2.5rem; }
    .competition-content p { font-size: 1rem; }
}
@media (max-width: 992px) {
    .competition-section { padding: 0; margin: 0; }
    .competition-content { padding: 2rem 1.5rem; }
    .competition-content h2 { font-size: 2rem; }
    .competition-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .competition-section { padding: 0; margin: 0; }
    .competition-content { padding: 1.5rem 1rem; width: 95%; }
    .competition-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .competition-content p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .competition-section { padding: 0; margin: 0; }
    .competition-content { padding: 1rem; width: 100%; max-width: 100%; }
    .competition-content h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .competition-content p { font-size: 0.75rem; line-height: 1.5; margin-bottom: 1rem; }
}

/* Cultural Exchange section with background */
.exchange-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    overflow: hidden;
}
.exchange-section.exchange-with-image {
    background-image: url('../assets/cultural-exchange.jpg');
}
.exchange-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 950px;
    width: 100%;
    box-sizing: border-box;
}
.exchange-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #90EE90;
}
.exchange-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}
@media (max-width: 1200px) {
    .exchange-content h2 { font-size: 2.5rem; }
    .exchange-content p { font-size: 1rem; }
}
@media (max-width: 992px) {
    .exchange-section { padding: 3rem 0; }
    .exchange-content { padding: 2rem 1.5rem; }
    .exchange-content h2 { font-size: 2rem; }
    .exchange-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .exchange-section { padding: 2.5rem 0; }
    .exchange-content { padding: 1.5rem 1rem; width: 95%; }
    .exchange-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .exchange-content p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .exchange-section { padding: 2rem 0; }
    .exchange-content { padding: 1rem; width: 100%; max-width: 100%; }
    .exchange-content h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .exchange-content p { font-size: 0.75rem; line-height: 1.5; margin-bottom: 1rem; }
}

/* Workshop section with background */
.workshop-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    overflow: hidden;
}

/* Remove default page margins to avoid white gap under footer */
html, body {
    margin: 0;
    padding: 0;
}

/* Remove any gap between sections */
section {
    margin: 0;
    padding: 0;
}

.workshop-section.workshop-with-image {
    background-image: url('../assets/international-workshop.jpg');
}
.workshop-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}
.workshop-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #90EE90;
}
.workshop-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}
@media (max-width: 1200px) {
    .workshop-content h2 { font-size: 2.5rem; }
    .workshop-content p { font-size: 1rem; }
}
@media (max-width: 992px) {
    .workshop-section { padding: 3rem 0; }
    .workshop-content { padding: 2rem 1.5rem; }
    .workshop-content h2 { font-size: 2rem; }
    .workshop-content p { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .workshop-section { padding: 2.5rem 0; }
    .workshop-content { padding: 1.5rem 1rem; width: 95%; }
    .workshop-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .workshop-content p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .workshop-section { padding: 2rem 0; }
    .workshop-content { padding: 1rem; width: 100%; max-width: 100%; }
    .workshop-content h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .workshop-content p { font-size: 0.75rem; line-height: 1.5; margin-bottom: 1rem; }
}

/* Footer styles */
.site-footer {
    background-color: #90EE90; /* light green sama dengan navbar */
}
.site-footer {
    margin-bottom: 0;
    padding-bottom: 0;
}
.site-footer .container {
    padding-bottom: 0;
}
.site-footer {
    position: relative;
    z-index: 1;
}
.site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px; /* extend slightly below to cover white gap */
    height: 8px;
    background: #90EE90;
    display: block;
}
.site-footer a:hover { text-decoration: underline; }
.site-footer h5, .site-footer h6 { color: #1e293b; }
.site-footer p, .site-footer .small { color: #1e293b; }
.site-footer a { color: #1e293b; }

@media (max-width: 768px) {
    .site-footer .row { flex-direction: column; }
    .site-footer .col-md-6,
    .site-footer .col-md-3 { width: 100%; margin-bottom: 2rem; }
    .site-footer h5,
    .site-footer h6 { font-size: 1rem; margin-bottom: 1rem; }
    .site-footer p { font-size: 0.9rem; }
    .site-footer .small { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .site-footer .py-5 { padding: 1.5rem 0; }
    .site-footer .container { padding-left: 1rem; padding-right: 1rem; width: 100%; box-sizing: border-box; }
    .site-footer h5,
    .site-footer h6 { font-size: 0.95rem; margin-bottom: .5rem; }
    .site-footer p { font-size: 0.85rem; line-height:1.45; margin-bottom: .5rem; }
    .site-footer .row { gap: 0.75rem; justify-content: center; }
    .site-footer .col-md-6,
    .site-footer .col-md-3 { padding-left: 0; padding-right: 0; margin-left: auto; margin-right: auto; max-width: 100%; }
    .site-footer ul { padding-left: 0; margin: 0; }
    .site-footer ul li { margin-bottom: .5rem; display: block; text-align: center; }
    .site-footer a { display: inline-block; padding: 2px 0; }
    .site-footer hr { margin: .5rem 0 1rem; border-color: rgba(255,255,255,0.08); }
    .site-footer .d-flex { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
    .site-footer .container, .site-footer .row, .site-footer p, .site-footer h5, .site-footer h6 { text-align: center; }
}

/* Sidebar for authenticated users */
.app-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    background: #0b5d0b;
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 1030;
}
.app-sidebar .nav-link { color: rgba(255,255,255,0.95); padding: .6rem 0; }
.app-sidebar .nav-link:hover { color: #e6f6e6; text-decoration: none; }
.app-sidebar .sidebar-header { border-bottom: 1px solid rgba(255,255,255,0.06); }
.app-sidebar .sidebar-footer { margin-top: auto; padding: 1rem 0 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); }

/* Shift page content when sidebar is present */
.content-with-sidebar { margin-left: 240px; }

@media (max-width: 992px) {
    .app-sidebar { position: relative; width: 100%; height: auto; }
    .content-with-sidebar { margin-left: 0; }
}

/* Admin page: hide any navbar if present */
.admin-page .navbar { display: none !important; }

/* Auth Pages Styling */
.auth-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #90EE90 0%, #0b5d0b 100%);
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: transparent;
    position: relative;
    margin: 0;
    padding-top: calc(76px + 2rem);
}

@media (max-width: 992px) {
    .auth-container {
        padding-top: calc(66px + 2rem);
    }
}

.auth-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/bandung-ecopark.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.auth-card {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, #90EE90 0%, #6fb86f 100%);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    color: #0b5d0b;
}

.auth-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0b5d0b;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: rgba(11, 93, 11, 0.8);
    margin-bottom: 0;
}

.auth-form {
    padding: 2.5rem 2rem;
}

.auth-form .form-label {
    color: #0b5d0b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #90EE90;
    box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.25);
}

.auth-form .btn-success {
    background: linear-gradient(135deg, #0b5d0b 0%, #1a7a1a 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .btn-success:hover {
    background: linear-gradient(135deg, #1a7a1a 0%, #0b5d0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 93, 11, 0.3);
}

.auth-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.auth-form .form-check-input:checked {
    background-color: #0b5d0b;
    border-color: #0b5d0b;
}

.auth-form a {
    color: #0b5d0b;
}

.auth-form a:hover {
    color: #1a7a1a;
}

@media (max-width: 576px) {
    .auth-card {
        border-radius: 15px;
        margin: 1rem;
    }
    
    .auth-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .auth-logo {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-subtitle {
        font-size: 0.85rem;
    }
    
    .auth-form {
        padding: 2rem 1.5rem;
    }
    
    .auth-footer {
        padding: 1.25rem 1.5rem;
    }
}

/* ========================================
   ADMIN NAVBAR & LAYOUT STYLES
   ======================================== */

/* Admin Body */
.admin-body {
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Admin Navbar */
.admin-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e3e6ea;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1040;
}

.admin-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 1.5rem;
}

/* Left Section */
.admin-navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #495057;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-sidebar-toggle:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-brand:hover {
    opacity: 0.8;
}

.admin-brand-logo {
    height: 45px;
    width: auto;
}

.admin-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.admin-brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b5d0b;
}

.admin-brand-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* Center Section - Search */
.admin-navbar-center {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.admin-search {
    position: relative;
    width: 100%;
}

.admin-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
}

.admin-search .form-control {
    padding: 0.6rem 1rem 0.6rem 2.75rem;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.admin-search .form-control:focus {
    background: #ffffff;
    border-color: #90EE90;
    box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.15);
}

/* Right Section */
.admin-navbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #495057;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-nav-btn:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.admin-nav-btn .badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    border-radius: 10px;
}

/* User Button */
.admin-user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-user-btn:hover {
    background: #e9ecef;
}

.admin-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90EE90 0%, #0b5d0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.admin-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.admin-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

.admin-user-role {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Dropdown Menu */
.admin-dropdown-menu {
    min-width: 280px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.admin-dropdown-menu .dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.admin-user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90EE90 0%, #0b5d0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.admin-dropdown-menu .dropdown-item {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.admin-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
}

.admin-dropdown-menu .dropdown-item i {
    font-size: 1.1rem;
}

/* Sidebar (Mobile/Tablet) */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

.admin-sidebar.active {
    left: 0;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.admin-sidebar-header h5 {
    color: #0b5d0b;
    font-weight: 700;
    margin: 0;
}

.admin-sidebar-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-sidebar-close:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.admin-sidebar-nav {
    padding: 1rem;
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: #495057;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-sidebar-link:hover {
    background: #f8f9fa;
    color: #0b5d0b;
}

.admin-sidebar-link.active {
    background: linear-gradient(135deg, #90EE90 0%, #6fb86f 100%);
    color: #0b5d0b;
    font-weight: 600;
}

.admin-sidebar-link i {
    font-size: 1.2rem;
}

.admin-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1045;
}

.admin-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Admin Container */
.admin-container {
    margin-top: 70px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.admin-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .admin-brand-text {
        display: none;
    }
    
    .admin-navbar-center {
        display: none !important;
    }
    
    .admin-user-info {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .admin-navbar-content {
        padding: 0 1rem;
    }
    
    .admin-brand-logo {
        height: 35px;
    }
    
    .admin-container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 575px) {
    .admin-navbar {
        height: 60px;
    }
    
    .admin-navbar-content {
        height: 60px;
    }
    
    .admin-container {
        margin-top: 60px;
        padding: 1rem;
    }
    
    .admin-brand-logo {
        height: 32px;
    }
    
    .admin-sidebar-toggle,
    .admin-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* ========================================
   USER NAVBAR & LAYOUT STYLES
   ======================================== */

/* User Body */
.user-body {
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* User Navbar - Similar to admin but different colors */
.user-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e3e6ea;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1040;
}

.user-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 1.5rem;
}

.user-navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #495057;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-sidebar-toggle:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.user-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.user-brand:hover {
    opacity: 0.8;
}

.user-brand-logo {
    height: 45px;
    width: auto;
}

.user-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b5d0b;
}

.user-brand-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.user-navbar-center {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.user-search {
    position: relative;
    width: 100%;
}

.user-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
}

.user-search .form-control {
    padding: 0.6rem 1rem 0.6rem 2.75rem;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.user-search .form-control:focus {
    background: #ffffff;
    border-color: #90EE90;
    box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.15);
}

.user-navbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #495057;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-nav-btn:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.user-nav-btn .badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    border-radius: 10px;
}

.user-user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-user-btn:hover {
    background: #e9ecef;
}

.user-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90EE90 0%, #0b5d0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.user-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

.user-user-role {
    font-size: 0.75rem;
    color: #6c757d;
}

.user-dropdown-menu {
    min-width: 280px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.user-dropdown-menu .dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.user-user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90EE90 0%, #0b5d0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.user-dropdown-menu .dropdown-item {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.user-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
}

.user-dropdown-menu .dropdown-item i {
    font-size: 1.1rem;
}

.user-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

.user-sidebar.active {
    left: 0;
}

.user-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.user-sidebar-header h5 {
    color: #0b5d0b;
    font-weight: 700;
    margin: 0;
}

.user-sidebar-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-sidebar-close:hover {
    background: #e9ecef;
    color: #0b5d0b;
}

.user-sidebar-nav {
    padding: 1rem;
}

.user-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: #495057;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.user-sidebar-link:hover {
    background: #f8f9fa;
    color: #0b5d0b;
}

.user-sidebar-link.active {
    background: linear-gradient(135deg, #90EE90 0%, #6fb86f 100%);
    color: #0b5d0b;
    font-weight: 600;
}

.user-sidebar-link i {
    font-size: 1.2rem;
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1045;
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-container {
    margin-top: 70px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.user-content {
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .user-brand-text {
        display: none;
    }
    
    .user-navbar-center {
        display: none !important;
    }
    
    .user-user-info {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .user-navbar-content {
        padding: 0 1rem;
    }
    
    .user-brand-logo {
        height: 35px;
    }
    
    .user-container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 575px) {
    .user-navbar {
        height: 60px;
    }
    
    .user-navbar-content {
        height: 60px;
    }
    
    .user-container {
        margin-top: 60px;
        padding: 1rem;
    }
    
    .user-brand-logo {
        height: 32px;
    }
    
    .user-sidebar-toggle,
    .user-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* ========================================
    CALL FOR PAPERS CAROUSEL & TIMELINE PIPELINE STYLES
   ======================================== */

#callForPapersCarousel {
    position: relative;
    padding: 0 80px;
}

#callForPapersCarousel .carousel-item {
    transition: opacity 0.6s ease-in-out !important;
}

#callForPapersCarousel .carousel-control-prev,
#callForPapersCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
}

#callForPapersCarousel .carousel-control-prev {
    left: 10px;
}

#callForPapersCarousel .carousel-control-next {
    right: 10px;
}

#callForPapersCarousel .carousel-control-prev-icon,
#callForPapersCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.7);
    border-radius: 50%;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#callForPapersCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#callForPapersCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.1);
}

/* Timeline Pipeline Styles */
.timeline-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(134, 239, 172, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.step-content {
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}

.pipeline-line {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(134, 239, 172, 0.3);
    background: linear-gradient(90deg, #86efac 0%, #22c55e 100%);
    flex-shrink: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.8);
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #86efac;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
    opacity: 1;
    box-shadow: 0 0 15px rgba(134, 239, 172, 0.8);
}

@media (max-width: 1024px) {
    .timeline-pipeline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .pipeline-line {
        width: 4px;
        height: 80px;
        background: linear-gradient(180deg, #86efac 0%, #22c55e 100%);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        max-width: 220px !important;
    }
    
    .step-content h4 {
        font-size: 1.1rem !important;
    }
    
    .step-content p {
        font-size: 0.85rem !important;
    }
}

/* Footer Styles */
footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

footer .social-links a:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}


