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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Sticky Header Navigation */
header {
    position: sticky;  /* Makes the header sticky */
    top: 0;  /* Stick to the top of the page */
    background-color: #222;  /* Dark background for header */
    z-index: 1000;  /* Ensure header is always on top of other elements */
    padding: 10px 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  /* Optional: Add shadow for better separation */
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ff0000;  /* Red hover effect */
    color: white;  /* White text on hover */
}

/* Hero Section */
.hero {
    background-image: url('texturewall.jpg');  
    background-size: cover;
    background-position: center;
    color: black;
    text-align: center;
    padding: 50px 20px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff0000;  /* Red */
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    border: 2px solid #ff0000;  /* Red border */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e60000;  /* Darker Red */
    border-color: #e60000;
    transform: translateY(-4px);
}


/* Logo Styles */
.logo {
    max-width: 250px;  /* Set the max width to fit within the hero section */
    height: auto;  /* Automatically adjust the height to maintain aspect ratio */
    margin-bottom: 20px;  /* Add some space between the logo and the heading */
}

/* Service Overview Section */
.services-overview {
    background-color: white;
    text-align: center;
    padding: 40px 20px;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service h3 {
    font-size: 1.8rem;
    color: #ff0000; /* Red */
}

.service p {
    font-size: 1rem;
}

.btn-secondary {
    background-color: #ff0000; /* Red */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    border: 2px solid #ff0000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e60000; /* Darker Red */
    border-color: #e60000;
    transform: translateY(-3px);
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

footer .social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #ff0000; /* Red */
}

/* FAQ Section */
.faq {
    padding: 40px 20px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #ff0000; /* Red */
}

.faq-item {
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.8rem;
    color: #ff0000; /* Red */
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    color: #333;
}

/* Live Chat Button */
#live-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff0000; /* Red */
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#chat-window {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-body {
    height: 300px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 10px;
    background-color: #f1f1f1;
}

#chat-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 10px;
    background-color: #ff0000; /* Red */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e60000; /* Darker Red */
}

/* General Button Styles */
.btn-primary, .btn-secondary {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    padding: 14px 35px;  /* Increased padding for better touch area */
    border-radius: 50px;  /* Rounded corners for a more modern, friendly look */
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;  /* Smooth transition for hover and focus states */
    text-decoration: none;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #ff0000;  /* Primary red color */
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Soft shadow for depth */
}

.btn-primary:hover {
    background-color: #e60000;  /* Darker red on hover */
    transform: translateY(-4px);  /* Slightly lift the button for feedback */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);  /* More prominent shadow */
}

.btn-primary:focus {
    outline: none;
    border-color: #ff4d4d;  /* Focus outline to improve accessibility */
}

.btn-secondary {
    background-color: #f4f4f4;  /* Light gray background */
    color: #333;  /* Dark text for contrast */
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #ff0000;  /* Red border for consistency */
}

.btn-secondary:hover {
    background-color: #ff0000;  /* Red background on hover */
    color: white;  /* White text on hover */
    transform: translateY(-3px);  /* Lift effect for hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);  /* Hover shadow */
}

.btn-secondary:focus {
    outline: none;
    border-color: #ff4d4d;  /* Focus outline for accessibility */
}

/* Booking Section */
.booking-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.heading {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff0000; /* Red for primary color */
    font-weight: 600;
}

.subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus, .form-select:focus {
    border-color: #ff0000;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* Submit Button */
.btn-submit {
    padding: 14px 30px;
    font-size: 1.2rem;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: #e60000;
    transform: translateY(-3px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .booking-options a {
        font-size: 1rem;
        padding: 12px 20px;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Booking Section Styles */
.booking-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Heading Styles */
.heading {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Booking Buttons Container */
.booking-buttons {
    display: flex;
    flex-direction: column;  /* Stack the buttons vertically */
    gap: 20px;  /* Space between the buttons */
    align-items: center;  /* Center align the buttons */
}

/* Button Styles */
.btn-submit {
    background-color: #ff0000;  /* Red background */
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid transparent;
    box-sizing: border-box;
    width: 100%;  /* Button will fill the width of the container */
    max-width: 350px;  /* Set a max width for the button */
    text-align: center;  /* Center the text */
    transition: all 0.3s ease;  /* Smooth transition on hover */
}

.btn-submit:hover {
    background-color: #e60000;  /* Darker red when hovered */
    transform: translateY(-3px);  /* Lift the button when hovered */
}

.btn-submit:focus {
    outline: none;
    border-color: #ff4d4d;  /* Focus border color */
}

/* Input and Form Styles */
.form-input, .form-select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
}

.form-input:focus, .form-select:focus {
    border-color: #ff0000;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.booking-form button {
    padding: 14px 30px;
    font-size: 1.2rem;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.booking-form button:hover {
    background-color: #e60000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Navigation */
header {
    position: sticky;
    top: 0;
    background-color: #222;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ff0000;
    padding: 10px 20px;
    border-radius: 5px;
}

/* About Us Section */
.about {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.heading {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.btn-primary {
    background-color: #ff0000;
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e60000;
    transform: translateY(-3px);
}

.btn-primary:focus {
    outline: none;
    border-color: #ff4d4d;
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
.call-btn {
    background-color: #28a745; /* Green color for the call button */
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid transparent;
    width: 100%; /* Button will fill the width of the container */
    max-width: 350px; /* Set a max width for the button */
    text-align: center;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-3px); /* Lift the button on hover */
}