* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}
.logo-main {
    display: flex;
    align-items: center; /* Align image and text vertically */
    gap: 10px; /* Adds space between the logo image and text */
}

.logo-main img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    white-space: nowrap; /* Prevents text from wrapping */
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a4a2e;
    color: white;
    padding: 15px 30px;
    flex-wrap: wrap;
    width: 100%;
    position: relative; /* Ensures elements stay inside the header */
}

/* Logo Container */
.logo-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo-main img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

/* Navbar Links */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
}

.cta-button {
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .logo-main {
        flex-grow: 0; /* Allows logo to occupy available space */
        font-size: small;
    }
    .logo {
        font-size: 18px; /* Smaller font size on small screens */
    }
    .menu-toggle {
        display: block; /* Show toggle button only on small screens */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #4a4a2e;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        text-align: center;
        padding-top: 50px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        align-items: center;
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 10px;
    }
}
/* Hero Section */
.hero {
    background-size: cover;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero-content a {
    margin-top: 20px;
    display: inline-block;
}

/* Services & Testimonials */
.services, .equipment, .testimonials {
    text-align: center;
    padding: 40px 20px;
}

h2 {
    margin-bottom: 20px;
}

/* Service Grid */
.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: #e0e0e0;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
}

/* Equipment & Testimonials */
.equipment-slider, .testimonial-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.equipment-item, .testimonial-item {
    background-color: #e0e0e0;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s;
}

.equipment-item:hover, .testimonial-item:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #4a4a2e;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
