
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.image-gallery {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: -1px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px; /* Matches your features container width */
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px; /* Increased height */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
}

.image-overlay p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-logo h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 0%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35; /* Orange text */
    background: none; /* No background color */

}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sections */
.section {
    min-height: 100vh;
    padding-top: 80px;
}

#home {
    padding-top: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #ff6b35 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-primary {
    background: #ff6b35;
    color: white;
}

.cta-primary:hover {
    background: #d45420;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #333;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* About Section */
#about {
    background: white;
    padding: 4rem 0;
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Services Section */
#services {
    background: #f8f9fa;
    padding: 4rem 0;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.services-intro h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.services-intro::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #ff6b35;
    margin: 20px auto;
    border-radius: 2px;
}


.service-card p {
    font-size: 1rem;
    line-height: 1.6; /* More breathing space */
    color: #000000; 
}


.services-grid {
    display: flex; /* Use flexbox for horizontal alignment */
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    justify-content: space-between; /* Space items evenly */
    gap: 2rem; /* Creates spacing between elements */

}


.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.33% - 2rem); /* Ensures 3 cards per row, adjusting for gap */
    min-width: 300px; /* Ensures cards don't shrink too much */

}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}


.service-card h3 {
    color: #ff6b35;
    margin-bottom: 1.6rem;
    
}

.service-card ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #000000
}

/* Contact Section */
#contact {
    background: white;
    padding: 4rem 0;
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: start;

}

.contact-item strong {
    color: #333;
    display: inline-block;
    width: 120px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #d45420;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        flex-wrap: wrap;
    }
    
    .gallery-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 250px;
        height: 250px;
    }
    
    .gallery-item:last-child {
        flex-basis: 100%;
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        .gallery-item {
        flex: 1 1 100%;
    }
    
    .gallery-item img {
        height: 200px;
    }
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
        height: 220px;
    }
    
    .image-overlay p {
        font-size: 1.1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d45420; /* Button color */
    color: white; /* Text color */
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensure it's above other elements */
}

.scroll-to-top:hover {
    background-color: #d45420; /* Darker blue on hover */
}
