/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1641765170634-4240fede7a17?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    padding: 20px 20px; /* Adjusted padding for better spacing */
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevent overflow */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
	background:#E7740E; /*F2811D*/
}

.navbar .logo{
	font-weight: bold;
	color: #fff;
    font-size: x-large;
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Collapsible Menu - Mobile View */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Default Nav Links - Mobile Hidden */
.nav-links {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(250,150,50,0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: left;
        padding: 15px;
		z-index:10;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


.cta-button {
    background-color: #F2522E;
    color: #fff;
    border: none;
    padding: 5px;
	font-size: 24px;
	line-height: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	text-decoration: none !important;
}


.cta-button:hover {
    background-color: #e44e4e;
}

.hero-content {
    max-width: 800px; /* Set a max-width for better containment */
    margin: 0 auto; /* Center the content */
    position: relative; /* Ensure it stays in context */
    z-index: 1; /* Ensure it's above the background */
	padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem; /* Adjusted for better responsiveness */
    margin: 20px 0; /* Added margin for spacing */
}

.hero-content p {
    font-size: 1.2rem; /* Adjusted font size for readability */
    margin: 20px 0; /* Added margin for spacing */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem; /* Smaller font for smaller screens */
    }

    .hero-content p {
        font-size: 1rem; /* Smaller font for smaller screens */
    }
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    color: #05C7F2;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0D0D0D;
}

.service-card p {
    color: #0D0D0D;
}

/* Call Section */
.call-section{
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

/* About Section */
.about-section {
    background-color: #fff; /* Light background color */
    padding: 40px 20px; /* Top and bottom padding */
    /*border-radius: 8px; /* Rounded corners */
   /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 1200px; /* Max width for content */
    margin: auto; /* Centering the section */
    text-align: left; /* Align text to the left */
}

.about-section h2 {
    font-size: 2.5rem; /* Main heading size */
    margin-bottom: 20px; /* Space below the heading */
}

.about-section p {
 /*   max-width: 600px;
    margin: 0 auto;*/
    font-size: 1.1rem;
    color: #0D0D0D;
}

.about-section h3 {
    font-size: 1.75rem; /* Subheading size */
    margin-top: 30px; /* Space above subheadings */
    margin-bottom: 10px; /* Space below subheadings */
    color: #0D0D0D; /* Accent color for subheadings */
}

.about-section p {
    font-size: 1.1rem; /* Regular text size */
    line-height: 1.6; /* Increased line height for readability */
    margin-bottom: 15px; /* Space below paragraphs */
    color: #555; /* Gray color for text */
}

.about-section ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove default padding */
}

.about-section li {
    padding: 10px 0; /* Space between list items */
    font-size: 1.1rem; /* Regular list item size */
    color: #333; /* Dark color for list items */
}

.about-section strong {
    color: #05C7F2; /* Highlight bold text with accent color */
}

/* Contact Section */

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form button {
    align-self: center;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #E7740E;
    color: #fff;
    text-align: center;
}

h2{
	color: #2E338C;
}

button a, button a:hover, button a:active, button a:visited{
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	text-align: center;
}

/* Up Button Styles */
.up-button {
    position: fixed;
    bottom: 30px; /* Position from the bottom */
    right: 30px; /* Position from the right */
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 50%; /* Circular button */
    width: 50px; /* Width of the button */
    height: 50px; /* Height of the button */
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Pointer cursor on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    transition: background-color 0.3s; /* Smooth background transition */
	z-index: 10;
}

.up-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.up-button i {
    font-size: 24px; /* Icon size */
}


.footer {
    background-color: #333; /* Dark background for footer */
    color: #fff; /* White text color */
    padding: 40px 20px; /* Padding for the footer */
    text-align: center; /* Center text in footer */
}

.footer-container {
    display: flex; /* Flexbox layout for sections */
    flex-wrap: wrap; /* Allow sections to wrap */
    justify-content: space-between; /* Space out sections */
    max-width: 1200px; /* Maximum width for footer */
    margin: auto; /* Center footer */
}

.footer-section {
    flex: 1; /* Each section takes equal space */
    min-width: 200px; /* Minimum width for responsiveness */
    margin: 10px; /* Margin between sections */
}

.footer-section h3 {
    font-size: 1.5rem; /* Section title size */
    margin-bottom: 15px; /* Space below title */
    color: #05C7F2; /* Accent color for section titles */
}

.footer-section p,
.footer-section ul {
    font-size: 1rem; /* Regular text size */
    line-height: 1.5; /* Line height for readability */
    margin-bottom: 10px; /* Space below paragraphs and list */
	list-style: none;
}

.footer-section a {
    color: #fff; /* White color for links */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Transition for hover effect */
}

.footer-section a:hover {
    color: #007bff; /* Change color on hover */
}

.social-icons {
    display: flex; /* Flexbox for social icons */
    justify-content: center; /* Center the icons */
}

.social-icons a {
    margin: 0 10px; /* Margin between icons */
    color: #fff; /* White color for icons */
    font-size: 1.5rem; /* Size for icons */
    transition: color 0.3s; /* Transition for hover effect */
}

.social-icons a:hover {
    color: #007bff; /* Change color on hover */
}

.footer-bottom {
    margin-top: 20px; /* Space above bottom text */
    font-size: 0.9rem; /* Smaller text for copyright */
}

.footer-section p {
    font-size: 1rem; /* Regular text size */
    line-height: 1.5; /* Line height for readability */
    margin-bottom: 10px; /* Space below paragraphs */
}

.footer-section i {
    margin-right: 10px; /* Space between icon and text */
    color: #05C7F2; /* Accent color for icons */
}



.contact-section {
    background-color: #f5f5f5; /* Light background color */
    padding: 40px 20px; /* Padding for the section */
    border-radius: 8px; /* Rounded corners */
    max-width: 100%; /* Maximum width for the form */
    margin: auto; /* Centering the section */
   /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/ /* Subtle shadow */
   text-align: center;
}

.contact-section h2 {
    text-align: center; /* Center the heading */
    margin-bottom: 20px; /* Space below the heading */
}

.contact-section label {
    display: block; /* Block display for labels */
    margin: 10px 0 5px; /* Margin for labels */
}

.contact-section input,
.contact-section textarea {
    width: 100%; /* Full width for inputs */
    padding: 10px; /* Padding for inputs */
    margin-bottom: 15px; /* Space below inputs */
    border: 1px solid #ccc; /* Border style */
    border-radius: 5px; /* Rounded corners */
}

.contact-section button {
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    padding: 10px 20px; /* Button padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
}

.contact-section button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.aboutus-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutus-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.aboutus-card:hover {
    transform: translateY(-10px);
}

.aboutus-icon {
    color: #05C7F2;
    margin-bottom: 15px;
}

.aboutus-card h3 {
    margin-bottom: 15px;
    color: #0D0D0D;
}

.service-card p {
    color: #0D0D0D;
}


.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-group label {
    margin-right: 10px;
    width: 150px; /* Adjust the width as needed */
}

.form-group input {
    flex: 1;
}
