body {
    margin: 0;
    padding: 0;
    background-color: #434448;
    font-family: 'Roboto';
    font-size: 16px; /* Default font size for desktop */
		    margin: 0 auto; /* Center body content */
}







/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
	right:0;
    width: 100%;
    background-color: #fff;
    z-index: 1100;
    padding: 10px 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

/* Shrink Navbar on Scroll */
.navbar.shrink {
    padding: 5px 0px;
    background-color: #ffffff;
}

/* Navbar Menu Styles */
.navbar-menu {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 15px; /* Add spacing between menu items */
}

.navbar-menu li {
    margin: 0;
}

.navbar-menu a {
    text-decoration: none;
    color: #434448;
    font-size: 1em;
    padding: 10px 15px;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect: Underline with same color as text */
.navbar-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #434448;
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Navbar Image */
.navbar-image {
    height: 50px;
    width: auto;
    margin-right: 15px; /* Space between the image and menu */
}

/* Navbar Logo */
.navbar-logo {
    height: 50px;
	margin-left: 20px;
    width: auto;
    margin-right: auto; /* Keep logo on the left */
}

/* Hamburger Icon */
.navbar-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
	margin-right: 25px;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #434448;
    transition: all 0.3s ease;
}

/* Animation for Hamburger Icon */
.navbar-toggle span:nth-child(1) {
    transform-origin: top left;
}

.navbar-toggle span:nth-child(3) {
    transform-origin: bottom left;
}

/* Dropdown Menu */
.navbar-menu.dropdown {
    display: none; /* Hidden initially */
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 25%; /* Adjusted for better responsiveness */
    background-color: #fff;
    position: absolute;
    top: 60px; /* Below the navbar */
    right: 0;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    opacity: 0; /* For fade-in effect */
    transform: translateY(-10px); /* Start slightly above */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-menu.dropdown.show {
    display: flex; /* Makes the menu visible */
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to its original position */
}




#home .home-content {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 700px;
    background-color: #434448; /* Fallback background color */
    background-size: cover;
    background-position: center;
    color: #434448;
    padding: 0px 0px;
    text-align: center;
    overflow: hidden;
    transition: background-image 0.3s ease-in-out; /* Smooth transition */
}



#home .home-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)); /* Gradient from white to transparent */
    z-index: 1; /* Ensures the overlay appears above the background */
}

#home .home-content * {
    position: relative; /* Ensures child elements appear above the overlay */
    z-index: 2;
}





.home-text {
    flex: 100;
    text-align: left;
}

.home-text h2 {
    font-family: 'Roboto';
    position: relative;
    top: 0px;
    left: 25px;
    font-size: 3em;
    margin: 0;
}

.home-text p {
    font-family: 'Roboto';
    position: relative;
    top: 25px;
    left: 25px;
    font-size: 1.3em;
    margin: 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


	


#about {
    min-height: 400px;
}

/* New Subsection: Who We Are */
.about-subsection {
    background-color: #434448;
    padding: 50px 20px;
}

.about-sub-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    animation: fadeInUp 1s ease-in-out; /* Apply bottom-to-top animation */
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
	max-height: 400px;
    height: auto;
    border-radius: 10px;

}

.about-text {
    flex: 1;
    margin-left: 20px;
	    margin-right: 20px;

}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Initially hide the subsection */
#about-subsection {
    opacity: 0;
    transform: translateY(50px); /* Start 50px below */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; /* Smooth transition */
}

/* Visible state to trigger the animation */
#about-subsection.visible {
    opacity: 1;
    transform: translateY(0); /* Move to the original position */
}


/* Bottom-to-Top Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px); /* Start from 50px below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to the original position */
    }
}


/* New Subsection: Transform Your Business */
#about-transform {
    height: 400px;
	    background-color: #434448; /* White box for text */

    background-color:#434448; /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 50px;
    color: #fff; /* Ensure text is visible on background */
}

#about-transform .transform-content {
    background-color: #ffffff; /* White box for text */
    color: #000; /* Black text inside the box */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 350px;
	 position: relative; /* Or absolute if needed */
    top: 150px; /* Move the box down */
	 height: 250px;
}

#about-transform h2 {
	font-family: 'Roboto';
    font-size: 2em;
    margin-bottom: 20px;
}

#about-transform p {
	font-family: 'Roboto';
    font-size: 1.2em;
    line-height: 1.5;
}

