
/* Styles for screens smaller than 768px (e.g., mobile devices) */
@media (max-width: 768px) {
.logo{
	height: 50px !important;
}
    h2{font-size:30px !important;}
	p{font-size:10px !important;}
	.section-one{
		flex-direction: column;
		width: 100%;
	}
	.right-column p{
		margin-right: 0px !important;
	}
	.btn{
		font-size:10px !important;
	}
	.bottom-row{
		display:none !important;
	}
	.images/image1.gif {
		display:none !important;
	}
	.left-column{
		padding: 15px !important;
				margin-top: 70px;
	}
	
	.nav a{
		font-size: 5px !important;
	}
	.nav ul li{
display:none;
	}
	.dark-section{
	width: 95% !important;
	    padding: 10px !important;
}
.box1, .box2, .box3, .box4{
	padding: 10px 85px !important
}
.right-column {
margin-top: -50px;
}

.about-section{
	flex-direction: column !important;
		width: 100%;
		padding:0px !important;
}
.about-content p{
	    margin-right: 0px !important;
}
.about-images{
	    padding: 10px;
		margin-top: -30px;
}
.testimonials{
	width: 100%;
	padding: 0px !important;
}
.faq-section{
padding: 10px !important;
        width: 95%;
		margin-bottom: 30px;
}
.testimonials h2{
	padding: 10px;
}
.faq-question h3 {
font-size: 10px;
}
.contact-form{
	    display: none !important;
}
.contact-info{
display:none !important;
}
.footer{
	padding: 10px !important;
	width: 95%;
}
.contact-section {
display:none !important;
}

.section-heading {
margin-top: 50px !important;
}
.box-container {
margin-bottom: 30px !important;
}

}


html {
    scroll-behavior: smooth;
}
.form-label{
    font-size: 10px;
}
.formFooter{
display:none;
}
.iframe{
    width: 80%;
    height: 410px;
}
img {
    -webkit-user-drag: none; /* Safari */
    -khtml-user-drag: none; /* Konqueror HTML */
    -moz-user-drag: none; /* Firefox */
    -o-user-drag: none; /* Opera */
    user-drag: none; /* Non-prefixed version, currently
   supported by Chrome and Edge */
}


body {
    margin: 0;
 user-select: none; /* Prevents text selection */
 font-family: 'Open Sans', sans-serif; /* or 'Roboto' */
}
h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

#header {
    position: fixed;
    width: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9); /* Transparent background */
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for background and shadow */
    z-index: 1000; /* Ensure header is above other content */

}

.logo {
    height: 70px; /* Set the height of the logo */
    /* You can adjust the width or set it to auto to maintain the aspect ratio */
    margin-right: 20px; /* Space between logo and navigation */
}


#header.scrolled {
    background: rgb(255 255 255 / 95%); /* Transparent background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Drop shadow */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
 width: 100%;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;
}

.nav a {
    text-decoration: none;
    color: #333; /* Dark gray text */
    font-size: 16px;
}

.nav a:hover {
    text-decoration: none;
    color: #A1540A; /* Darker shade on hover */

}

.cta {
  background-color: #FF860D; /* Primary button color */
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none; /* Remove underline */
    transition: background 0.3s ease;
margin-right:20px;
}

.cta:hover {
    background-color: #A1540A; /* Darker shade on hover */
}

.hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333; /* Adjust to your color */
    transition: 0.3s;
}

/* Mobile Menu Styling */
.nav ul {
    display: flex;
}




/* Section One styles */
.section-one {
    display: flex;
margin-bottom:40px;
}

.left-column {
    flex: 1; /* Take up half of the width */
    display: flex;
    flex-direction: column; /* Stack images vertically */
padding:40px;
}

.top-row, .bottom-row {
    display: flex; /* Align images horizontally */
    flex: 1; /* Take equal height */
}

.left-image {
    width: 50%; /* Each image takes half of the row's width */
    height: 100%; /* Cover the entire height of the row */
    object-fit: cover; /* Ensure the images cover the area without distortion */
}

.right-column {
    flex: 1; /* Take up the other half of the width */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: flex-start; /* Align items to the start (left) */
    padding: 20px;
    text-align: left; /* Left align text */
}

.right-column h2 {
    font-size: 50px; /* Adjust heading size as needed */
    margin-bottom: 10px; /* Space below the heading */
    color: #2B1603; /* Use the dark color for the heading */
}

