﻿/*body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

 NAVBAR 
.navbar {
    background-color: #00bfa5;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.navbar-brand {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

    .navbar-links .nav-link {
        font-size: 18px;
        color: white;
        text-decoration: none;
        transition: color 0.2s, text-decoration 0.2s;
    }

        .navbar-links .nav-link:hover {
            color: #dcedc8;
            text-decoration: none;
        }
 REMOVE BULLET POINTS IN DROPDOWNS 
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

 BASE STYLING 
nav {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

     Base nav styling 
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

        nav ul li {
            position: relative;
            padding: 10px 20px;
            cursor: pointer;
        }

            nav ul li a {
                text-decoration: none;
                color: #333;
                font-weight: 500;
            }

         Hide dropdowns by default 
        nav ul ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            flex-direction: column;
            background-color: #fff;
            border: 1px solid #ccc;
            min-width: 200px;
            z-index: 1000;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

             Style the dropdown items 
            nav ul ul li {
                white-space: nowrap;
                padding: 10px 15px;
            }

             Submenu of submenu (e.g., Area of Specialization) 
            nav ul ul ul {
                top: 0;
                left: 100%;
                border-left: none;
            }

         Show first dropdown on hover 
        nav ul li:hover > ul {
            display: flex;
            flex-direction: column;
        }

         Show second level on hover of the parent 
        nav ul ul li:hover > ul {
            display: flex;
            flex-direction: column;
        }

         Hover styles 
        nav ul li:hover > a {
            color: green;
        }

         Remove bullet dots from all nested lists 
        nav ul ul li {
            list-style: none;
        }


 DROPDOWN - FIXED FULL WIDTH 
.dropdown {
    position: relative;
}

.dropdown-full-wrapper {
    position: fixed;
    top: 70px;  Adjust to match navbar height 
    left: 0;
    width: 100vw;
    display: none;
    z-index: 999;
}

 Show dropdown only on hover 
.dropdown:hover .dropdown-full-wrapper {
    display: block;
}

 Grid layout inside the dropdown 
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: white;
    display: none;
    z-index: 999;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ccc;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
}

    .dropdown-content a {
        padding: 6px 10px;
        font-size: 12px;
        text-align: center;
        color: black;
        text-decoration: none;
        background-color: #f0f0f0;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

        .dropdown-content a:hover {
            background-color: #e0e0e0;
        }

.dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown.cards-dropdown:hover ~ .main-content {
    margin-top: 350px;  Adjust this value to fit the height of your dropdown 
    transition: margin-top 0.3s ease;
}

.main-content {
    margin-top: 0;
    transition: margin-top 0.3s ease;
}

 Cards inside dropdown 
.cards-dropdown .feature-card {
    background-color: #f8f8f8;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

    .cards-dropdown .feature-card:hover {
        background-color: #eaeaea;
    }
 Custom layout for Solutions dropdown 
.dropdown-content.solutions-layout {
    display: flex;
    flex-direction: row;
    padding: 40px 60px;
    width: 100vw;
    max-width: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
}


 Left Sidebar Tabs 
.solutions-sidebar {
    width: 250px;
    border-right: 1px solid #eee;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-tab {
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    color: #333;
}

    .sidebar-tab.active {
        background-color: #006400;
        color: white;
        font-weight: bold;
        border-radius: 8px;
        padding-left: 10px;
    }

.sidebar-tab {
    background: none;
    border: none;
    padding: 8px 12px;
    text-align: left;
    width: 100%;
    font-size: 15px;
    color: #1e774f;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

    .sidebar-tab:hover {
        background-color: #e6f4ee;
    }

    .sidebar-tab.active {
        font-weight: bold;
        background-color: #c8e6c9;
        border-left: 4px solid #1e774f;
    }


 Right Cards 
.solutions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.solution-card {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .solution-card:hover {
        background-color: #eaeaea;
        cursor: pointer;
    }

    .solution-card h3 {
        margin-top: 0;
        color: #1e774f;
        font-size: 1.1rem;
    }

    .solution-card p {
        font-size: 0.9rem;
        color: #444;
    }

.solutions-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .solutions-sidebar ul li {
        margin-bottom: 8px;
    }

 Sidebar tabs styling with icons 
.sidebar-tab {
    background: none;
    border: none;
    padding: 10px 15px;
    text-align: left;
    width: 100%;
    font-size: 16px;
    color: #2e7d32;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sidebar-tab:hover {
        background-color: #e0f2f1;
    }

    .sidebar-tab.active {
        font-weight: bold;
        background-color: #c8e6c9;
        border-left: 4px solid #2e7d32;
    }

    .sidebar-tab i {
        font-size: 18px;
        min-width: 20px;
    }

 Dropdown arrow styling for nav links with dropdowns 
.dropbtn::after {
    content: "\f078";  FontAwesome chevron-down 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
}

 Optional: transition for dropdown appearance 
.dropdown-full-wrapper {
    transition: all 0.3s ease;
}

.solutions-dropdown-container {
    display: flex;
    padding: 30px;
    min-width: 950px;
    gap: 40px;
}

.solutions-sidebar {
    width: 220px;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.sidebar-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #1e774f;
    margin-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-list li {
        margin: 8px 0;
    }

        .sidebar-list li a {
            text-decoration: none;
            color: #333;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
        }

            .sidebar-list li a:hover {
                color: #1e774f;
            }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-grow: 1;
}

.solution-card {
    text-decoration: none;
    padding: 10px 0;
    color: #333;
    transition: all 0.2s ease-in-out;
}

    .solution-card h4 {
        font-weight: bold;
        margin: 0 0 4px;
        color: #1e774f;
    }

    .solution-card p {
        font-size: 0.9em;
        color: #555;
        margin: 0;
    }

    .solution-card:hover {
        color: #1e774f;
    }

.hero-combined {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #00bfa5 50%, #f9f9f9 50%);
    padding: 80px 8%;
    font-family: 'Segoe UI', sans-serif;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-left {
    flex: 1 1 480px;
    max-width: 550px;
    color: white;
}

.hero-sub {
    font-size: 14px;
    color: #d1fae5;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-left h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-left h1 span {
        color: #00ffb3;
    }

.hero-desc {
    font-size: 18px;
    margin: 20px 0;
    color: #f0fdf4;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero-btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .hero-btn.primary {
        background-color: #00c853;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
    }

        .hero-btn.primary:hover {
            background-color: #009624;
        }

    .hero-btn.secondary {
        border: 2px solid white;
        color: white;
        background: none;
    }

        .hero-btn.secondary:hover {
            background-color: white;
            color: #014d40;
        }

.hero-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

    .hero-right img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 18px;
    color: #d1fae5;
    margin-bottom: 25px;
}



 Container 
.solutions-section {
    padding: 2rem;
    background-color: #f6f9fc;
    font-family: Arial, sans-serif;
}

.solutions-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #222;
}

.solutions-header p {
    margin: 0.5rem 0 1rem;
    color: #555;
}

 Dropdown container 
.solutions-dropdown {
    display: flex;
    gap: 2rem;
}

 Each category 
.dropdown-category {
    position: relative;
    cursor: pointer;
}

    .dropdown-category span {
        font-weight: bold;
        color: #333;
        display: inline-block;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .dropdown-category span:hover {
            background-color: #e0e0e0;
        }

 Hide list initially 
.dropdown-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 10;
    min-width: 200px;
}

 Show on hover 
.dropdown-category:hover .dropdown-list {
    display: block;
}

 List items 
.dropdown-list li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

    .dropdown-list li:hover {
        background-color: #f0f0f0;
    }

     Last item no border 
    .dropdown-list li:last-child {
        border-bottom: none;
    }

.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #014d40;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 5px;
        display: block;
    }

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #00bfa5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: #004d33;
    }
*/