body {
    font-family: Helvitica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
	font-size: 15;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
}

h1 {    
	text-transform:uppercase;	
}

section {
    margin: 0; /* Remove margin */
    padding: 0px 0; /* Optional: Add consistent padding */
}

.container {   
    max-width: 800px;
    margin: 0;
	padding: 0;
}

.logo {
    max-width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

header {
    background: black;
    color: #fff;
    padding: 5rem 10;
    text-align: left;
	margin: 0; /* Remove margin */
   
}

header .header-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: flex-start; /* Align items to the left */
}

header .logo {
    margin-left: 50px; /* Adjust the value as needed */
}

header .header-icon {
    width: auto; /* Set size for icons */
    max-height: 70px; /* Maintain aspect ratio */
   
    display: none; /* Hide by default */
}




.welcome{
	
	margin: 0; /* Remove margin */
    padding: 20px 0; /* Optional: Add consistent padding */
}

.welcome-container {
    position: relative;
    width: 100%;
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-text-overlay {
    position: absolute;
    top: 35%; /* Adjust vertical alignment */
    right: 10%; /* Adjust horizontal alignment */
    color: white;
    text-align: right;
	background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background */
    padding: 20px;
	border-radius: 10px; /* Optional: rounded corners */    
}

.welcome-text-overlay h1 {
    font-size: 5.5rem; /* Adjust size as needed */
    margin: 0;
    text-transform: uppercase;
}

.welcome-text-overlay p {
    font-size: 2.2rem; /* Adjust size as needed */
    margin: 10px 0 0;
}



.about-us{
    background-color: black; /* Black background */
	color: #fff; /* White text */
	padding: 20px;	
	text-align: center; /* Center-align text */
}

.about-us .row {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    padding: 0 20px; /* Add spacing to the left and right */
}


.carousel {
    display: flex;
    overflow: hidden; /* Hides the scrollbar */
    width: 100%; /* Full width */
    height: auto; /* Adjust height as needed */
    white-space: nowrap; /* Prevent line breaks */
}

.carousel img {
    flex-shrink: 0; /* Prevent images from shrinking */
    width: 40%; /* Adjust width of each image as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
}



.services{
    background-color: black; /* Black background */
	color: #fff; /* White text */
	padding: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    margin: 20px 0;
}

.service-box {    
    padding: 50px;
    border-radius: 10px;
}

.packages {
    background-color: #CF1E2A; /* red background */
	color: #fff; /* White text */
	padding: 20px;	
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin: 20px 0;	
}

.package-box {
    /*background-color: #000; /* Black background */
    color: white; /* White text */
    padding: 20px;
    border-radius: 10px;
}

.contact-us {
	background-color: black; /* Black background */
	color: #fff; /* White text */
	padding: 20px;
}

.contact-grid {
   	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.contact-box {
    text-align: left;
    padding: 20px;
    border-radius: 10px;
}

footer {
    background: black;
    color: #fff;
    text-align: center;
    padding: 20px;
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
}


/* Mobile-Specific Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Scale down the font size */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    header {
        padding: 3rem 5px; /* Adjust padding for smaller screens */
        text-align: center; /* Center-align content */
    }
	
	header .header-container {
        justify-content: center; /* Center items on smaller screens */
    }

    header .logo {
        margin-left: 0; /* Center the logo */
    }
	
	header .header-icon {
        display: inline; /* Show icons only on mobile screens */
    }

    .container {
        max-width: 100%; /* Use full width on smaller screens */
        padding: 10px; /* Add some padding */
    }

    .welcome-text-overlay {
        top: 25%; /* Adjust position */
        right: 5%; /* Reduce spacing */
        width: 90%; /* Constrain width */
        text-align: center; /* Center the text */
        padding: 5px; /* Reduce padding */
    }

    .welcome-text-overlay h1 {
        font-size: 2rem; /* Scale down font size */
    }

    .welcome-text-overlay p {
        font-size: 1rem; /* Scale down font size */
    }

    .services-grid, .packages-grid, .contact-grid {
        grid-template-columns: 1fr; /* Single-column layout */
        gap: 10px; /* Reduce gaps between items */
    }

    .service-box, .package-box, .contact-box {
        padding: 20px; /* Reduce padding */
        text-align: center; /* Center-align content */
    }

    .carousel img {
        width: 100%; /* Use full width for images */
    }

    footer {
        padding: 10px; /* Reduce padding */
    }
}
