html,
body {
	height: 100%;
	font-family: 'Rubik', sans-serif;
	scroll-behavior: smooth;
}

/* Smooth scrolling for all elements */
html {
	scroll-behavior: smooth;
}

/* Smooth scrolling for older browsers */
* {
	scroll-behavior: smooth;
}

/* Enhanced scroll animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scroll-triggered animations */
.fade-in-up {
	animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
	animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
	animation: slideInRight 0.8s ease-out;
}

/* Enhanced button focus states */
.btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button, .brand-card, .feature-item {
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #111111;
	margin: 0;
	font-weight: 500;
	font-family: 'Rubik', sans-serif;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 36px;
	line-height: 1.2;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 14px;
}

p {
	font-size: 14px;
	color: #636363;
	line-height: 1.6;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	list-style:	 none;
	padding: 0;
	margin: 0;
}


/*---------------------
	Helper CSS
-----------------------*/

.spad {
	padding-top: 90px;
	padding-bottom: 90px;
}

.section-title {
	margin-bottom: 70px;
}

.section-title h3 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	background: #212121;
	color: #fff;
	padding: 18px 30px;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	border-radius: 50px;
	min-width: 170px;
	text-align: center;
	border: none;
	cursor: pointer;

}

.site-btn a {
	color: #fff;
}




/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #004c54;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
		border: 4px solid #e2dacf;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #874600;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
		border: 4px solid #af8548;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #2e33f3;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #5a13b6;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #2e33f3;
		border-left-color: transparent;
	}
}


/*---------------------
	Header section
-----------------------*/

header {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: #004c54;
}


.navbar li, a {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}

.navbar .site-logo {
	padding: 0 0 0 25px;
	cursor: pointer;
}

.nav-links {
	list-style: none;
}

.nav-links li {
	display: inline;
}

.nav-links li a {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	padding: 25px;
	margin: 0px;
	-webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.nav-links li a:hover {
	color: #ff6b35;
	transform: translateY(-2px);
}

.nav-links li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 20px;
	left: 50%;
	background-color: #ff6b35;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-links li a:hover::after {
	width: 60%;
}

.nav-links li.active a {
	color: #ff6b35;
}

/* Hamburger default */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 25px;
    color: white;
    z-index: 1100; /* stays on top */
}

/* When menu is active, rotate hamburger and change icon */
.hamburger.active i {
    transform: rotate(90deg);
}

/* Replace bars icon with X using FontAwesome */
.hamburger.active i:before {
    content: "\f00d"; /* Font Awesome 'X' icon */
}

/* Smooth transition */
.hamburger i {
    transition: 0.3s;
}

.nav-links-mobile {
	display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

	.nav-links {
		display: none;
	}

    /* Hide the nav links in row form */
    .nav-links-mobile {
        position: fixed;
        top: 70px; /* under navbar */
        right: -100%;
        height: 100vh;
        width: 60%;
        background-color: #004c54;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 30px;
        gap: 40px;
        display: flex;
        transition: 0.3s;
    }

    /* When active, slide in */
    .nav-links-mobile.active {
        right: 0;
		z-index: 1000;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }


    /* Make li vertical */
    .nav-links-mobile li {
		width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* thin white line */
    }


}





