/* General Styles */

html {
   scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a; /* Dark background */
    color: white;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
	padding-top: 40px; /* Prevents header overlap */
}

/* Main Table */
.main-table {
    width: 100%;
    border-collapse: collapse;
}


/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container {
    width: 90%;
	height:40px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

/* Contact Buttons */
.contact-info .btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.call-btn {
    background: #e81e1e;
    color: white;
}

.whatsapp-btn {
    background: #27a957;
    color: white;
}

.call-btn:hover, .whatsapp-btn:hover {
    transform: scale(1.1);
}


/* Banner */
.banner {
    text-align: center;
    padding: 10px 0;
}

.banner-content img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff0000;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
    /* Make header responsive */
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1001;
    }

    /* Navigation Styles */
   .navigation {
    display: none; /* Hide menu initially */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

.navigation.active {
    display: flex; /* Shows menu when toggled */
}


    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px;
        display: block;
        width: 100%;
    }

    /* Ensure banner scales properly */
    .banner-content img {
        max-width: 90%;
        height: auto;
    }

    /* Adjust services section for smaller screens */
    .services-container, .review-container {
        flex-direction: column;
        gap: 15px;
    }

    .service-box, .review-box {
        width: 90%;
        max-width: 100%;
    }

    /* Footer adjustments */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        max-width: 100%;
    }
}


/* Location Navigation */
.location-navigation {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    text-align: center;
}

.location-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.location-links li {
    display: inline;
}

.location-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    padding: 8px 15px;
    border: 2px solid #ff0000;
    border-radius: 5px;
}

.location-links a:hover {
    background: #ff0000;
    color: black;
}
@media (max-width: 768px) {
    .location-links a {
        border: none;
    }
}


/* Services Section */
.services-section {
            text-align: center;
            padding: 20px;
        }

        .services-container {
            display: flex;
            justify-content: center;
            gap: 20px; /* Controls spacing between boxes */
        }

        .service-box {
            background-color: darkred;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 300px; /* Set a fixed width */
        }

        .service-box img {
            width: 100%;
            border-radius: 10px;
        }

        .service-box p {
            margin-top: 10px;
            font-size: 16px;
            font-weight: bold;
        }

/* Reviews Section */

/* Default: Desktop - 3 columns */
.review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px; /* Adjust spacing between items */
    justify-content: center;
    padding: 20px;
}

/* Mobile: 1 column per row */
@media (max-width: 768px) {
    .review-container {
        grid-template-columns: 1fr; /* Only 1 column per row on mobile */
    }
}

.review-section {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.9);
}

.review-box {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ff0000;
    transition: 0.3s;

}

.review-box img {
    width: 100%;
    border-radius: 10px;
	
}

.btn-google-review {
    text-decoration: none;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-google-review:hover {
    background: white;
    color: black;
}

.location {
    background: #ffcc00; /* Bright yellow for visibility */
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    border: 2px solid #ffcc00;
}

.location:hover {
    background: #ffcc00;
    color: #ffcc00;
    border: 2px solid #ffcc00;
    transform: scale(1.1);
    box-shadow: 0 0 20px #ffcc00;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid #ff0000;
}

.contact-container h2 {
    color: #ff0000;
}

.contact-container .btn {
   display: inline-block;
    background: #27a957; /* WhatsApp Green */
    color: black;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 4px solid #25d366;
    box-shadow: 0 0 15px #25d366, 0 0 25px #25d366 inset;
    position: relative;
    overflow: hidden;
}
/* ==========================
   🔹 Location Section
========================== */
.location-section {
    background-color: #0a0a0a; /* Dark background */
    padding: 50px 20px;
    text-align: center;
    border-top: 3px solid #ff0000; /* Adds a red top border */
}

.location-section h2 {
    font-size: 28px;
    color: #ff0000; /* Red for emphasis */
    margin-bottom: 10px;
}

.location-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

/* Map Container */
.map-container::after {
    content: "";
    display: block;
    width: 50%; /* Adjust width to center properly */
    height: 3px;
    background: #ccc;
    margin: 20px auto; /* Centers it properly */
    border-radius: 5px;
}


/* Styled Google Map */
.map-container iframe {
    width: 90%;
    max-width: 800px;
    height: 450px;
    border: 5px solid #ddd; /* Soft border */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Separator Line Below Map */
.map-container::after {
    content: "";
    display: block;
    width: 80%; /* Adjust width */
    height: 3px; /* Thickness of the line */
    background: #ccc; /* Line color */
    margin: 20px auto 0; /* Space above & below */
    border-radius: 5px;
}



/* Footer */
.footer {
    background: #111;
    padding: 40px 0;
    text-align: center;
    color: white;
    border-top: 3px solid #ff0000;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    border-bottom: 2px solid #ff0000;
}

.footer-column {
    max-width: 300px;
    text-align: left;
    padding: 10px;
}

.footer-column h3 {
    color: #ff0000;
    text-transform: uppercase;
    border-bottom: 2px solid #ff0000;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

.copyright {
    margin-top: 10px;
    font-size: 14px;
    color: gray;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* Prevents unwanted scrolling */
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
}


/* Set default 3-column layout for desktop */
.service-box, .review-box {
    width: calc(33.333% - 20px);
    max-width: 400px;
    min-width: 250px;
}

.address-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

 .footer-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.menu-toggle {
    display: none; /* Hide menu toggle on desktop */
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
}



/* Mobile Navigation */
.navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

/* When toggled, show the menu */
.navigation.active {
    display: flex;
    flex-direction: column;
}

.banner {
    text-align: center;
    padding: 0;
    width: 100%;
    height: 70vh; /* Ensures it takes full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full image is visible */
    max-height: 100vh;
}
* {
    box-sizing: border-box;
    max-width: 100%;
}
@media (max-width: 768px) {
    /* Navigation Menu */
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
    }

    .navigation.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    /* Banner */
    .banner {
        height: auto;
        padding: 5px 10px;
    }

    .banner-content img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Services & Reviews */
    .services-container,
    .review-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box,
    .review-box {
        width: 90%;
        max-width: 400px;
        text-align: center;
    }

    /* Location Section */
    .location-links {
        flex-direction: column;
        gap: 5px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    /* Force portrait layout */
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    /* Ensure full-width sections */
    .banner, .services-section, .review-section, .contact-section, .location-section, .footer {
        width: 100%;
    }

    .banner img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Ensures full image is visible */
    }

    /* Stack elements vertically */
    .services-container, .review-container, .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
        max-width: 400px;
    }
	.review-box {
        width: 100%;
        max-width: 450px;
    }

    /* Navigation */
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
    }

    .navigation.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}
