/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Desktop Header Styling */
.desktop-header {
    display: flex;
    align-items: center;
    border-top: 2px solid #00bfff;
    border-bottom: 2px solid #00bfff;
    background-color: #fff;
    padding: 0px 0px 0px 150px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 10px 10px;
}

.logo img {
    height: 40px;
    margin-right: 10px; /* Space between logo and company name */
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin-right: 100px;
}

.desktop-nav {
    display: flex;
    gap: 0px; /* Space between each nav item */
}

.desktop-nav a {  
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 30px;
    transition: background-color 0.3s, color 0.3s;
}

.desktop-nav a:hover {
    background-color: #00bfff;
    color: #fff;
    border-radius: 0px;
}

.desktop-nav a.active {
    background-color: #00bfff;
    color: #fff;
    border-radius: 0px;
}

/* Hero Section Styling */
.hero-section {
    background-image: url('pexels001.jpeg'); /* Path to the hero image */
    background-size: cover;
    background-position: center;
    height: 60vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

/* Tinted Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust the color and opacity as needed */
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 1; /* Ensure content is above the overlay */
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 100px;
}

.hero-section p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Primary button style */
.primary-btn {
    background-color: #00bfff;
    color: #fff;
}

.primary-btn:hover {
    background-color: #0099cc;
}

/* Secondary button style */
.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #00bfff;
}

/* Mobile Header Styling */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #00bfff;
    border-bottom: 3px solid #00bfff;
    background-color: #fff;
    padding: 10px;
}

.logo img {
    height: 40px;
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

.mobile-toggle {
    font-size: 18px;
    color: #00bfff;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    bottom: -100%; /* Hidden off-screen */
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #00bfff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: bottom 0.4s ease; /* Smooth fly-up animation */
    z-index: 10;
}

.mobile-nav a {
    color: #00bfff;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-nav a:hover {
    background-color: #00bfff;
    color: #fff;
}

/* Active State for Fly-Up Animation */
.mobile-nav.active {
    bottom: 0; /* Fly up to visible position */
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav.active {
    display: flex;
}

/* Mobile View - Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px; /* Limit button width */
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

