@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	padding-top: 40px;
	background: white !important;
}

.navbar-custom {
	background-color: white;
}

.nav-link {
	color: black !important;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 500;
}

.nav-link:hover {
	color: blue !important;
}

.navbar-toggler {
	border: none;
	font-size: 1.5rem;
	color: black;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.btn-custom {
	background-color: white;
	padding: 5px 10px;
	border-radius: 3px;
	transition: all 0.3s ease;
}



/* navlink when active */
.custom-nav-link {
	color: gray !important;
}

.custom-nav-link.active {
	color: #0d6efd !important;
	font-weight: bold;
}


.dropdown-toggle::after {
	display: none !important;
}

.dropdown-menu {
	width: 200px !important;
}

.dropdown-menu li .dropdown-item {
	padding: 10px 20px;
}



/* cards css */
.card {
	width: 100%;
	min-height: 450px;
	background-color:#f9fafc;
	border-radius: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0.4, 0.4);
	overflow: hidden;
	padding: 14px;
	position: relative;
}

.card img {
	width: 100%;
	height: 160px;
	object-fit: contain;
	display: block;
	margin-top: 10px;
}

.image-wrapper {
	position: relative;
	text-align: end;
}

.heart-icon {
	font-size: 24px;
	background-color: none;
	color: rgb(174, 174, 174);
	cursor: pointer;
	transition: color 0.3s ease;
}

.heart-icon:hover {
	color: red;
}

.card-content {
	padding: 15px 0px;
}

.card-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.card-sub-title {
	font-size: 14px;
	color: #777;
	margin: 0;
	text-transform: uppercase;
	margin-top: 5px;
	line-height: 22px;
}

.card-details {
	display: flex;
	margin-top: 10px;
	gap: 10px;
}

.card-details p {
	margin: 0;
	border: 1px solid #ccc;
	padding: 0px 5px;
	cursor: pointer;
}

.price-location {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}

.price-details {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.price-details p {
	margin: 0;
	text-transform: uppercase;
	cursor: pointer;
}

/* box appearwhen click */
.contact-box {
	display: none;
	background: #fff;
	border: 1px solid #ccc;
	position: absolute;
	width: 60%;
	bottom: 15%;
	right: 12px;
	border-radius: 8px;
	padding: 12px;
	margin-top: 15px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-box p {
	margin: 8px 0;
	font-weight: 600;
	color: #777;
}

.contact-box-test {
	display: none;
	background: #fff;
	border: 1px solid #ccc;
	position: absolute;
	width: 60%;
	bottom: 15%;
	left: 12px;
	border-radius: 8px;
	padding: 12px;
	margin-top: 15px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-box-test p {
	margin: 8px 0;
	font-weight: 600;
	color: #777;
}





/* video css  */
.homepage {
	width: 100%;
	max-width: 1850px;
	margin-right: 20px;
	margin-left: 30px;
	margin-bottom: 40px;
}

.videocard {
	display: flex;
	flex-direction: row;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.videocard-video {
	flex: 1;
	min-width: 50%;
	max-height: 600px;
	overflow: hidden;
}

.videocard-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.videocard-content {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

.videocard-content h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #333;
}

.videocard-content p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* faq style */
.faq-container {
	width: 100%;
	max-width: 1850px;
	margin-left: 30px;
	margin-bottom: 20px;
}

.faq-container h2 {
	text-align: left;
	margin-bottom: 30px;
	font-size: 28px;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.faq-item {
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	font-size: 16px;
	text-align: left;
	padding: 10px 0;
	cursor: pointer;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #555;
}

.bulletPts {
	width: 20px;
	height: 20px;
}

.card-img-top {
	height: 400px;
	object-fit: contain;
	width: 100%;
}



/* details page css code*/

.card-custom-detailspage {
	border-radius: 12px;
	border: none;
	background: #ffffff;
}

.info-title-detailspage {
	font-size: 14px;
	color: #6c757d;
}

.info-value-detailspage {
	font-weight: 600;
	font-size: 15px;
	color: #000;
}

.divider-detailspage {
	border-top: 1px solid #e5e5e5;
	margin: .5rem 0;
}




@media (max-width: 1199px) {
	.homepage {
		margin: 0;
		padding: 0 10px;
	}

	.videocard {
		flex-direction: column;
	}

	.faq-container {
		margin-top: 20px;
	}

	.faq-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.mobile-bottom-nav .nav-item {
    text-align: center;
    flex-grow: 1;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #1c37d9;
    font-weight: 600;
}

/* Hide desktop navbar shadow on small screens if needed */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
    }
    body {
        padding-bottom: 60px; /* Space for bottom nav */
    }
}


/* Hide upper navbar (links + search) on small screens */
@media (max-width: 768px) {
  .navbar-collapse,          
  .navbar .d-none.d-md-flex, 
  .navbar-toggler {          
    display: none !important;
  }
}