/* ✅ Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ✅ Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    color: white;
    scroll-behavior: smooth;
}

/* ✅ Navbar */
.navbar {
    width: 100%;
    background-color: #0b1a2f;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #deaf47;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #deaf47;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-item:hover {
    color: #60a5fa;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 65vh;
    margin-top: 59px; /* ✅ pushes the whole div below the fixed navbar */
    background-image: url('img/drill.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darkens the image */
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 90%;
}
.hero-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 300;
    margin-top: 10px;
    color: #deaf47;
    text-transform: none;
}
/* ✅ Hero Button */
.hero-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #0b1a2f;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background-color: white;
    color: #0b1a2f;
}
/* ✅ Features Section */
.features-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 20px 20px 20px; /* top right bottom left */
    background-color: white;
    min-height: 23.2vh; /* ✅ NEW line */
}


.feature-card {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    color: #deaf47; /* Same as navbar logo color */
    margin-bottom: 10px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px;
    color: black;
}
/* ✅ Footer */
.footer {
    background-color: #0b1a2f;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}

/* ✅ Hamburger Button (Mobile Only) */
.mobile-hamburger {
    display: none;
}

.hamburger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #0b1a2f;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

/* ✅ Dropdown Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #0b1a2f;
    padding: 15px;
    text-align: center;
}

.mobile-menu a {
    color: #deaf47;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
}

.mobile-menu a:hover {
    color: #60a5fa;
}

/* ✅ Mobile Styles */
@media (max-width: 767px) {
    .nav-menu {
        display: none; /* Hide full menu */
    }

    .mobile-hamburger {
        display: block;
    }

    .nav-logo {
        font-size: 18px; /* Resize logo if needed */
    }
}