/*---------------------
	FAQ Section
-----------------------*/
.faq-container {
	max-width: 800px;
	margin: 100px auto 50px;
	padding: 20px;
}
.faq-item {
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.faq-question {
	font-weight: bold;
	cursor: pointer;
	padding: 10px;
	background: #004c54;
	color: #fff;
	border-radius: 5px;
}

/*---------------------
	Feature Section
-----------------------*/

.features-section {
	background: #004c54;
	color: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 0 50px 0 50px;
}

.feature-item {
	text-align: center;
	padding: 2rem 1rem;
}

.feature-item h3 {
	color: #e79844;
}

.feature-item p {
	color: white;
}

.feature-icon {
	font-size: 3rem;
	color: #efbc6f;
	margin-bottom: 1rem;
}

.feature-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.feature-text {
	opacity: 0.9;
	line-height: 1.6;
}

/*---------------------
	Footer Section
-----------------------*/

.footer-section {
	background-color: #e2dacf;
	background-image: url("../img/footer-bg.png");
	background-repeat: no-repeat;
	background-position: center 75px;
}


.footer-section .copyright {
	border-top: 1px solid #874600;
	padding: 27px 0;
	text-align: center;
	color: #212121
}

/*---------------------
	Hero Section
-----------------------*/
.hero-section {
	background: linear-gradient(135deg, #086671 0%, #874f14 100%);
	color: white;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	padding-right: 30px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	padding: 12px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: #ff6b35;
	border: 2px solid #ff6b35;
	color: white;
}

.btn-primary:hover {
	background: #e55a2b;
	border-color: #e55a2b;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
	transform: translateY(-1px) scale(1.02);
	transition: all 0.1s ease;
}

.btn-outline {
	background: transparent;
	border: 2px solid #fff;
	color: #ffffff;
}

.btn-outline:hover {
	background: #fff;
	color: #e55a2b;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline:active {
	transform: translateY(-1px) scale(1.02);
	transition: all 0.1s ease;
}

.hero-image {
	text-align: center;
}

.hero-image img {
	max-width: 300px;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/*---------------------
	Hero Logos Section
-----------------------*/
.hero-logos-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section-subtitle {
	margin-bottom: 40px;
}

.section-subtitle p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.brand-logos-carousel {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.logo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0.7;
	transform: scale(0.9);
}


.brand-logo-img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease;
	margin-bottom: 15px;
}


.logo-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}


/* Logo animation on page load */
.logo-item:nth-child(1) { animation: logoSlideIn 0.6s ease-out 0.2s both; }
.logo-item:nth-child(2) { animation: logoSlideIn 0.6s ease-out 0.4s both; }
.logo-item:nth-child(3) { animation: logoSlideIn 0.6s ease-out 0.6s both; }
.logo-item:nth-child(4) { animation: logoSlideIn 0.6s ease-out 0.8s both; }

@keyframes logoSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.8);
	}
	to {
		opacity: 0.7;
		transform: translateY(0) scale(0.9);
	}
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
	.hero-logos-section {
		margin-top: 40px;
		padding-top: 30px;
	}
	
	.brand-logos-carousel {
		gap: 25px;
	}
	
	.brand-logo-img {
		width: 60px;
		height: 60px;
	}
	
	.logo-label {
		font-size: 0.8rem;
	}
}

/*---------------------
	Brands Section
-----------------------*/
.brands-section {
	padding: 100px 0 60px 0;
	background: #f8f9fa;
}

.section-header {
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 0;
}

.brand-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
}

.brand-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
	position: relative;
	overflow: hidden;
	height: 200px;
}

.card-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-card:hover .card-image img {
	transform: scale(1.15);
}

.brand-logo-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;
}

.overlay-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-card:hover .overlay-logo {
	transform: scale(1.2) rotate(5deg);
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 3;
	backdrop-filter: blur(2px);
}

.brand-card:hover .card-overlay {
	opacity: 1;
}

.card-overlay .btn {
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	transform: translateY(20px);
	opacity: 0;
}

.brand-card:hover .card-overlay .btn {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}

.card-body {
	padding: 25px;
	text-align: center;
}

.brand-logo {
	margin-bottom: 15px;
}

.brand-logo img {
	max-width: 60px;
	height: auto;
}