.right-column p {
    color: #333333;
    text-align: justify;
    margin-right: 80px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.buttons {
    display: flex; /* Align buttons horizontally */
    gap: 20px; /* Space between buttons */
}

/* General styles for buttons */
.btn {
    background-color: #FF860D; /* Primary button color */
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #A1540A; /* Darker shade on hover */
}

.btn-secondary {
    background-color: #2B1603; /* Secondary button color */
}

.btn-secondary:hover {
    background-color: #5B4906; /* Darker shade on hover */
}




.dark-section {
    background-color: #2B1603; /* Dark background for the section */
    padding: 40px; /* Add padding to the section */
}

.section-heading {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 50px;
    margin-top: 0px;
}

.box-container {
    display: flex; /* Use flexbox for horizontal layout */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
 justify-content: center; /* Center items horizontally */
}


.box1 {
    background-image: url('images/box1.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 130px;
    margin: 10px;
    flex: 0 1 170px; /* Adjust width */
    height: 200px; /* Fixed height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* Hide overflow to clip the overlay */
    transition: transform 0.3s; /* Smooth scaling on hover */
}
.box2 {
    background-image: url('images/box2.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 130px;
    margin: 10px;
    flex: 0 1 170px; /* Adjust width */
    height: 200px; /* Fixed height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* Hide overflow to clip the overlay */
    transition: transform 0.3s; /* Smooth scaling on hover */
}
.box3 {
    background-image: url('images/box3.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 130px;
    margin: 10px;
    flex: 0 1 170px; /* Adjust width */
    height: 200px; /* Fixed height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* Hide overflow to clip the overlay */
    transition: transform 0.3s; /* Smooth scaling on hover */
}
.box4 {
    background-image: url('images/box4.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 130px;
    margin: 10px;
    flex: 0 1 170px; /* Adjust width */
    height: 200px; /* Fixed height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* Hide overflow to clip the overlay */
    transition: transform 0.3s; /* Smooth scaling on hover */

}

.overlay {
    position: absolute;
    cursor: pointer; /* Pointer cursor */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(43 22 3 / 80%); /* Black tint */
    opacity: 0; /* Start hidden */
    transition: opacity 0.3s; /* Smooth fade in/out */
    padding: 20px; /* Padding inside overlay */
    text-align: left; /* Align text to the left */
}

.box1:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}


.box1-title {
    font-size: 40px;
    margin: 0; /* Remove default margin */
}
.box2:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}



.box2-title {
    font-size: 40px;
    margin: 0; /* Remove default margin */
}
.box3:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}



.box3-title {
    font-size: 40px;
    margin: 0; /* Remove default margin */
}
.box4:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}



.box4-title {
    font-size: 40px;
    margin: 0; /* Remove default margin */
}

.box-title {
font-size: 25px;
}

.box-description {
font-size: 15px;
margin-bottom:20px;
margin-top:-20px;
}

.box-points {
    list-style: disc; /* Use disc bullet points */
    padding-left: 20px; /* Indent bullet points */
    margin: 10px 0; /* Space between points */
font-size: 12px;
line-height: 25px;
}

.box-button {
    background: #FF860D; /* Button color */
    color: #2B1603; /* Text color */
    border: none; /* No border */
    padding: 10px 15px; /* Padding */
    cursor: pointer; /* Pointer cursor */
    border-radius: 4px; /* Rounded corners */
    transition: background 0.3s; /* Smooth background transition */
}

.box-button:hover {
    background: #2B1603; /* Change background on hover */
    color: white; /* Change text color on hover */
}



.about-section {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 20px;
    background-color: white;
    color: #2B1603;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    font-size: 50px;
    color: #2B1603;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 20pxpx;
    margin-bottom: 20px;
    color: #333333;
  text-align: justify; /* Justified text */
margin-right: 80px;
  line-height: 1.6; 
margin-bottom: 50px;
}

.about-buttons .btn {
  background-color: #FF860D; /* Primary button color */
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    transition: background 0.3s ease;

}


.about-buttons .btn:hover {
        background-color: #A1540A; /* Darker shade on hover */

}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.image-row {
    display: flex;
    gap: 10px;
}

.about-image {
    width: 50%;
    height: auto;
    border-radius: 8px;
}




.testimonials {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px;
    text-align: center;
}

.testimonials h2 {
    color: #2B1603; /* Dark theme color */
    margin-bottom: 30px;
font-size: 50px;
}

.testimonial-container {
    display: flex;
    overflow: hidden; /* Hide overflow to create a sliding effect */
    width: 100%;
    position: relative; /* Relative positioning for the slides */
}

.testimonial-card {
    background-color: white; /* White background for the card */
    border-radius: 15px; /* Rounded corners */
    padding: 40px 20px 20px; /* Padding for spacing */
    position: relative; /* Position relative for overlap */
    margin: 15px; /* Margin around each card */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    flex: 0 0 25%; /* Each card takes up 25% of the width */
    transition: transform 0.5s ease; /* Smooth transition for slide effect */
}

.client-photo {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%; /* Ensure circular clipping */
    overflow: visible; /* Make sure the overflow is visible */
}

.client-photo img {
    width: 100%; /* Full width of the circle */
    height: 100%; /* Full height of the circle */
    object-fit: cover; /* Maintain aspect ratio while covering */
    border-radius: 50%; /* Circular image */
}


.testimonial-text {
    margin-top: 20px; /* Margin for spacing */
}

.testimonial-text p {
    font-style: italic; /* Italic style for testimonial text */
}

.testimonial-text h4 {
    margin: 10px 0 0; /* Margin for spacing */
}

.rating {
    font-size: 20px; /* Size for star rating */
    margin-top: 5px; /* Margin for spacing */
}

.dots-container {
    text-align: center; /* Center the dots */
    margin-top: 20px; /* Spacing above dots */
}

.dot {
    height: 12px; /* Dot height */
    width: 12px; /* Dot width */
    margin: 0 5px; /* Margin between dots */
    background-color: #bbb; /* Default dot color */
    border-radius: 50%; /* Circular dots */
    display: inline-block; /* Display inline */
    cursor: pointer; /* Pointer on hover */
}

.dot.active {
    background-color: #FF860D; /* Active dot color */
}



.faq-section {
    background-color: #ffffff; /* White background */
    padding: 40px;
    text-align: center;
}

.faq-section h2 {
    color: #2B1603; /* Dark Brown for heading */
    margin-bottom: 30px;
font-size:50px;
}

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

.faq-item {
    background-color: rgba(255, 204, 179, 0.8); /* Light Peach with 80% opacity */
    border-radius: 8px;
    margin: 15px 0;
    overflow: hidden; /* Hide overflowing content */
    transition: background-color 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    color: #2B1603; /* Dark Brown for question */
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s; /* For rotation */
}

.faq-answer {
    display: none; /* Initially hide answers */
    padding: 15px 20px;
    text-align: left;
    color: #2B1603; /* Dark Brown for answer text */
}

.faq-item.active .faq-answer {
    display: block; /* Show answer if active */
}

.faq-item.active .arrow {
    transform: rotate(45deg); /* Rotate arrow */
}


.contact-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    color: #2B1603; /* Your theme color */
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, select, textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #FF860D; /* Your theme color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #d5730c; /* Darker shade for hover */
}






