:root {
	--primary-color: #ff5a00;
	--secondary-color: #ff9200;
	--tertiary-color: #ff3800;
	--quaternary-color: #ff9200;
}

body {
	background-color: white;
	font-family: Arial, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#navbar {
	background-color: #ff5a00;
	padding: 10px;
	display: flex;
	justify-content: space-around;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 5;


}






#navbar a {
	color: white;
	text-decoration: none;
	font-size: 1.2em;
}

#navbar a:hover {
	color: black;
}


#content {
	background-color: #cacaca;
	padding: 20px;
	border-radius: 10px;
	width: 75%;
	margin: 20px auto;
}


form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"] {
	padding: 10px;
	border: none;
	border-radius: 5px;
}

form input[type="submit"] {
	background-color: var(--tertiary-color);
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

form input[type="submit"]:hover {
	background-color: var(--quaternary-color);
}



.container1 {
	display: flex;
	justify-content: space-between;
	margin: 10px 20px;
}



.text-container {
	flex: 8;
	padding-left: 20px;
}

.text-container h2 {
	font-size: 40px;

}

.text-container p {
	line-height: 1.6;
	font-size: larger;
}


section {
	padding: 60px 0;
}

.section-bg {
	background-color: #fef8f5;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;

}

.section-title h2 {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 0;
	line-height: 1px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.section-title p {
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;
	font-size: 32px;
	font-weight: 700;
	color: #000000;
}

.section-title p::after {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: #eb5d1e;
	bottom: 0;
	left: calc(50% - 30px);
}


.team {
	padding: 0 155px;
}

.image-row {
	display: flex;
	justify-content: space-between;
}

.image-container {
	position: relative;
	width: 24%;
}

.image-container img {
	width: 100%;
	height: auto;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 128, 51, 0.5);
	/* semi-transparent */
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}


.image-container:hover .overlay {
	height: 100%;
}

.text {
	color: white;
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}


.contact .info {
	border-top: 3px solid #eb5d1e;
	border-bottom: 3px solid #eb5d1e;
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
	font-size: 20px;
	color: #eb5d1e;
	float: left;
	width: 44px;
	height: 44px;
	background: #fdf1ec;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #7a6960;
}

.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #ab9d95;
}

.contact .info .email p {
	padding-top: 5px;
}

.contact .info .social-links {
	padding-left: 60px;
}

.contact .info .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin-right: 10px;
}

.contact .info .social-links a:hover {
	background: #eb5d1e;
	color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #eb5d1e;
	color: #fff;
}

/* Adjust grid layout for row */
.contact .row {
	display: flex;
	flex-wrap: wrap;
}

.contact .col-lg-5 {
	flex: 0 0 50%;
	/* Set column width to 50% */
}

.contact .col-lg-7 {
	flex: 0 0 50%;
	/* Set column width to 50% */
}

/* Style form groups */
.contact .form-group {
	margin-bottom: 100px;
}

.contact .php-email-form button[type="submit"] {
	background: #eb5d1e;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #ef7f4d;
}

.contact .php-email-form {
	width: 100%;
	border-top: 3px solid #eb5d1e;
	border-bottom: 3px solid #eb5d1e;
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding-bottom: 20px;
}

.contact .php-email-form .form-row {
	margin-bottom: 20px;
}

.contact .php-email-form .form-group {
	margin-bottom: 20px;
}

.contact .php-email-form label {
	font-weight: 600;
	color: #7a6960;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
	border-radius: 4px;
	border: 1px solid #ccc;
	padding: 10px;
	width: 100%;
}

.contact .php-email-form button[type="submit"] {
	background: #eb5d1e;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
	cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #ef7f4d;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message {
	background: #ed3c0d;
}

.contact .php-email-form .sent-message {
	background: #18d26e;
}





.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	background: #eb5d1e;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 99999;
}

.back-to-top i {
	font-size: 24px;
	position: absolute;
	top: 8px;
	left: 8px;
}

.back-to-top:hover {
	color: #fff;
	background: #ee7843;
	transition: background 0.2s ease-in-out;
}