html {
    font-size: 16px; /* Default font size */
}

@media (max-width: 768px) {
    html {
        font-size: 14px; /* Reduce font size for smaller screens */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px; /* Even smaller for very small screens */
    }
}
.your-class {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
h1, h2, h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.btn {
    font-size: clamp(14px, 3vw, 18px);
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 20px);
}
.nav-links a {
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
    }
}
.service-box, .review-box {
    width: 90%; /* Ensures better fit */
    max-width: 350px;
    margin: 0 auto; /* Centers the box horizontally */
    text-align: center; /* Ensures text inside is centered */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto; 
    padding: 0; 
    overflow: hidden;
}

.banner-content img {
    width: 100%;
    height: auto;
    max-width: none; 
    object-fit: contain; 
    display: block;
}



@media (max-width: 768px) {
    .banner {
        padding-bottom: 20px; 
    }
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /
    gap: 10px;
}

.footer-column {
    flex: 1;
    min-width: 200px; 
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.footer-container {
    font-size: 14px; 
}

.footer-column h3 {
    font-size: 16px; /* Column Title */
}

.footer-column p {
    font-size: 13px; /*content in the column*/
}

.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px; 
}

.banner {
    text-align: center;
    padding-top: 20px; 
}


@media (max-width: 768px) {
    .location-navigation {
        background: none; 
        padding: 10px; 
        border-radius: 10px; 
        max-width: 85%; 
        margin: auto; 
    }

    .location-links {
        display: flex;
        flex-direction: column;
        gap: 5px; 
    }

    .location-links a {
        display: block;
        border: 2px solid #ff0000;
		background: none;
        color: white;
        padding: 8px; 
        font-size: 14px; 
        border-radius: 5px; 
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

    .location-links a:hover {
        background: #ff0000;
        color: white;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        width: 70%;
        padding: 0 15px;
    }

    .logo {
        order: 1; 
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 5px;
        order: 2; 
    }
}
.footer-logo {
    display: inline-block; 
    background: white; 
    border-radius: 10px; 
}

.footer-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .header {
        width: 100vw; 
        height: auto;
        padding: 10px 15px; 
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed; 
        top: 0;
        left: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9);
        box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3); 
    }

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

    .logo img {
        width: 120px; 
    }

    .contact-info {
        display: flex;
        gap: 5px; 
    }

    .contact-info .btn {
        padding: 5px 10px; 
        font-size: 12px;
    }

    .menu-toggle {
        display: block;
        font-size: 24px; 
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
    }
}
@media (max-width: 768px) {
    .banner {
        width: 100%;
        height: auto; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px; 
        overflow: hidden;
    }

    .banner-content img {
        width: 100%; 
        height: auto;
        object-fit: cover; 
        border-radius: 0; 
    }
}
/* Hide mobile banner by default, show desktop banner */
.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* Show mobile banner & hide desktop banner on smaller screens */
@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }
}


