/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    background: #fff;
    color: #111;
}

/* ================= NAVBAR ================= */
.navbar {
    top: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    z-index: 1000;
    overflow: visible;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    margin-left: 25px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px;
}

/* ================= MEGA MENU ================= */
.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: calc(100vw - 40px);
    background: #fff;
    display: none;
    padding: 30px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 40px;
}

.has-mega:hover .mega-menu {
    display: flex;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #000;
}

.mega-column a {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
}

.mega-column a:hover {
    color: #007bff;
}

/* ================= HERO ================= */
.hero-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
}

/* ================= MAIN CONTENT ================= */
.site-content {
    flex: 1;
}

/* ================= SECTION GLOBAL ================= */
section {
    padding: 80px 20px;
}

/* ================= SERVICES & NEWS ================= */
.services-section,
.news-section {
    text-align: center;
}

.services-container,
.news-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card,
.news-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* ================= CORPORATE SECTION ================= */
.corporate-section {
    background: #f5f7fa;
}

.corporate-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.corporate-text {
    flex: 1;
}

.corporate-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.corporate-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0056b3;
}

.corporate-image {
    flex: 1;
}

.corporate-image img {
    width: 100%;
    border-radius: 12px;
}

/* ================= STATISTICS ================= */
.stats-section {
    background: #111;
    color: #fff;
}

.stats-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1 1 220px;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #00aaff;
}

.stat-box p {
    color: #ccc;
}

/* ================= FADE IN ================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================= FOOTER ================= */
.site-footer {
    background: #1f1f1f;
    color: #ddd;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: #007bff;
}

.footer-bottom {
    background: #151515;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    color: #aaa;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: .3s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 15px;
        display: none;
        transform: none;
    }

    .has-mega.active .mega-menu {
        display: block;
    }

    .corporate-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .stats-wrapper {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        padding: 40px 20px;
    }
}

/* ================= HERO PERTAMINA STYLE ================= */
.hero-section {
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 8%;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e5e5e5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 14px 30px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero-content {
        margin: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ================= MICRO INTERACTION ================= */

/* Card base */
.service-card,
.news-card {
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Hover naik */
.service-card:hover,
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image inside card */
.service-card img,
.news-card img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Image zoom halus */
.service-card:hover img,
.news-card:hover img {
    transform: scale(1.08);
}

/* ================= HERO INDICATORS ================= */

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-indicators .indicator.active {
    width: 28px;
    border-radius: 20px;
    background: #ffffff;
}
/* ================= HERO INDICATOR ================= */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

/* ================= NAVBAR DYNAMIC FIX ================= */
.navbar {
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar-transparent {
    background: transparent;
    box-shadow: none;
}

.navbar-solid {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* Navbar solid on scroll */
.navbar.transparent {
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
}

.navbar.solid {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

/* Burger menu mobile */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Mobile nav */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.3s;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .mega-menu {
        position: static;
        display: none;
    }
    .has-mega.active .mega-menu {
        display: block;
    }
}

/* ================= PREMIUM CARD INTERACTION ================= */

/* Container rapi */
.services-container,
.news-container {
    align-items: stretch;
}

/* CARD BASE */
.service-card,
.news-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}

/* IMAGE */
.service-card img,
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.45s ease;
}

/* TEXT */
.service-card h3,
.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
}

.service-card p,
.news-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover,
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM ON HOVER */
.service-card:hover img,
.news-card:hover img {
    transform: scale(1.08);
}

/* ================= CARD INTERACTION ================= */

/* SERVICE CARD */
.service-card {
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* NEWS CARD */
.news-card {
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= NEWS SECTION ================= */

.news-section {
    background: #f8f9fb;
}

.news-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;

    max-width: 1200px;
    margin: 0 auto;
}


/* Card */
.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image */
.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 18px 20px 10px;
    line-height: 1.4;

    /* max 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #555;
    margin-top: auto;
}

.services-container {
    display: flex;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
}

/* ================= CARD PREMIUM ================= */
.service-card,
.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    text-align: left;
}

.service-card img,
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card h3,
.news-card h3 {
    font-size: 1.2rem;
    margin: 20px 20px 10px;
    color: #111;
}

.service-card p,
.news-card p {
    margin: 0 20px 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin: 0 20px 25px;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover card efek */
.service-card,
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Link card lebih interaktif */
.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #0056b3;
    text-decoration: underline;
}


/* ================= STICKY HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.3s ease;
}

/* Saat scroll */
.header.scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Menu Active */
.nav-links li a.active {
    color: #007bff;
    font-weight: 600;
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #007bff;
}

/* ================= CLIENTS ================= */
.clients-section {
    background: #f8f9fb;
    text-align: center;
}

.clients-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 40px auto 0;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scrollClients 25s linear infinite;
    align-items: center;
}

.clients-track img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.clients-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .clients-track img {
        height: 45px;
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    background: #fff;
    text-align: center;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-slide {
    display: none;
    font-size: 1.1rem;
    color: #444;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-slide h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.testimonial-slide span {
    font-size: 0.9rem;
    color: #777;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .dot.active {
    background: #007bff;
}

@media (max-width: 768px) {
    .services-container, .news-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        margin: 0 20px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}


.service-card,
.news-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card img,
.news-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img,
.news-card:hover img {
  transform: scale(1.08);
}

.btn-primary,
.btn-outline {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline:hover {
  background: #0f3d8f;
  color: #fff;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

body {
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.section-title {
  letter-spacing: 1px;
  text-transform: uppercase;
}

html {
    scroll-behavior: smooth;
}
.hero-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.testimonial-slide {
    display: none;
    text-align: center;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #007bff;
}

.service-card, .news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-indicators .indicator.active {
    background: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* === DROPDOWN BASIC === */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  z-index: 999;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #000;
  white-space: nowrap;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

/* SUB DROPDOWN */
.dropdown-sub:hover > .dropdown-menu {
  display: block;
  top: 0;
  left: 100%;
}
/* HILANGKAN TITIK (BULLET) DI SEMUA MENU */
.nav-links,
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* =====================================================
   ABOUT PAGE – Mindset Indonesia
   ===================================================== */

.about-hero {
    background: #0f172a;
    padding: 120px 0 80px;
    text-align: center;
    color: #ffffff;
}

.about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 14px;
    font-weight: 600;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ================= CONTENT ================= */

.about-content {
    padding: 80px 0;
    background: #ffffff;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    max-width: 800px;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-text p {
    line-height: 1.8;
    color: #444;
}

/* ================= GRID ================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.about-card ul {
    padding-left: 18px;
}

.about-card ul li {
    margin-bottom: 8px;
    color: #555;
}

/* =====================================================
   VISION PAGE
   ===================================================== */

.vision-hero {
    background: #0f172a;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
}

.vision-hero-inner {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.vision-content {
    padding: 80px 0;
}

.vision-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.vision-block {
    max-width: 800px;
    margin-bottom: 50px;
}

.vision-list {
    padding-left: 20px;
}

.vision-list li {
    margin-bottom: 10px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.vision-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
}

/* ================= EXPERTS PAGE ================= */

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("../assets/hero/hero1.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 600px;
    margin: auto;
    font-size: 16px;
    opacity: 0.9;
}

.experts-section {
    padding: 80px 20px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.expert-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-6px);
}

.expert-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #0a3d62;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
}

.expert-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.expert-card span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.expert-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
/* ================= NAVBAR INNER PAGE FIX ================= */

.header .navbar {
    position: relative;
    background: #fff;
}

.header .navbar .nav-links a {
    color: #111;
}

.header .navbar .dropdown-menu {
    background: #fff;
}