.photos {
	padding: 10px 55px;
	position: relative;
}

.section-title {
	text-align: center;
}

.slider-container {
	position: relative;
}

.image-slider {
	display: flex;
	overflow: hidden;
}

.slide {
	flex: 0 0 auto;
}

.slide img {
	max-width: 100%;
	/* Ensure the image fits within the container */
	max-height: 380px;
	/* Set a maximum height to maintain aspect ratio */
	display: block;
	margin: 0 auto;
	/* Center the image horizontally */
}


.dots {
	text-align: center;
	margin-top: 10px;
}

.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #bbb;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.active {
	background-color: #555;
}

.features .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	margin: 0 0 40px 0;
	background: #fff;
	box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
	transition: all 0.3s ease-in-out;
	border-radius: 15px;
	text-align: center;
	border-bottom: 3px solid #fff;
}

.features .icon-box:hover {
	transform: translateY(-15px);

}

.features .icon i {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 15px;
	color: #ef7f4d;
}

.features .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

.features .title a {
	color: #111;
}

.features .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
	text-align: center;
}



#footer {
	background: #fff;
	padding: 0 0 30px 0;
	color: #212529;
	font-size: 14px;
	background: #fef8f5;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #fff;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
	font-size: 22px;
	margin: 0 0 30px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Raleway", sans-serif;
	color: #5c5c5c;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #212529;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #f39e7a;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #5c5c5c;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #eb5d1e;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #eb5d1e;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #ef7f4d;
	color: #fff;
	text-decoration: none;
}

#footer .copyright {
	text-align: center;
	float: left;
}

#footer .credits {
	float: right;
	text-align: center;
	font-size: 13px;
	color: #212529;
}

#footer .credits a {
	color: #eb5d1e;
}

@media (max-width: 575px) {

	#footer .copyright,
	#footer .credits {
		float: none;
		-moz-text-align-last: center;
		text-align-last: center;
		padding: 3px 0;
	}
}

.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	background: #eb5d1e;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 99999;
}

.back-to-top i {
	font-size: 24px;
	position: absolute;
	top: 8px;
	left: 8px;
}

.back-to-top:hover {
	color: #fff;
	background: #ee7843;
	transition: background 0.2s ease-in-out;
}



.visitor-pass .section-title {
	text-align: center;
	padding-bottom: 30px;
}

.visitor-pass form {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.visitor-pass form label {
	font-weight: bold;
}

.visitor-pass form input[type="text"],
.visitor-pass form input[type="email"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ced4da;
	border-radius: 5px;
}

.visitor-pass form button {
	background-color: #eb5d1e;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.visitor-pass form button:hover {
	background-color: #ff7f4d;
}

.book-search {
	padding: 60px 0;
}

.book-search .section-title {
	text-align: center;
	margin-bottom: 30px;
}

.book-search .section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.book-search .section-title p {
	font-size: 18px;
	color: #666;
	margin-bottom: 0;
}

.book-search .form-group {
	margin-bottom: 20px;
}

.book-search label {
	font-weight: 600;
	color: #333;
}

.book-search input[type="text"] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
}

.book-search button {
	background-color: #eb5d1e;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s;
}

.book-search button:hover {
	background-color: #333;
}

@media (max-width: 768px) {
	.book-search .section-title h2 {
		font-size: 30px;
	}
}

.book-search {
	padding: 60px 0;
}

.book-search .section-title {
	text-align: center;
	margin-bottom: 30px;
}

.book-search .section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.book-search .section-title p {
	font-size: 18px;
	color: #666;
	margin-bottom: 0;
}

.book-search .form-group {
	margin-bottom: 20px;
}

.book-search label {
	font-weight: 600;
	color: #333;
}

.book-search input[type="text"] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
}

.book-search button {
	background-color: #eb5d1e;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s;
}

.book-search button:hover {
	background-color: #333;
}

@media (max-width: 768px) {
	.book-search .section-title h2 {
		font-size: 30px;
	}
}
