/* Banner */
html {
	scroll-behavior: smooth;
}    
section {
	scroll-margin-top: 0px; /* Navbar height ke according adjust karein */
}
.orbitWrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 0px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	margin-top: 0px;
}
.orbitTrack {
	display: flex;
	transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.orbitSlide {
	flex-shrink: 0;
	width: 100%;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.orbitSlide.active {
	opacity: 1;
	transform: scale(1);
}
.orbitSlide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 0px;
}
.orbitNav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 15px;
}
.orbitBtn {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	border: none;
	font-size: 26px;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.orbitBtn:hover {
	background: rgba(255, 255, 255, 1);
}
.choose-us-modern {
	background-color: #f9f9f9;
	color: #222;
}
.section-head {
	max-width: 900px;
	margin: 0 auto 40px;
}
.section-head h3{
	font-size: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    text-align: center;
}
.section-head h3::before {
	content: '';
    position: absolute;
    left: 50%;
    top: 120%;
    width: 130px;
    height: 2px;
    background-color: #fec903;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}
.choose-us-modern .section-head p {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.feature-card {
	background: white;
	padding: 20px;
	border-left: 5px solid #16a3ff;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.5;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
	position: relative;
}
.feature-card:hover {
	transform: translateY(-5px);
}
.feature-card::before {
	content: '✔';
	color: white;
	background: #fec903;
	font-weight: bold;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	position: absolute;
	left: -12px;
	top: 20px;
}
.about-us h2{
	font-size: 30px;
    letter-spacing: 1px;
}
/* Your existing styles */
.tm-gallery .thumb {
    position: relative;
    overflow: hidden;
}
.tm-gallery .thumb img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
    border-radius: 8px;
}
.tm-gallery .thumb:hover img {
    transform: scale(1.1);
}
.tm-gallery .thumb::after {
    content: "\002B"; /* Plus sign */
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.tm-gallery .thumb:hover::after {
    opacity: 1;
}
#custom-lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.4s ease;
	display: flex; /* Added this line to enable centering */
	flex-direction: column; /* Ensures vertical centering */
	text-align: center; /* Ensures horizontal centering */
}
#custom-lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
	animation: zoomIn 0.4s ease;
	margin: auto; /* This will ensure the image is centered within the lightbox */
}
#lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 100;
}
#lightbox-prev {
    left: 30px;
}
#lightbox-next {
	right: 30px;
}
@keyframes fadeIn {
    from {opacity: 0;} to {opacity: 1;}
}
@keyframes zoomIn {
    from {transform: scale(0.8);} to {transform: scale(1);}
}
/* Owl Carousel Styles */
.gallery-style1-basic .owl-carousel .item {
	position: relative;
}
.gallery-style1-basic .owl-carousel img {
	border-radius: 10px;
    object-fit: cover;
    display: inline-block;
    width: 100%;
    height: 200px;
}
.gallery-style1-basic .owl-theme .owl-nav{
	display: none;
}
/* Icon Box Style */
.icon-box {
	border-radius: 16px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 25px !important;
}
.icon-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Icon Box Text */
.icon-box-title {
	font-weight: 600;
	font-size: 18px;
	color: #333;
	letter-spacing: 1px;
}
.icon-text .content {
	font-size: 18px;
	color: #898a8b;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: 1px;
}
.icon-text .content a {
	font-size: 18px;
	color: #898a8b;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: 1px;
}
.icon-text .content a:hover {
	text-decoration: underline;
}
.custom-contact{
	border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: #f1f1f1 !important;
	padding:20px;
}
.custom-contact label{
	color: #555;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.custom-contact small{
	color:red;
}
/* Form Inputs */
.custom-contact .form-control {
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 12px 15px;
	font-size: 15px;
	box-shadow: none;
	transition: border-color 0.3s ease;
	letter-spacing: 1px;
}
.custom-contact .form-control:focus {
	border-color: #fec903;
	box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}
/* Submit Button */
.custom-contact .btn-theme-colored1 {
	background-color: #fec903;
	color: white;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 10px;
	transition: background-color 0.3s ease;
	border: none;
	letter-spacing: 1px;
}
.custom-contact .btn-theme-colored1:hover {
	background-color: #003170;
}
.custom-footer {
	position: relative;
	background-color: #343434;
	padding: 60px 20px 25px;
	text-align: center;
	z-index: 1;
	overflow: hidden;
}
.custom-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/footer-bg.png') no-repeat center center/cover;
	opacity: 0.08;
	z-index: -1;
}
.custom-footer .footer-icons {
	margin-bottom: 25px;
}
.custom-footer .footer-icons a {
	width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px !important;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.custom-footer .footer-icons a:hover {
	transform: scale(1.1);
}
/* Individual brand colors */
.facebook { background-color: #3b5998; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.twitter { background-color: #1da1f2; }
.google-plus-g { background-color: #dd4b39; }
.youtube { background-color: #ff0000; }
.custom-footer .footer-menu {
	margin-bottom: 20px;
}
.custom-footer .footer-menu a {
	margin: 0 15px;
	color: #ccc;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	letter-spacing: 1px;
}
.custom-footer .footer-menu a:hover {
	color: #00ADB5;
}
.custom-footer .footer-bottom {
	border-top: 1px solid #16a3ff;
	padding-top: 15px;
	font-size: 18px;
	color: #f9d342;
	letter-spacing: 1px;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 18px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 8px 10px;
	border-radius: 20px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 135px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #f9d342;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Scroll to Top Button */
@media (max-width: 768px) {
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
        font-size: 20px;
		padding: 6px 10px;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}
 /* Responsive Design */
@media (max-width: 600px) {
	.custom-footer{
		padding:35px 20px 45px;
	}
	.custom-footer .footer-menu a {
        display: block;
        margin: 10px 0;
	}
	.custom-footer .footer-icons a {
        margin: 10px;
	}
}
@media (max-width: 480px) {
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
		font-size: 18px;
		padding: 5px 8px;
	}
	.orbitNav {
		padding: 0 8px;
	}
}