.contact-section {
    display: flex;
    height: 80vh;
    width: 100%;
    position: relative;
padding:0px;
}

.form{
width:800px;
}

.contact-form {
    width: 80%;
background-color: rgb(243, 243, 254);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h2{
    font-size: 50px!important;
}

.info-box h3{
font-size: 40px;
}

.contact-info {
    width: 20%;
    background-color: #FF860D; /* Orange background for the right side */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-box {
    background-color: #2B1603; /* Brown color for the overlapping box */
    color: #FFF;
    padding: 50px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 80%; /* Centers it across both sections */
    transform: translateX(-125%);
    text-align: left;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
ba
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 0;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    font-size: 16px;
background-color: #00000000;
}

.contact-form textarea {
    height: 100px; /* Extended height for the message box */
}

.contact-form button {
    background-color: #FF860D;
    color: white;
    padding: 15px 45px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    transition: background 0.3s ease;
margin-bottom : 40px;
}

.contact-form button:hover {
    background-color: #A1540A; /* Darker shade on hover */
}






.footer {
    background-color: #2B1603; /* Dark brown */
    color: white;
    padding: 20px;
    font-size: 0.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
  position: relative; /* Enables z-index layering */
    z-index: 10; /* Ensures it appears above other elements */

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.social-icons {
    display: flex;
}

.social-icons .icon {
    margin-left: 2px;
    color: white;
    text-decoration: none;
}

.social-icons .icon:hover {
cursor:pointer;
}

.copyright{
    font-size: 10px;
    padding: 5px;
}



.scroll-to-top.visible {
    display: block; /* Make it block to allow opacity transition */
    opacity: 1; /* Fully visible when class is added */
}

.scroll-to-top:hover {
    background-color: #2B1603; /* Darker shade for hover effect */
}