.card-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.card-text {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-content {
		padding-right: 0;
		margin-bottom: 40px;
		text-align: center;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.brands-section {
		padding: 60px 0;
	}
	
	.section-header h2 {
		font-size: 2rem;
	}
}

/* FAQ Section Styles */
.faq-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .section-header {
	margin-bottom: 60px;
}

.faq-section .section-header h2 {
	color: #333;
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.faq-section .section-header p {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px;
	background: linear-gradient(135deg, #004c54 0%, #9f6e3a 100%);
	color: white;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: linear-gradient(135deg, #004c54 0%, #9f6e3a 100%);
}

.faq-question span {
	font-size: 1.1rem;
	font-weight: 500;
	flex: 1;
}

.faq-question i {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	margin-left: 15px;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	background: white;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 25px 30px;
	margin: 0;
	color: #555;
	line-height: 1.6;
	font-size: 1rem;
	border-top: 1px solid #f0f0f0;
}

/* FAQ Animation for opening */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-item.active .faq-answer p {
	animation: slideDown 0.3s ease-out;
}

/* Responsive FAQ adjustments */
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0;
	}
	
	.faq-section .section-header h2 {
		font-size: 2rem;
	}
	
	.faq-question {
		padding: 20px 25px;
	}
	
	.faq-question span {
		font-size: 1rem;
	}
	
	.faq-answer p {
		padding: 20px 25px;
		font-size: 0.95rem;
	}
}


/* Scoped styles for Reviews section */
.reviews-section { 
	background: #f8f9fa; 
	padding: 0 0 100px 0; 
}

.reviews-section .section-header h2 { 
	color: #333; 
}

.reviews-section .section-header p { 
	color: #666; 
}

.brand-summary-card { 
	background: white; 
	border:1px solid #f36100;
	border-radius:8px; 
	padding:16px; 
	height:100%; 
	color:#eaeaea;
	border-color:#f36100; 
	box-shadow:0 0 0 2px rgba(243,97,0,0.15);
}

.brand-summary-card h5 {
	color:#333;

}
.brand-summary-card .stars i { 
	color:#f5c518; 
	margin-right:2px; 
}

.brand-summary-card .avg-text { 
	font-size:12px; 
	color:#a8a8a8; 
	margin-top:6px; 
}

.star-num { 
	font-size:12px; 
	color:#c9c9c9; 
	margin-left:6px; 
}

.filter-buttons .btn { 
	margin-right:8px; 
	margin-bottom:8px;
	color: #666;
}
 

.filter-buttons .btn-outline {
	border-color: #666;

}

.filter-buttons .btn:hover {
	background: #666;
	color: #fff;
}

.filter-buttons .btn.active { 
	background:#f36100; 
	border-color:#f36100; 
	color:#fff; 
}

.review-card { 
	background:white; 
	border:1px solid #1f1f1f; 
	border-radius:10px; 
	padding:16px; 
	height:100%; 
	color:#eaeaea; 
}

.review-header { 
	display:flex; 
	justify-content:space-between; 
	align-items:center; 
	margin-bottom:8px; 
}

.badge-brand { 
	background:#f36100; 
	color:#ffffff; 
	border:1px solid #f36100; 
	padding:4px 8px; 
	border-radius:999px; 
	font-size:12px; 
}

.review-date { 
	color:#a8a8a8; 
	font-size:12px; 
}

.review-stars i { 
	color:#f5c518; 
	margin-right:2px; 
}

.review-body { 
	margin-top:8px; 
}

.review-comment { 
	margin:0 0 6px 0; 
	color:#333; 
}

.reviewer { 
	color:#666; 
	font-size:13px; 
}

.mt-3 { 
	margin-top: 1rem; 
}

.reviews-scroll { 
	max-height: 600px; 
	overflow-y: auto; 
	padding-right: 6px; 
}

/* Optional scrollbar styling */
.reviews-scroll::-webkit-scrollbar { 
	width: 8px; 
}

.reviews-scroll::-webkit-scrollbar-thumb { 
	background: #f36100; 
	border-radius: 6px; 
}

.reviews-scroll::-webkit-scrollbar-track { 
	background: #f8f9fa; 
}


/* Star input */
.rating-input { 
	display:flex; 
	gap:6px; 
	font-size:22px; 
}

.rating-input .star { 
	cursor:pointer; 
	color:#555; 
	transition:color .15s ease; 
}

.rating-input .star.active, .rating-input .star.hover { 
	color:#f5c518; 
}


/* Modal */
.review-modal { 
	position:fixed; 
	inset:0; 
	display:none; 
	z-index:1050; 
}

.review-modal .btn-outline {
	background: transparent;
	border: 2px solid #666;
	color: #666;
}

.review-modal .btn-outline:hover {
	background: #666;
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.review-modal[aria-hidden="false"] { 
	display:block; 
}

.review-modal__backdrop { 
	position:absolute; 
	inset:0; 
	background:rgba(0,0,0,0.6); 
}

.review-modal__dialog { 
	position:relative; 
	background:#f8f9fa; 
	border:1px solid #1f1f1f; 
	border-radius:10px; 
	width:100%; 
	max-width:560px; 
	margin:60px auto; 
	color:#eaeaea; 
	box-shadow:0 10px 30px rgba(0,0,0,0.5); 
}

.review-modal__header { 
	display:flex; 
	align-items:center; 
	justify-content:space-between; 
	padding:14px 16px; 
	border-bottom:1px solid #1f1f1f; 
}

.review-modal__title { 
	margin:0; 
	font-size:18px; 
}

.review-modal__close { 
	background:transparent; 
	border:0; 
	color:#333; 
	font-size:22px; 
	line-height:1; 
	cursor:pointer; 
}

.review-modal__body { 
	padding:16px; 
}

.form-group { 
	margin-bottom:12px; 
}

.form-control { 
	background:white; 
	border:1px solid #cbcbcb; 
	color:#666; 
	border-radius:6px; 
	padding:8px 10px; 
	width:100%; 
}

.form-control:focus { 
	outline:none; 
	border-color:#f36100; 
	box-shadow:0 0 0 2px rgba(243,97,0,0.15); 
}

label { 
	color:#212121; 
	margin-bottom:6px; 
	display:block; 
}

.text-right { 
	text-align:right; }
@media (max-width: 767.98px) {
	.review-card { padding:14px; }
	.reviews-scroll { max-height: 420px; }
}

/*--------------------- 
	Blog Section / Event Cards
-----------------------*/

.blog-section {
	position: relative;
	padding: 80px 0;
}

.blog-section:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.4;
	z-index: 0;
}

.blog-section .container {
	position: relative;
	z-index: 1;
}

.blog-section .section-title h1 {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.blog-section .section-title h3 {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 10px;
}

/* Event Cards */
.event-card {
	position: relative;
	margin-bottom: 40px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.event-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-card-image {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.event-card-thumb {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-thumb {
	transform: scale(1.15);
}

.event-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.event-card:hover .event-card-overlay {
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.event-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-content {
	transform: translateY(-8px);
}

.event-card-header {
	margin-bottom: 12px;
}

.event-date {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.event-card:hover .event-date {
	color: rgba(255, 255, 255, 1);
}

.event-card-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
	transition: color 0.3s ease, transform 0.3s ease;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.event-card:hover .event-card-title {
	color: #ffd700;
	transform: translateY(-4px);
}

.event-card-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease 0.2s, margin 0.4s ease 0.2s;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.event-card:hover .event-card-description {
	max-height: 200px;
	opacity: 1;
	margin-top: 12px;
}

/* Responsive styles for Event Cards */
@media (max-width: 767px) {
	.event-card-image {
		height: 300px;
	}
	
	.event-card-title {
		font-size: 22px;
	}
	
	.event-card-description {
		font-size: 14px;
	}
}

/*--------------------- 
	Feature Card Styles (Side Layout)
-----------------------*/

.feature-section {
	position: relative;
	padding: 80px 0;
}

.feature-section:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.4;
	z-index: 0;
}

.feature-section .container {
	position: relative;
	z-index: 1;
}

.feature-section .section-title h1 {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-section .section-title h3 {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 10px;
}

.feature-card {
	position: relative;
	display: flex;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	margin-bottom: 40px;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.feature-card-image {
	position: relative;
	width: 50%;
	overflow: hidden;
	min-height: 400px;
}

.feature-card-image img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-image img {
	transform: scale(1.1);
}

.feature-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.feature-card:hover .feature-card-overlay {
	opacity: 1;
}

.feature-card-content {
	width: 50%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
}

.feature-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.feature-date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.feature-card-title {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
	color: #ffd700;
}

.feature-card-description {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.2s;
}

.feature-card:hover .feature-card-description {
	max-height: 300px;
	opacity: 1;
}

.feature-card-description p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 991px) {
	.feature-card {
		flex-direction: column;
	}
	
	.feature-card-image,
	.feature-card-content {
		width: 100%;
	}
	
	.feature-card-image {
		height: 300px;
		min-height: 300px;
	}
	
	.feature-card-image img {
		min-height: 300px;
	}
}