
:root {
    --primary-color: #DD2121;
    --white: #f0f8ff;
    --black: #000;
    --yellow: #FFFF00;
    --light-gray: #dddddd;
    --shadow-color: #e3e3e3;
    --preimary-box-shadow: 0 0px 10px var(--shadow-color);
    --transition: 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Enhanced Navbar Styles */
.enhanced-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.enhanced-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.jdm-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.jdm-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/*.nav-link:hover {*/
/*    color: var(--white);*/
/*    background: var(--primary-color);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(221, 33, 33, 0.3);*/
/*    text-decoration: none;*/
/*}*/

.nav-link.active {
    color: var(--white);
    background: var(--primary-color);
    box-shadow: 0 3px 10px rgba(221, 33, 33, 0.3);
}

.nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Section */
.header-section {
    background-color: var(--light-gray);
    background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    overflow: hidden;
    margin-top: 80px;
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.banner-container-area {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(221, 33, 33, 0.1);
}

.banner-header {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-container-area p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    flex: 1;
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--black);
}

.section-title .highlight {
    color: var(--primary-color);
    margin: 0 8px;
}

/* Footer Styles */
.footer-basic {
    margin-top: auto;
    padding: 40px 0;
    background-color: #f8f9fa;
    color: #666;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-basic li {
    padding: 0;
}

.footer-basic ul a {
    text-decoration: none;
    font-size: 15px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-basic ul a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #8f9898;
    margin-top: 20px;
}

.copyright span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 90%;
        margin: 0.5rem 0;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 10px;
    }

    .navbar-container {
        padding: 0 15px;
    }

    .jdm-logo img {
        height: 45px;
    }

    .header-section {
        padding: 40px 0;
        min-height: 400px;
    }

    .banner-header {
        font-size: 1.8rem;
    }

    .banner-container-area {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .footer-basic ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-header {
        font-size: 1.5rem;
    }

    .banner-container-area p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* ensures it's placed right below the parent */
    left: 0;
    background-color: white;
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 1100;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s ease;
}


/* Dropdown Links */
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

