/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 80px 0 0; /* Adjust for fixed header */
    overflow-x: hidden;
    background-color: #000;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Header Section */
header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 1); /* Black header background */
    color: rgb(255, 255, 255); /* White text */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

/* Logo */
.logo img {
    height: 80px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff652f;
}

.contact-btn {
    background-color: #ff652f;
    padding: 8px 12px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}
.services{
    background-color: black;
    color: white;
    overflow: hidden;
    padding: 20px;
}

.servicesimg {
    width: 100%;
}

.servicesimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.headingPR h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}
.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}
.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}
.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}
.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}
.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family: 'Arial', sans-serif; /* Change font if needed */
}

/* Container Content */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin:65px auto;
}

.container-content {
    flex: 1;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    color: #ddd;
}

.container-image img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}
/* Container Content */
.container2 {
    display: flex;
    justify-content: space-between; /* Space between image and text */
    align-items: center; /* Vertical alignment */
    width: 90%;
    margin:  auto 65px; /* Center container on the page */
    gap: 20px; /* Space between the image and text */
}

.container-image2 {
    flex: 1; /* Make the image container flexible */
    margin-right: 20px; /* Add spacing between image and text */
    float:left;
}

.container-image2 img {
    width: 100%; /* Full width of the image container */
    height: auto; /* Maintain aspect ratio */
    display: block;
    float:left;
}

.container-content2 {
    flex: 1; /* Make the text container flexible */
    text-align: center; /* Align text to the left */
    color: #ddd; /* Text color */
    font-size: 16px; /* Adjust font size as needed */
    line-height: 1.6; /* Improve readability */
    padding: 20px;
    align-items: center;
    gap: 50px;
}

@media (max-width: 768px) {
    .container2 {
        flex-direction: column; /* Stack elements vertically for smaller screens */
        text-align: center; /* Center align for mobile */
    }

    .container-image2, .container-content2 {
        flex: none; /* Remove flex sizing for better stacking */
        margin: 10px 0;
        float: left;
    }
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-icons {
    margin-bottom: 15px;
}

.social-link img {
    width: 100px;
    height: 100px;
    margin: 0 10px;
}

.contact-details p {
    margin: 5px 0;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.htlogo img {
    margin-top: 30px;
    width: 400px; /* Adjust as needed */
}


/* RESPONSIVE DESIGN */

/* Mobile Screens (max-width: 600px) */
@media (max-width: 600px) {
    header {
        flex-direction: column; /* Stack the logo and nav vertically */
        text-align: center;
    }

    .logo img {
        height: 50px; /* Smaller logo */
    }

    nav ul {
        flex-direction: column; /* Stack menu items vertically */
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
    }
}

/* Tablet Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .logo img {
        height: 55px; /* Slightly smaller logo */
    }

    nav ul {
        gap: 15px; /* Reduce spacing between menu items */
    }

    nav ul li a {
        font-size: 15px;
    }
}


