/* ================================================
   METI WEBSITE — GLOBAL DESIGN SYSTEM
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-dark:  #0a1628; /* Deep Navy */
    --primary:       #1e3a5f; /* Royal Blue */
    --primary-light: #2d5f8a; /* Sky Blue */
    --accent:        #00b4d8; /* Teal */
    --accent-glow:   #00cfff; /* Neon Teal */
    --gold:          #f0a500; /* Gold */
    --gold-light:    #ffc947; /* Light Gold */
    --surface:       #f0f4f8; /* Soft White */
    --surface-alt:   #e8edf3; /* Blue Grey */
    --text-dark:     #1a1a2e; /* Near Black */
    --text-muted:    #6b7b8d; /* Muted */
    --nav-bg: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #2d5f8a 100%);
    /* Placement Specific Colors mapped to global */
    --navy: #001f3f;
    --navy-light: #003366;
    --teal: #008080;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);

    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET ===== */
body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f0f4f8;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
    animation: pageReveal 0.8s ease-out forwards;
}

@keyframes pageReveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.bg-nav-gradient {
  background: var(--nav-bg);
  background-size: 200% 200%;
  animation: navGradient 10s ease infinite;
}
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e8edf3;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e3a5f, #00b4d8);
    border-radius: 4px;
}

/* ===== GLOBAL UTILITIES ===== */
.btn, .card, .glass-card, .achievement-card {
    transition: var(--transition-smooth) !important;
}

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

.shadow-premium {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: all 0.4s ease;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: white;
}

.btn-teal {
    background: linear-gradient(135deg, #008080 0%, #006666 100%) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.25) !important;
}
.btn-teal:hover {
    background: linear-gradient(135deg, #006666 0%, #004d4d 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 128, 128, 0.4) !important;
}

/* Section Title — Global */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px !important;
}
.section-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #f0a500);
    border-radius: 2px;
}

/* Shared Blog Layout */
.events .card {
    background-color: var(--surface);
    border: 0;
    padding: 0 30px;
    margin-bottom: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 8px 8px 0 0;
}

.events .card-img img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.events .card-body {
    z-index: 10;
    background: #ffffff;
    border-top: 4px solid var(--accent);
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    transition: var(--transition-smooth);
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.events .card-text {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.events .card:hover img {
    transform: scale(1.08);
}

.events .card:hover .card-body {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.15);
}

.events .card:hover .card-body .card-title a {
    color: var(--accent);
}

.sidebar-stack {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.latest-blog-sidebar, .blog-subscribe-card {
    background: var(--surface-alt);
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-premium);
}

.sidebar-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
}

.sidebar-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    color: var(--gold);
    font-size: 1.2rem;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #ffffff;
    border-left: 4px solid var(--primary-light);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(0, 180, 216, 0.05);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.1);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.8rem;
    font-weight: 600;
}

.notification-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.notification-title a:hover {
    color: var(--accent);
}

.notification-date {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--primary);
}

.view-all-btn {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.view-all-btn:hover {
    color: var(--primary);
    transform: translateX(5px);
}


.subscribe-title {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-title i {
    color: var(--accent);
}

.subscribe-text {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-input {
    width: 100%;
    border: 1px solid rgba(30, 58, 95, 0.18);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.subscribe-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
    outline: none;
}

.subscribe-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    background: var(--nav-bg);
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(10, 22, 40, 0.18);
}

.subscribe-status {
    margin: 14px 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    min-height: 1.3em;
}

.subscribe-status.success {
    color: #15803d;
}

.subscribe-status.error {
    color: #dc2626;
}

.blog-archive-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-article {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
    transition: var(--transition-smooth);
}

.blog-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(10, 22, 40, 0.12);
}

.blog-article.is-active {
    border-color: rgba(0, 180, 216, 0.45);
    box-shadow: 0 24px 52px rgba(0, 180, 216, 0.14);
}

.blog-article-media {
    min-height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.1), rgba(0, 180, 216, 0.08));
}

