.form-title {
    width: 472px;
    height: auto;
    padding: 40px;
    position: absolute;
    right: 0;
    top: -90px;
    z-index: 1000;
    border-radius: 5px;
}
.form-title h1 {
        text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #4a2d16;
    margin-bottom: 15px;
    position: relative;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    z-index: 1000;
}
.slides-container {
    z-index: 1 !important;
}
.hero-area {
	position: relative;
	width: 100%;
	height: auto;
	background: url(../images/about/placement-main-img.jpg) no-repeat center center / cover;
	display: flex;
	align-items: center;
	text-align: left;
	padding: 100px;
	color: white;
}
.hero-area .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.hero-area .content {
	position: relative;
	max-width: 700px;
	z-index: 2;
}
.hero-area h1 {
	font-size: 36px;
	font-weight: bold;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	color: #f4c03e;
}
.hero-area p {
	margin: 15px 0;
	font-size: 18px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.hero-area .slide-btn {
	display: flex;
	gap: 15px;
}
.hero-area .btn {
	padding: 12px 24px;
	text-decoration: none;
	background: white;
	color: black;
	font-weight: bold;
	border-radius: 5px;
	transition: 0.3s;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.hero-area .btn.primary {
	background: #f4c03e;
	color: black;
}
.hero-area .btn:hover {
	opacity: 0.8;
}
.gallery-col{
	margin-bottom: 20px;
}
.gallery-col-img{
	border: 2px solid #fff !important;
}
.contact-info {
	background: #f8f9fa;
	padding: 20px;
	margin-top: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.contact-info ul li {
	font-size: 16px;
	color: #555;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.contact-info ul li i {
	font-size: 18px;
	color: #6e4535;
	margin-right: 10px;
}
.contact-info ul li a {
	color: #6e4535;
	text-decoration: none;
	font-weight: 500;
}
.contact-info ul li a:hover {
	text-decoration: underline;
}
.logos {
	text-align: center;
	padding: 40px 0;
	background: #f8f9fa;
}
.logos h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.owl-carousel .item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo_items img {
	width: 120px;
	height: auto;
	margin: 10px;
	transition: transform 0.3s ease-in-out;
}
.logo_items img:hover {
	transform: scale(1.1);
}
/* Owl Carousel Custom Arrows */
.owl-prev, .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #007bff;
	color: #fff !important;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: 0.3s ease;
}
.owl-prev {
	left: -50px;
}
.owl-next {
	right: -50px;
}
.owl-prev:hover, .owl-next:hover {
	background: #0056b3;
}
.numbers_section {
    padding: 20px 0;
    text-align: center;
}
.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Items को बराबर स्पेस देने के लिए */
    padding: 0;
    list-style: none;
}
.numbers li {
    flex: 1 1 22%; /* 4 items per row (desktop) */
    max-width: 22%;
    margin: 10px;
    background: #693d26;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.numbers li i {
    font-size: 40px;
    margin-bottom: 10px;
    margin-right: 0px;
    float: none;
}
.numbers li h3 {
    font-size: 24px;
    margin: 10px 0;
    margin-bottom: 15px;
}
.numbers li span {
    font-size: 16px;
}
.course-contact-buttons {
	margin-top: 10px;
    display: inline-flex;
    gap: 10px;
}
.course-contact-buttons .btn {
	font-size: 16px;
	padding: 10px 20px;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
}
/* Common Button Styles */
.call-btn, .whatsapp-btn {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 400;
    color: white;
    border-radius: 8px;
    text-transform: capitalize;
    text-decoration: none;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}
/* Call Button Styling */
.call-btn {
	background-color: #007bff; /* Blue */
	box-shadow: 0 4px 10px rgba(0, 0, 255, 0.3);
}
.call-btn:hover {
	background-color: #0056b3; /* Darker Blue */
	transform: scale(1.05);
	box-shadow: 0 6px 15px rgba(0, 0, 255, 0.5);
	color:#fae87a;
}
/* WhatsApp Button Styling */
.whatsapp-btn {
	background-color: #25D366; /* WhatsApp Green */
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
	background-color: #1ebe5d; /* Darker Green */
	transform: scale(1.05);
	box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
	color:#fae87a;
}
/* Icon Animations */
.call-btn i, .whatsapp-btn i {
	animation: shake 1.5s infinite;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	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: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #FF9800;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
@keyframes shake {
	0%, 100% { transform: rotate(0); }
	25% { transform: rotate(-10deg); }
	50% { transform: rotate(10deg); }
	75% { transform: rotate(-10deg); }
}
/* Responsive Design for Tablet & Mobile */
@media screen and (max-width: 1024px) {
    .numbers li {
        flex: 1 1 45%; /* Tablet View - 2 items per row */
        max-width: 45%;
    }
}
@media (max-width: 768px) {
	.navbar-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.logo {
		flex: 1;
		text-align: left;
	}
	.navbar-toggle {
		float: right;
	}
	.form-header {
        position: absolute; /* फॉर्म को Absolute Position देना */
        top: 130px; /* Banner के ऊपर सेट करना */
        left: 50%; /* सेंटर में लाने के लिए */
        transform: translateX(-50%); /* ठीक सेंटर में करने के लिए */
        z-index: 10; /* Banner के ऊपर दिखाने के लिए */
        width: 90%; /* मोबाइल पर अच्छी Width रखने के लिए */
        background: rgba(255, 255, 255, 0.9); /* हल्का Background ताकि Banner दिखे */
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* हल्का Shadow */
    }
	.form-container {
        position: static;
        width: 100%;
        margin: 0px 0;
        padding: 15px;
    }
	.form-container h2 span {
		font-size: 14px;
        line-height: 25px;
        margin-top: 15px;
	}
    .banner {
        position: relative; /* Banner की Position सेट करना */
        z-index: 1;
        height: 850px !important;!i;!;
    }
	.form-title {
		position: static;
        width: 100%;
        margin: 0px 0;
        padding: 0;
        padding-top: 10px;
	}
	.form-title h1 {
		text-align: center;
		font-size: 30px;
		font-weight: 500;
		color: #4a2d16;
		font-family: "Jost", sans-serif;
		letter-spacing: 1px;
		z-index: 1000;
	}
	.hero-area {
		text-align: center;
		padding: 30px;
	}
	.hero-area .content {
		max-width: 100%;
	}
	.hero-area h1 {
		font-size: 28px;
	}
	.hero-area p {
		font-size: 16px;
	}
	.hero-area .slide-btn {
		flex-direction: column;
		align-items: center;
	}
	.hero-area .btn {
		width: 100%;
		text-align: center;
	}
	.numbers li {
        flex: 1 1 100%; /* Full width for small screens */
        max-width: 100%;
    }
	.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;
	}
	.footer {
		background-color: #6e4535;
		padding: 15px 0px 50px;
	}
	.footer p {
		font-size: 15px;
		color: #dcdce5;
		padding: 0;
		font-family: "Jost", sans-serif;
		letter-spacing: 1px;
	}
}
@media (max-width: 375px) {
	.form-title {
        position: static;
        width: 100%;
        margin: 0px 0;
        padding: 0;
        padding-top: 10px;
    }
	.form-title h1 {
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        color: #4a2d16;
        font-family: "Jost", sans-serif;
        letter-spacing: 1px;
        z-index: 1000;
    }
}
@media (max-width: 320px) {
	.form-title {
        position: static;
        width: 100%;
        margin: 0px 0;
        padding: 0;
        padding-top: 10px;
    }
	.form-title h1 {
        text-align: center;
        font-size: 23px;
        font-weight: 500;
        color: #4a2d16;
        font-family: "Jost", sans-serif;
        letter-spacing: 1px;
        z-index: 1000;
    }
	.call-btn, .whatsapp-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 12px 20px;
		font-size: 15px;
		font-weight: 400;
		color: white;
		border-radius: 8px;
		text-transform: capitalize;
		text-decoration: none;
		font-family: "Jost", sans-serif;
		letter-spacing: 1px;
		transition: all 0.3s ease-in-out;
	}
}