/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* HEADER */
header {
    width: 100%;
    background: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #007bff;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

.menu-btn {
    font-size: 28px;
    display: none;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    width: 100%;
    padding: 120px 20px;
    background: linear-gradient(to right, #007bff, #00d4ff);
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    margin-top: 12px;
    font-size: 19px;
    opacity: 0.9;
}

.hero .btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #007bff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #e8e8e8;
}

/* COMPANY CARDS */
.company-section {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    animation: fadeIn 0.7s ease;
}

.card h2,
.card h3,
.card h4 {
    color: #222;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    line-height: 1.7;
}

/* CORE VALUES GRID */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.core-value {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 12px;
    border-left: 6px solid var(--color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 8px;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
.footer-box {
    background: #0a0a0a;
    color: #ddd;
    padding: 60px 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 25px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00c6fb;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

.contact-btn:hover {
    background: #009ed1;
}

/* FLOATING MESSAGE ICON */
.message-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.icon-wrapper img {
    width: 60px;
    filter: drop-shadow(0 0 5px #000);
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }
}

@media(max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        position: absolute;
        top: 70px;
        left: 0;
    }

    nav.show {
        display: flex !important;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon-wrapper img {
        width: 50px;
    }
}
#navMenu a.active {
    color: #007bff;       /* Highlight color */
    font-weight: bold;
    border-bottom: 2px solid #007bff;  /* Optional underline */
}

#navMenu a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: 0.3s;
}

#navMenu a:hover {
    color: #007bff;
}