/* Animation for Scroll Trigger */
#about-transform {
    opacity: 0;
    transform: translateY(50px); /* Start below the viewport */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

#about-transform.visible {
    opacity: 1;
    transform: translateY(0); /* Move to the original position */
}





/* Centered Separator Container */
.header-separator-container {
    display: flex;
    justify-content: center;  /* This centers the separator horizontally */
    width: 100%;
}

        .header-separator {
            border-top: 6px solid #000000;
            width: 100px;
            margin: 30px ;
        }

    

/* Separator Line */
.header-separator-slim {
    border-top: 4px solid #000000;  /* Separator line style */
    width: 50px;  /* Set width to 50% of the container */
    margin: 10px 0;  /* Add space above and below */
}









/* Service Section Styles */
#services {
    position: relative;
	    padding-top: 50px; /* Reduce padding from the top */

}

#services .section-header {
    text-align: center; /* Center the header text */
    font-size: 2em; /* Adjust font size */
    margin-bottom: 15px; /* Add space below the header */
    color: #fff; /* Text color */
    font-family: 'Roboto';/* Font family */
	    
}

/* Services grid and service-box styles remain as is */
#services .services-grid {
    display: flex;
    justify-content: center;
    flex-direction: row; /* Align items in a row horizontally */
    flex-wrap: nowrap;
    gap: 10px;
    background-color: #434448;
    top: 20px;
    padding: 20px;
    padding-top: 20px; /* Reduce padding from the top */
	    padding-bottom: 20px; /* Reduce padding from the top */


}

.service-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
	max-height:auto;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.service-box h3 {
    margin-top: 20px;
    font-size: 1.5em;
    color: #434448;
}

.service-box p {
    margin-top: 10px;
    color: #666;
    font-size: 1em;
}







	
	/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px;
    background-color: #fff;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: 'Roboto';
    font-size: 14px;
}

.footer-left {
    text-align: left;
}

.footer-left h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #434448;
}

.footer-left p {
    margin: 5px 0;
    color: #333;
}

.footer-left a {
    color: #a05030; /* Adjust color for the link */
    text-decoration: none;
}

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

.footer-right {
    text-align: right;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px; /* Space between menu items */
}

.footer-menu li {
    display: inline;
}

.footer-menu a {
    text-decoration: none;
    color:#434448; /* Adjust menu item color */
    font-weight: bold;
}

.footer-menu a:hover {
      color: #0091D5; /* Lighter or highlighted color on hover */

}

/* Footer Logo */
.footer-logo {
    height: 50px;
	margin-left: auto;
    width: auto;
    margin-right: auto; /* Keep logo on the left */
}

/* Footer Logo */
.footer-image {
    height: 50px;
	    justify-content: center;
   flex-direction: column;
	margin-left: auto;
    width: 50%;
    margin-right: auto; /* Keep logo on the left */
}
/* General Section Styles */
#contact {
    background-color: #434448; /* Light background */
    padding: 50px 0; /* Space around the section */
		 position: relative; /* Or absolute if needed */

}

#contact .section-header {
    text-align: center; /* Center the header text */
    font-size: 2em; /* Adjust font size */
    margin-bottom: 15px; /* Add space below the header */
	    margin-top: 85px; /* Add space below the header */

    color: #fff; /* Text color */
    font-family: 'Roboto';/* Font family */
	    
}
/* Contact Box Styles */
.contact-box {
    background-color: #fff;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto; /* Center the box */
	margin-top: auto;
    z-index: 2; /* Make sure contact box is on top */
    position: relative; /* Needed for z-index to work properly */


}

/* Map Section Styles */
.contact-map {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
	margin-top: 30px;
	    z-index: 1; /* Make sure contact box is on top */


}

.contact-map h1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
	width: 95%;
	    background-color: #434448; /* Light background */
		    height: 500px;


}



/* Contact Details and Form Layout */
.contact-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    gap: 30px;
		z-index: 1000;

}

.contact-details {
    width: 100%; /* Full width for the top section */
    text-align: center; /* Center-align text */
    padding: 0 20px;
}

.contact-details h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
    font-size: 0.8em;
    color: #555;
}

.contact-form {
    width: 100%; /* Full width for the bottom form */
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* Center-align form fields */
}

.form-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%; /* Full width for group inputs */
}