.blog-article-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.blog-article-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.blog-article-subtitle {
    margin: 0;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-article-title {
    margin: 0;
    color: var(--primary-dark);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-article-meta i {
    color: var(--accent);
}

.blog-article-description {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.blog-article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

.blog-action-btn {
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 999px;
    background: #f8fbfd;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.blog-action-btn:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 22, 40, 0.08);
}

.blog-action-btn.is-liked {
    background: rgba(240, 165, 0, 0.12);
    border-color: rgba(240, 165, 0, 0.35);
    color: #9a5a00;
}

.blog-action-btn.is-current {
    background: rgba(0, 180, 216, 0.12);
    border-color: rgba(0, 180, 216, 0.35);
    color: var(--accent);
}

.blog-action-count {
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.blog-comments-panel {
    margin-top: 36px;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
}

.blog-comments-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.12);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-comments-title {
    margin: 0;
    color: var(--primary-dark);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
}

.blog-comments-target {
    margin: 12px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-comments-count {
    margin: 28px 0 16px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.blog-comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-comment-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fbfd;
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.blog-comment-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-bg);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.blog-comment-body {
    flex: 1;
}

.blog-comment-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 14px;
}

.blog-comment-name {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.blog-comment-time {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.blog-comment-message {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-wrap;
}

.blog-comment-empty {
    padding: 22px;
    border-radius: 18px;
    background: rgba(232, 237, 243, 0.6);
    border: 1px dashed rgba(30, 58, 95, 0.16);
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-comment-form-card {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.blog-comment-form-title {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-comment-form-text {
    margin: 0 0 18px;
    color: var(--text-muted);
}

.blog-comment-input,
.blog-comment-textarea {
    width: 100%;
    border: 1px solid rgba(30, 58, 95, 0.16);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #ffffff;
    transition: var(--transition-smooth);
}

.blog-comment-textarea {
    min-height: 150px;
    resize: vertical;
}

.blog-comment-input:focus,
.blog-comment-textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

.blog-comment-submit {
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    background: var(--nav-bg);
    color: #ffffff;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.blog-comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10, 22, 40, 0.16);
}

.blog-comment-alert {
    margin-bottom: 16px;
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .sidebar-stack {
        position: relative;
        top: 0;
    }

    .blog-article {
        grid-template-columns: 1fr;
    }

    .blog-article-image {
        min-height: 240px;
    }

    .blog-comments-panel {
        padding: 24px 20px;
    }
}

@media (max-width: 575.98px) {
    .blog-article-content {
        padding: 22px 18px;
    }

    .blog-article-actions {
        gap: 10px;
    }

    .blog-action-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-comment-item {
        flex-direction: column;
    }
}

/* Shared Top Tabs Banner */
.top-tabs-banner {
    position: relative;
    width: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 220px;
    height: 35vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.top-tabs-banner-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.top-tabs-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10, 22, 40, 0.82) 10%, rgba(10, 22, 40, 0.42) 52%, rgba(0, 180, 216, 0.18) 100%);
}

.top-tabs-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
}

.top-tabs-title {
    max-width: 760px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
}

.top-tabs-actions {
    max-width: 860px;
}

.top-tab {
    position: relative;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-tab::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: transform 0.3s ease;
}

.top-tab:hover::after,
.top-tab.active::after {
    transform: scaleX(1);
}

.top-tab:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.top-tab.active {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.9), rgba(30, 58, 95, 0.92));
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
}

.tab-content-custom {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 767.98px) {
    .top-tabs-banner {
        min-height: 260px;
    }

    .top-tabs-banner-image {
        min-height: 260px;
    }

    .top-tabs-content {
        padding: 20px 16px;
    }

    .top-tabs-title {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .top-tab {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: linear-gradient(135deg, #ffffff 0%, #e8edf3 50%, #dce4f0 100%);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #00b4d8, #1e3a5f, #f0a500) 1;
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-60px); }
  100% { opacity: 1; transform: translateY(0); }
}



.title-text {
  margin-left: 50px;
  animation: textDrop 1s ease forwards;
}




.language-switch button {
  border: none;
  background: linear-gradient(135deg, #1e3a5f, #2d5f8a);
  color: white;
  padding: 4px 12px;
  margin-left: 5px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.language-switch button:hover {
  background: linear-gradient(135deg, #00b4d8, #1e3a5f);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

/* Date Time */
.datetime {
  font-size: 14px;
  color: #6b7b8d;
  font-weight: 500;
}
#currentDate { display: inline-block; }
#currentTime {
  font-weight: 700;
  color: #1e3a5f;
}

/* Logo */
.logo img {
  width: 120px;
  transition: all 0.4s ease;
  cursor: pointer;
  animation: logoDrop 0.8s ease forwards;
}
.logo img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 8px 16px rgba(0, 180, 216, 0.25));
}

/* Title */
.title-text h1 {
  font-size: 18px;
  font-weight: 800;
  color: #1e3a5f;
  margin: 0;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.title-text h1::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, #00b4d8, #f0a500);
  transition: 0.4s ease;
  border-radius: 2px;
}
.title-text h1:hover::after { width: 100%; }
.title-text h1:hover { color: #0a1628; }

/* Subtitle */
.subtitle {
  font-size: 12px;
  color: #6b7b8d;
  margin: 2px 0;
  font-weight: 500;
  transition: all 0.3s ease;
}
.subtitle:hover {
  color: #1a1a2e;
  transform: translateX(4px);
}

/* METI Badge */
.meti {
  font-size: 13px;
  font-weight: 700;
  color: #1e3a5f;
  margin-top: 6px;
  background: linear-gradient(135deg, #e8f4fd, #d0e8f7);
  padding: 5px 14px;
  display: inline-block;
  border-radius: 8px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: all 0.3s ease;
}
.meti:hover {
  background: linear-gradient(135deg, #1e3a5f, #00b4d8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
  border-color: transparent;
}

/* Mobile Top Bar */
@media (max-width: 768px) {
  .logo img { width: 70px; }
  .title-text h1 { font-size: 14px; }
  .subtitle { font-size: 10px; }
  .meti { font-size: 10px; }
  .title-text { margin-left: 15px; }
}

@keyframes logoDrop {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes textDrop {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================================================
   NAVBAR
   ================================================ */
.nav-container {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #2d5f8a 100%);
  background-size: 200% 200%;
  animation: navGradient 10s ease infinite;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3);
  border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}

@keyframes navGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Nav Links */
.nav-container .nav-link {
  color: #e0e8f0 !important;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 14px !important;
  border-radius: 6px;
  position: relative;
}
.nav-container .nav-link:hover {
  color: #ffc947 !important;
  background: rgba(255, 255, 255, 0.08);
}
.nav-container .navbar-nav { gap: 4px; }

/* Icon spacing */
.nav-link i, .dropdown-item i {
  margin-right: 6px;
  font-size: 13px;
  opacity: 0.85;
}
.dropdown-item:hover i { opacity: 1; }

/* Dropdown Arrow */
.nav-container .dropdown-toggle::after {
  border-top-color: #e0e8f0;
  transition: 0.3s;
}
.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  border-top-color: #ffc947;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(10, 22, 40, 0.2);
  background: #ffffff;
  padding: 8px;
  overflow: hidden;
}

/* Hover Dropdown (Desktop Only) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    pointer-events: none;
    margin-top: 0;
  }
}

/* Dropdown Items */
.dropdown-item {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  transition: all 0.25s ease;
}
.dropdown-item:hover {
  background: linear-gradient(135deg, #1e3a5f, #00b4d8);
  color: #ffffff;
  transform: translateX(4px);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: linear-gradient(180deg, #0a1628 0%, #1e3a5f 100%);
  color: #e0e8f0;
  padding: 70px 20px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #f0a500, #00b4d8);
}



.footer-section h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #00b4d8;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #f0a500;
  border-radius: 2px;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  line-height: 1.9;
  color: #b0c4d8;
}



.footer-section ul li a {
  color: #b0c4d8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #ffc947;
  transform: translateX(5px);
}

/* Footer content icons */
.footer-section p i,
.footer-section li a i {
  margin-right: 8px;
  color: #00b4d8;
  font-size: 13px;
  width: 16px;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.follow-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffc947;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom p {
  color: #6b7b8d;
  font-size: 13px;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  margin: 0 10px;
  color: #e0e8f0;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #0a1628;
  background: #00b4d8;
  border-color: #00b4d8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-bottom p {
    font-size: 12px;
  }
}

/* ================================================
   ALUMNI AUTH SECTION (Login/Signup)
   ================================================ */
.alumni-auth {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d5f8a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.alumni-auth::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.alumni-auth::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.alumni-auth .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.alumni-auth .section-title,
.ask-us .section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alumni-auth .section-title::after,
.ask-us .section-title::after {
  display: none;
}

.alumni-auth .section-subtitle,
.ask-us .section-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #b0c4d8;
  font-weight: 300;
}

/* Auth Form — Glassmorphism */
.auth-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-form input {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: all 0.3s ease;
}

.auth-form input::placeholder {
  color: #8ca0b3;
}

.auth-form input:focus {
  outline: none;
  border-color: #00b4d8;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.auth-form button {
  background: linear-gradient(135deg, #f0a500, #ffc947);
  color: #0a1628;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  width: 100%;
}

.auth-form button:hover {
  background: linear-gradient(135deg, #ffc947, #f0a500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 165, 0, 0.4);
}

/* ================================================
   ASK US SECTION (Index Page - Inquiry Form)
   ================================================ */
.ask-us {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d5f8a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.ask-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.ask-us::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ask-us .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Inquiry Form — Glassmorphism */
.inquiry-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #8ca0b3;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #00b4d8;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.inquiry-form button {
  background: linear-gradient(135deg, #f0a500, #ffc947);
  color: #0a1628;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.inquiry-form button:hover {
  background: linear-gradient(135deg, #ffc947, #f0a500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 165, 0, 0.4);
}

/* Google Map */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .alumni-auth,
  .ask-us {
    padding: 60px 20px;
  }

  .alumni-auth .section-title,
  .ask-us .section-title {
    font-size: 32px;
  }

  .alumni-auth .section-subtitle,
  .ask-us .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .auth-form,
  .inquiry-form {
    padding: 25px;
  }
}
