/* Custom Corporate Theme */
:root {
    --primary-color: #004d99; /* Deep Corporate Blue */
    --lotte-green: #8cc63f;   /* The Green from the menu */
    --menu-bg-blue: #d1efff;  /* The Light Blue from the menu */
    --text-color: #333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    border-bottom: 3px solid var(--lotte-green); /* Green line under nav */
}
.nav-link {
    font-weight: 500;
    color: #444 !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* --- SPECIAL INVESTOR DROPDOWN (Matches your image) --- */
.custom-investor-dropdown {
    background-color: var(--menu-bg-blue);
    border: none;
    border-radius: 0px; /* Square corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px 0;
    min-width: 280px;
    margin-top: 0px;
}

.investor-header {
    color: var(--lotte-green);
    font-weight: 700;
    font-size: 1rem;
    padding: 5px 24px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.custom-investor-dropdown .dropdown-item {
    color: #444;
    font-size: 0.95rem;
    padding: 8px 24px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.custom-investor-dropdown .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding-left: 28px; /* Slight slide animation */
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-overlay {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
/* Helper for Carousel Images */
.object-fit-cover {
    object-fit: cover; /* Ensures image covers the box without stretching */
}

/* Optional: Slight Zoom Animation on Active Slide */
.carousel-item.active img {
    transform: scale(1.05);
    transition: transform 5s ease;
}
.carousel-item img {
    transform: scale(1);
    transition: transform 5s ease;
}