﻿/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

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

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 120px;
    height: auto;
    transition: max-width 0.3s ease;
}

/* Navigation links */
.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

    .navbar-links li {
        margin: 0;
    }

    .navbar-links a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        padding: 10px 15px;
        background-color: #000;
        border: 2px solid #c62828;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        /* Hover Effect */
        .navbar-links a:hover {
            background-color: #c62828;
            color: #fff;
        }

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
    }

        .navbar-links a {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
            padding: 15px;
        }

    .logo {
        max-width: 80px; /* Reduce logo size for smaller screens */
    }
}

@media (max-width: 480px) {
    .navbar-links a {
        padding: 10px;
        font-size: 1rem;
    }

    .logo {
        max-width: 60px;
    }
}




/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #c62828, #1a1a1a); /* Red to dark gradient */
    height: 80vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff; /* White text for readability */
}

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    }

    .hero p {
        font-size: 1.5rem;
        color: #ccc;
        max-width: 600px;
        margin: 0 auto 30px;
    }

.cta-button {
    padding: 15px 30px;
    background-color: #c62828;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #b71c1c;
    }

/* Optional: Red Bottom Border for Headings */
.hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c62828;
    margin: 10px auto 0 auto;
}

/* Why Choose Us Section */
.why-choose-section {
    text-align: center;
    padding: 60px 20px;
    margin: 0 auto;
}

    .why-choose-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #fff;
        text-transform: uppercase;
        border-bottom: 2px solid #c62828;
        padding-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.8); /* Red glow */
    }

    .why-choose-section p {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #ccc;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* White glow */
    }

    .why-choose-section ul {
        max-width: 600px;
        margin: 20px auto;
        padding-left: 0;
    }

        .why-choose-section ul li {
            list-style: none;
            text-align: left;
            padding-left: 20px;
            position: relative;
            color: #ddd;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

            .why-choose-section ul li:before {
                content: "♦";
                position: absolute;
                left: 0;
                color: #c62828;
                font-size: 1.2rem;
                text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
            }

/* Service Section */
.home-services-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #c62828, #1a1a1a);
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
}

/* Service grid layout */
.service-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Service cards */
.home-service-card {
    flex: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    max-width: 30%;
    display: flex;
    flex-direction: column;
}

    .home-service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .home-service-card h3 {
        font-size: 1.5rem;
        color: #c62828;
        margin-bottom: 10px;
        border-bottom: 2px solid #c62828;
        padding-bottom: 10px;
    }

    .home-service-card p {
        font-size: 1rem;
        line-height: 1.5;
        color: #ddd;
    }

/* Link styling for service cards */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%; /* Ensure the link covers the full height of the card */
    width: 100%;
}

    .service-link:hover .home-service-card {
        transform: translateY(-5px);
    }

/* Make cards responsive for smaller devices */
@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .home-service-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* General Heading Styles */
h1, h2, h3, h4, h5, h6 {
    border-bottom: 3px solid #c62828; /* Red bottom border */
    padding-bottom: 10px;
    display: inline-block;
}

/* Services Section Enhancements */
.services-section {
    padding: 80px 20px; /* Increased padding for breathing room */
    background-color: #1a1a1a; /* Darker background for the services section */
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px; /* Smooth rounded edges */
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
}

    .services-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 15px;
        background: linear-gradient(to right, #c62828, transparent); /* Red splash effect */
        border-radius: 15px 15px 0 0;
    }

    .services-section h2 {
        font-size: 3rem; /* Larger heading */
        color: #fff; /* White text for contrast */
        text-transform: uppercase;
        margin-bottom: 40px;
        border-bottom: 3px solid #c62828; /* Red bottom border */
        padding-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Glowing text effect */
    }

/* Service Cards Styling */
.service-card {
    background-color: #222; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1); /* Subtle shadow for card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px; /* Spacing between service cards */
    text-align: left; /* Align text to the left for service details */
}

    .service-card:hover {
        transform: translateY(-5px); /* Lift the card on hover */
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2); /* Increase shadow on hover */
    }

    .service-card img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 2rem;
        color: #c62828; /* Red for service title */
        margin-bottom: 15px;
        border-bottom: 2px solid #c62828; /* Red bottom border under title */
        padding-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Red glow for title */
    }

    .service-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ddd; /* Light grey text for readability */
    }

/* Service Grid */
.service-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Make grid responsive */
}

.service-details h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff; /* White text */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Glow effect for subheaders */
}

.service-details ul {
    list-style: none;
    padding: 0;
    color: #ddd;
}

    .service-details ul li {
        font-size: 1.1rem;
        padding-left: 20px;
        position: relative;
        margin-bottom: 10px;
    }

        .service-details ul li::before {
            content: "♦";
            color: #c62828; /* Red bullet points */
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: 0;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Red glow effect */
        }


/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #121212; /* Darker background for contrast */
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    position: relative;
}

    .services-section h2 {
        font-size: 3rem; /* Large heading */
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 40px;
        border-bottom: 4px solid #e53935; /* Bold red underline */
        display: inline-block;
        padding-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Light shadow for text depth */
    }

/* Individual Service Card Styling */
.service-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #1a1a1a; /* Darker background for contrast */
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Depth effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(255, 87, 34, 0.3); /* Soft shadow on hover */
    }

.service-image {
    width: 40%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin-right: 40px;
}

.service-details {
    width: 55%;
}

    .service-details h3 {
        font-size: 2.2rem;
        color: #e53935;
        margin-bottom: 20px;
        position: relative;
    }

        .service-details h3::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background-color: #e53935;
            position: absolute;
            bottom: -10px;
            left: 0;
        }

    .service-details p {
        font-size: 1.2rem;
        color: #ddd;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .service-details ul {
        list-style-type: none;
        padding: 0;
        color: #ccc;
    }

        .service-details ul li {
            font-size: 1.1rem;
            padding-left: 20px;
            position: relative;
            margin-bottom: 15px;
        }

            .service-details ul li::before {
                content: "♦";
                color: #e53935; /* Red bullet */
                position: absolute;
                left: 0;
                font-size: 1.5rem;
            }

/* Responsive Design for Service Section */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-image {
        width: 100%;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .service-details {
        width: 100%;
    }
}


/*GALLERY*/
/* General Gallery Section Styling */
.gallery-section {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
    color: #fff;
}

    .gallery-section h2 {
        font-size: 3rem;
        color: #e53935;
        margin-bottom: 40px;
        text-transform: uppercase;
        border-bottom: 4px solid #e53935; /* Red underline */
        display: inline-block;
        padding-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

/* Category Headings */
.gallery-category h3 {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #e53935; /* Red underline for section headings */
    display: inline-block;
    padding-bottom: 5px;
}

/* Grid Layout for Gallery Items */
.gallery-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Responsive grid layout */
    margin-bottom: 60px; /* Space between sections */
}

.gallery-item {
    flex: 1 1 22%; /* Set the width to 22% for 4 items per row */
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px; /* Set a fixed height for all items */
    position: relative;
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.5); /* Initial glow effect */
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(229, 57, 53, 0.8); /* More intense glow on hover */
    }

    /* Ensure that images are centered and cover the container */
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Maintain aspect ratio, cover the container */
        border-radius: 10px;
        display: block;
    }

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%; /* Single column on small screens */
        height: 250px; /* Adjust height for smaller screens */
    }
}
