body {
        font-family: Arial, sans-serif;
        background-color: #000;
        color: #fff;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    header {
        text-align: center;
        padding: 20px;
        background-color: #111
    }
    .logo {
        height: 160px;
        width: 180px;
        background: black;
        display: inline-block;
    }
    nav {
        display: flex;
        justify-content: center;
        background-color:#222;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        flex-wrap: wrap;
    }
    nav a {
        color: #fff;
        text-decoration: none;
        font-size: 18px; /* Larger text for better readability */
        margin: 0 25px; /* Added more spacing between links */
        padding: 10px 20px;
        display: block;
        transition: background-color 0.3s ease;
    }
    nav a:hover {
        background-color: #444; /* Background hover effect */
    }
    .section {
        padding: 60px 20px; /* Increased padding for more space */
        text-align: center;
    }
    .services-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px; /* Increased gap between boxes */
        margin-top: 40px;
    }
    .service-box {
        background: #222;
        padding: 20px;
        border-radius: 10px;
        max-width: 500px;
        width: 80%;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }
    
    /* Hover effects for service boxes */
    .service-box:has(.fa-chart-line):hover {
        background: #006064;
        transform: translateY(-10px);
    }
    
    .service-box:has(.fa-building):hover {
        background: #795548;
        transform: translateY(-10px);
    }
    
    .service-box:has(.fa-tasks):hover {
        background: #1b5e20;
        transform: translateY(-10px);
    }
    
    .service-box:has(.fa-handshake):hover {
        background: #4a148c;
        transform: translateY(-10px);
    }
    
    .service-box:has(.fa-briefcase):hover {
        background: #bf360c;
        transform: translateY(-10px);
    }
    
    .service-box:has(.fa-bullseye):hover {
        background: #880e4f;
        transform: translateY(-10px);
    }
    .service-box:hover {
        transform: translateY(-10px); /* Slight lift on hover */
    }
    .service-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .service-box p {
        font-size: 16px;
        margin-top: 10px;
    }

    

    .about-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px; /* Increased gap between boxes */
        margin-top: 40px;
    }
    .about-box {
        background: #222;
        padding: 20px;
        border-radius: 10px;
        width: 250px; /* Increased width for more content */
        text-align: center;
        transition: transform 0.3s ease-in-out;
    }
    .about-box:hover {
        transform: translateY(-10px); /* Slight lift on hover */
    }
    .about-box h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .about-box p {
        font-size: 16px;
        margin-top: 10px;
    }

    .team-placeholder {
        height: 350px;
        width: 350px;
        background: gray;
        display: inline-block;
        margin: 20px;
    }

    .about-why {
        margin-top: 50px;
    }

    .contact-form {
        max-width: 600px;
        margin: 40px auto;
        background: #222;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Added shadow for depth */

    }
    .contact-form input, .contact-form textarea {
        width: 95% !important;
        padding: 12px;
        margin: 12px 0;
        border: none;
        border-radius: 8px;
        background: #333;
        color: #fff;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
        color: #bbb;
    }
    .contact-form button {
        background: #fff;
        color: #000;
        padding: 12px 25px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }
    .contact-form button:hover {
        background-color: #444;
    }

    /* Mobile View Adjustments */
    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            align-items: center;
        }
        nav a {
            margin: 10px 0;
            padding: 12px 30px;
            font-size: 16px;
        }
        .services-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .service-box {
            width: 90%; /* Make the boxes fill the available space */
        }
    }


    /* Style for team section */
#about {
    text-align: center;
    padding: 60px 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between team members */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    width: 300px; /* Fixed width for each member */;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    padding: 5px;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

#image-one {
    object-position: center 20%;
}

#image-two {
    object-position: center 30%;
}

#image-three {
    object-position: center 1%;
}

.team-member h3 {
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
}

.team-member p {
    color: #888;
    font-size: 16px;
}

    
    /* Smaller devices (e.g. mobile phones) */
    @media (max-width: 480px) {
        nav a {
            padding: 15px 40px;
            font-size: 14px; /* Smaller font for better fit */
        }
        .contact-form {
            padding: 20px;
            margin: 20px;
        } 

        
    }

    /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    width: 40%;
    max-width: 800px;
    text-align: left;
    color: #000;
    position: relative;
}


.modal-content ul {
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #1e90ff;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}


/* Default navigation */
nav {
    display: flex;
    gap: 20px;
}

/* Hide menu-toggle button on larger screens */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show button */
        position: absolute;
        right: 20px;
        top: 20px;
        color: white; /* Ensure color is white */
        font-size: 28px; /* Make it bigger */
        cursor: pointer; /* Indicate it's clickable */
        background: none;
        border: none;
        outline: none;
    }

    .menu-toggle i {
        font-size: 32px; /* Adjust icon size */
    }
    

    nav {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color:#222;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex; /* Show when active */
    }
}

hr {
    width: 250px;
}

.service-box h3 i {
    margin-right: 10px;
}

/* Specific colors for each service icon */
.fa-chart-line {
    color: #00bcd4;  /* Blue for analytics/research */
}

.fa-building {
    color: #ffc107;  /* Gold for business */
}

.fa-tasks {
    color: #4caf50;  /* Green for project management */
}

.fa-handshake {
    color: #9c27b0;  /* Purple for partnerships */
}

.fa-briefcase {
    color: #ff5722;  /* Orange for recruitment */
}

.fa-bullseye {
    color: #e91e63;  /* Pink for customer acquisition */
}

.coming-soon-container {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
}

.coming-soon-icon {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 20px;
}

.coming-soon-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.notification-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.notify-form input[type="email"] {
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 60%;
    background: #333;
    color: #fff;
}

.notify-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: #ffc107;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background: #ffcd38;
}

@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    .notify-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

.welcome-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.welcome-content {
    text-align: center;
}

.welcome-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.highlight {
    color: #ffc107;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffc107;
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.tagline h2 {
    font-size: 1.5em;
    color: #888;
}

.tagline i {
    color: white;
    font-size: 1.2em;
}

.welcome-text {
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.8;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #ffc107;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button.primary:hover {
    background: #ffcd38;
    box-shadow: 0 0 20px #ffc107,
                0 0 40px #ffc107,
                0 0 60px #ffc107;
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px #ffc107,
                0 0 40px #ffc107;
    transform: translateY(-3px);
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1em;
    }
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