input,
textarea {
    width: 100%; /* Adjust width for responsiveness */
    max-width: 1180px; /* Set a max width for fields */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2em;
}

button {
    width: 100%; /* Centered button with fixed width */
    background-color: #434448;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color:#0091D5;
}
/* For Tablets (up to 768px) */
@media (max-width: 1000px) {
    .navbar {
		
        flex-wrap: nowrap; /* Keep logo and toggle on the same row */
		width:100%;

    }

    .navbar-toggle {

        display: flex; /* Show hamburger icon */
    }

    .navbar-menu {
        display: none; /* Hide the menu for smaller screens */
    }
	
	 .home-content {
        height: 250px; /* Slightly reduce logo size */
		width: 100%;
		

    }
.home-text {
  
    text-align: center;
		     right: 0px;
    left: 0px;
}

.home-text h2 {

    font-size: 1.5em;
		     right: 0px;
    left: 0px;

}

.home-text p {

    font-size: 1.1em;
    margin: 5px 0;
		     right: 0px;
    left: 0px;

}




    body {
		width: 100%;
        font-size: 14px; /* Reduce font size slightly for tablets */
        padding: 0 10px; /* Add padding for better spacing */
	
    }
	.about-content,
    .about-sub-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .about-text {
        margin-left: 0;
		margin-right: 0;
    }
	
	
	button {
    width: 100%; /* Centered button with fixed width */

}

    #services .services-grid {
        flex-direction: column; /* Stack vertically on small screens */
        align-items: center; /* Center the items */
    }
	
.contact-map iframe {

	width: 100%;
	    background-color: #434448; /* Light background */
		    height: 500px;




}

 #about-transform {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #about-transform .transform-content {
        width: 100%;
    }
	
	 .header-separator {
                width: 30%; /* Adjust for responsiveness */
                margin: 20px auto; /* Center it */
            }

.footer-left h3 {
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    color: #5a3b1d;
}

.contact-box {
    width: 70%;
  


}
.footer {
    
    font-size: 8px;
	
}

}

/* For Tablets (up to 480px) */
@media (max-width: 480px) {
    .navbar {
        flex-wrap: nowrap; /* Keep logo and toggle on the same row */
		width:100%;

    }

    .navbar-toggle {
        display: flex; /* Show hamburger icon */
    }

    .navbar-menu {
        display: none; /* Hide the menu for smaller screens */
    }
	
	 .home-content {
        height: 200px; /* Slightly reduce logo size */
		width: 100%;
		

    }
.home-text {
  
    text-align: center;
		     right: 0px;
    left: 0px;
	
}

.home-text h2 {

    font-size: 1.3em;
		     right: 0px;
    left: 0px;

}

.home-text p {

    font-size: 1.1em;
    margin: 4px 0;
		     right: 0px;
    left: 0px;

}




    body {
		width: 100%;
        font-size: 12px; /* Reduce font size slightly for tablets */
        padding: 0 8px; /* Add padding for better spacing */

    }
	.about-content,
    .about-sub-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 18px;
    }

   .about-text {
        margin-left: 0;
		margin-right: 0;
    }
	
	
	button {
    width: 100%; /* Centered button with fixed width */

}

    #services .services-grid {
        flex-direction: column; /* Stack vertically on small screens */
        align-items: center; /* Center the items */
    }
	
.contact-map iframe {

	width: 95%;
	    background-color: #434448; /* Light background */
		    height: 400px;




}

 #about-transform {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    #about-transform .transform-content {
        width: 100%;
    }
	
	 .header-separator {
                width: 30%; /* Adjust for responsiveness */
                margin: 18px auto; /* Center it */
            }
			
			.footer-left h3 {
    margin: 0;
    font-size: 0.8em;
    font-weight: bold;
    color: #5a3b1d;
}
	

.footer {
    
    font-size: 8px;
	
}

.contact-box {
    width: 60%;
  


}

/* Footer Logo */
.footer-image {
    height: auto;
	    justify-content: center;
   flex-direction: column;
	margin-left: auto;
    width: 100px;
    margin-right: auto; /* Keep logo on the left */
}
/* Footer Logo */
.footer-logo {
    height: auto;
	    justify-content: center;
   flex-direction: column;
	margin-left: auto;
    width: 75px;
    margin-right: auto; /* Keep logo on the left */
}

.service-box {

width: 350px;}


}
	#botField {
  display: none !important;
}
