@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
}

.letter-spacing-2 {
	letter-spacing: 2px;
}

@font-face {
	font-family: "canela-web";
	src: url("/css/fonts/Canela-Regular-Trial.otf");
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: "canela-bold";
	src: url("/css/fonts/Canela-Bold-Trial.otf");
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: "canela-thin";
	src: url("/css/fonts/Canela-Thin-Trial.otf");
	font-weight: 300;
	font-style: normal;
}

body {
	font-family: "canela-thin";
	background: #f4f1e9;
}

.canela_font {
	font-family: "canela-web";
	font-weight: 800;
}

.canela_thin {
	font-family: "canela-thin";
}

h1,
h2 {
	font-family: "canela-thin";
	font-weight: 300 !important;
}

.inter_font {
	font-family: "Inter", sans-serif;
}

.text_skin {
	color: #a89680;
	transition: 0.2s ease-in-out;
}

.text_skin:hover {
	color: #614b25;
}

.text_brown {
	color: #614b25;
}

.text_dark {
	color: #080c19;
}

.main_header {
	display: flex;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.about_header_img {
	max-width: 100%;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.map_location_btn {
	width: 150px;
	height: 45px;
	background-color: #a89680;
	color: white;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	gap: 10px;
	font-family: inter;
	transition: width 0.3s ease-in, 0.2s ease-out;
}

.map_location_btn:hover {
	width: 160px;
	background-color: #614b25;
}

.contact_header {
	width: 100%;
	min-height: 100vh;
	background-image: url("/img/db/images/Anka_030625_064.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.text_underline {
	text-decoration: underline;
	text-underline-offset: 7px;
}

.new_view_map_btn {
	width: 95px;
	height: 40px;
	border-bottom: 2px solid #a89680;
	color: #a89680;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	font-family: inter;
	font-size: 18px;
	transition: 0.2s ease-in-out;
	margin-top: 40px;
}

.new_view_map_btn:hover {
	scale: 1.03;
	color: #614b25;
}

.portfolio_header {
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	background-image: url("/img/db/project/1000x600/Untitled Session 14899.jpg");
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_part {
	width: 50%;
	position: relative;
	overflow: hidden;
	transition: width 0.5s ease, height 0.5s ease;
}

.media-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.header_logo {
	width: 200px;
}

.media-container .default-img,
.media-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.6s ease;
	opacity: 1;
}

.media-container video {
	display: block;
	opacity: 0;
	z-index: 1;
}

.caption {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 24px;
	font-weight: 500;
	z-index: 3;
	font-family: canela-thin;
}

.caption .discover {
	font-size: 15px;
	display: block;
	margin: auto;
	margin-top: 8px;
	text-align: center;
	font-family: inter;
	border-bottom: 2px solid #a89680;
	width: 60px;
	margin-bottom: 20px;
	cursor: pointer;
	font-weight: 300;
	/* text-decoration: underline; */
}

/* Show when active */
.media-container .show {
	opacity: 1 !important;
	z-index: 2;
}

/* Hide when inactive */
.media-container .hide {
	opacity: 0 !important;
	z-index: 1;
}

.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	font-size: 48px;
	color: white;
	font-weight: bold;
	pointer-events: none;
	letter-spacing: 12px;
	font-family: "canela-bold";
}

.grayscale-overlay::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 2;
	transition: background-color 0.5s ease;
}

.grayscale img {
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.texture_bg {
	width: 100%;
	min-height: 250px;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0px;
	overflow: hidden;
}

.team_img_box {
	width: 100%;
	height: 600px;
	overflow: hidden;
	border-radius: 0px;
	cursor: pointer;
}

.team_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.team_img:hover {
	scale: 1.1;
}

.intro_video {
	width: 100%;
	height: 750px;
	position: relative;
	margin: 100px auto;
}

.intro_video video {
	width: 100% !important;
	height: 750px;
	object-fit: cover;
}

.video_content {
	position: absolute;
	bottom: 100px;
	left: 50px;
	color: white;
}

.video_title {
	font-size: 3.5rem;
	margin: 0;
}

.video_designation {
	font-size: 2.8rem;
	line-height: 25px;
	margin: 0;
}

.finishes_banner {
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0;
	margin-top: 70px;
}

.custom-tabs .nav-link {
	border: none;
	background: none;
	color: #a89680;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	margin: 0 1rem;
	padding-bottom: 8px;
	transition: color 0.3s ease;
	font-family: inter;
}

.custom-tabs .nav-link.active {
	color: #a89680;
}

/*.custom-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: #a89680;
  border-radius: 2px;
  transition: width 0.3s ease;
}*/

.image-display {
	position: relative;
	min-height: 600px;
}

.tab-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 0;
	object-position: center;
	object-fit: cover;
}

.tab-image.active-img {
	opacity: 1;
	z-index: 1;
	object-fit: cover !important;
	object-position: center center;
	height: 600px !important;
}

.img-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: 0.2s ease-in;
}

.img-card img {
	transition: transform 0.5s ease, filter 0.5s ease;
	width: 100%;
	object-fit: cover;
}

.img-card .overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	opacity: 0;
	text-align: center;
	color: white;
	z-index: 2;
	transition: all 0.4s ease;
}

.img-card h3 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.img-card p {
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
	font-family: "Inter", sans-serif;
	transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.img-card:hover img {
	transform: scale(1.05);
	filter: brightness(70%);
}

.img-card:hover .overlay {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.img-card:hover h3,
.img-card:hover p {
	opacity: 1;
	transform: translateY(0);
}

.finish_img_1 {
	width: 100%;
	height: 450px;
}

.finish_img_2 {
	width: 100%;
	height: 600px;
}

/* SASSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS */

.anka-navbar {
	background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent white */
	height: 85px;
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0% 5%;
	position: relative;
	z-index: 1000;
	transition: all 0.3s ease;
	/* Frosted glass effect */
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

/*.anka-navbar::before {
	content: "";
	background-image: url("/gfx/texture.png");*/ /* Replace with your image path */
/*background-size: cover;
	background-position: center;
	opacity: 0.3;*/ /* Adjust opacity (0 to 1) */
/*position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;*/ /* Place it behind the content */
/*}*/

.anka-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.anka-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	/* gap: 10%; */
}

.anka-menu li {
	min-width: 50px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.anka-menu li a {
	text-decoration: none;
	color: #000;
	font-size: 12px;
	font-family: inter;
	text-transform: uppercase;
	font-weight: 400;
	transition: 0.2s ease-in;
}

.anka-menu li a:hover {
	color: #614b25;
	scale: 1.05;
}

/* Center logo */
.anka-center-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.anka-center-logo img {
	height: 25px;
	filter: invert(100%) sepia(100%) hue-rotate(180deg) saturate(0%);
}

/* Mobile menu button */
.anka-menu-toggle {
	font-size: 28px;
	cursor: pointer;
	z-index: 1001;
	position:absolute;
	right:0px;
}

/* Mobile menu */
.anka-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background-color: #f5f1ea;
	flex-direction: column;
	padding-top: 120px;
	padding-left: 20px;
	transition: right 0.3s ease-in-out;
	list-style: none;
	z-index: 1000;
}

.anka-mobile-menu li {
	margin-bottom: 20px;
	padding-right:30px;
	text-align:right;
}

.anka-mobile-menu li a {
	color: #000;
	text-decoration: none;
	font-size: 28px;
	font-family: inter;
}

.anka-mobile-menu.show {
	right: 0;
}

.anka-menu-left {
	width: 40%;
	/* border: 1px solid red; */
	display: flex;
	justify-content: end;
	gap: 8%;
}

.anka-menu-right {
	width: 40%;
	/* border: 1px solid red; */
	display: flex;
	justify-content: start;
	gap: 8%;
}

.anka-navbar.sticky {
	position: fixed;
	height: 60px;
	/*	background-color: #a89680;*/
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.anka-navbar .anka-center-logo img {
	transition: transform 0.3s ease;
}

.anka-navbar.sticky .anka-center-logo img {
	transform: scale(0.9);
}

.bg_custom_white {
	background-color: #fffef9;
	width: 100%;
	min-height: 500px;
	overflow-x: hidden;
}
/* 65555555555555 */
.slider {
	width: 100%;
	height: 100vh;
	max-height: 700px;
	overflow: hidden;
}

.slide {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: center;
}

.slide-content {
	position: absolute;
	bottom: 70px;
	left: 50px;
	color: white;
	z-index: 10;
	max-width: 600px;
	animation: fadeInUp 1s ease-in-out;
}

.slide-content h2 {
	font-size: 2.5em;
	margin: 0 0 10px;
}

.slide-content p {
	font-size: 1em;
	margin: 0%;
	margin-bottom: 15px;
	font-family: inter;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#home_slider .slick-dots {
	bottom: 50px;
	left: 40%;
}

@media (max-width: 768px) {
	.slide-content h2 {
		font-size: 1.5em;
	}

	.slide-content p {
		font-size: 0.9em;
	}

	.slide-content {
		padding-right: 10px;
		left: 10px;
		top: 50%; /* Set the top edge to the vertical midpoint */
		/* left: 50px; */
		transform: translateY( -50% ); /* Move the element up by half its own height */
	}

	.slick-dots {
		bottom: 20px !important;
	}
}

#home_slider .slick-dots li button:before {
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	content: "•";
	text-align: center;
	opacity: 1;
	color: transparent;
	border: 2px solid white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#home_slider .slick-dots li.slick-active button:before {
	opacity: 0.75;
	color: transparent;
	background-color: white;
}

/*.news_box {
	width: 100%;
	height: 500px;
	object-fit: cover;
	overflow: hidden;
}*/

.about_card_wrap {
	width: 100%;
	min-height: 480px;
	text-align: center;
	transition: background 0.3s ease-in, transform 0.3s ease-in;
	border-radius: 8px;
	background: #f4f1e9;
}

.about_card_wrap h4 {
	font-family: inter;
	margin-top: 8px;
	margin-bottom: 0px;
	font-weight: 500;
}

.about_card_wrap p {
	margin-bottom: 0px;
	margin-top: 5px;
	color: #a89680;
	font-weight: 400;
	font-family: inter;
}

.about_card_wrap:hover {
	transform: scale(1.04);
	background: #f5f1e9;
}

.about_card_wrap img {
	width: 100%;
	height: 400px;
	object-fit: contain;
}

.goldhptitle {
	font-weight: 300 !important;
	letter-spacing: 1px;
}

/*.news_box img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: 0.4s ease-in-out;
	cursor: pointer;
}

.news_box img:hover {
	scale: 1.1;
}*/

.news_content {
	width: 100%;
	padding: 20px 0px;
	font-family: inter;
}

.news_content p {
	font-weight: 300 !important;
}

.news_details_img {
	max-width: 919px;
}

.social-btn {
	width: 40px;
	height: 40px;
	background-color: #a89680;
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	transition: 0.2s ease-in-out;
}


footer .social-btn {
	background-color: white;
	color: #a89680;
}

.social-btn:hover {
	background-color: #614b25;
	scale: 1.1;
}

.contact_input,
.contact_message {
	width: 100%;
	height: 45px;
	border: none;
	outline: none;
	color: #614b25;
	border-bottom: 2px solid #a89680;
	background-color: transparent;
	font-family: inter;
	font-size: 18px;
	padding: 2px 5px;
}

.contact_input::placeholder, ::placeholder {
	color: #a89680 !important;
}


.contact_message {
	padding: 5px;
	resize: none;
	height: 250px;
	border: 2px solid #a89680;
	border-radius: 5px;
}

.fs-18 {
	font-size: 18px;
}

.submit_btn {
	width: 100px;
	height: 45px;
	background-color: transparent;
	outline: none;
	border-bottom: 2px solid #a89680;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #a89680;
	font-family: inter;
	margin-top: 20px;
	transition: 0.2s ease-in-out;
}

.submit_btn:hover {
	border-bottom: 2px solid #614b25;
	color: #614b25;
	background-color: rgb(168, 150, 128, 0.5);
	border-radius: 5px;
}

.footer {
	width: 100%;
	min-height: 300px;
	padding: 50px 0;
	background-color: #a89680;
	font-family: inter;
	color: white;
	position:relative;
}

.est_img {
	width: 200px;
}

.white_bar {
	width: 100%;
	height: 1px;
	border-bottom: 1px solid white;
}

.footer_contact_wrap {
	/* width: 20%; */
	height: auto;
	color: white;
	font-family: inter;
	text-align: center;
}

.footer_contact_wrap p:nth-child(1) {
	font-size: 18px !important;
}

.footer_contact_wrap p:nth-child(2) {
	font-size: 16px !important;
}

.vertical_bar {
	width: 1px;
	height: 80px;
	border-left: 1px solid #fff;
}

.footerLinks a {
	transition: 0.2s ease-in-out;
}

.footerLinks a:hover {
	color: #614b25;
	scale: 1.05;
}

.product_head {
	width: 100%;
	min-height: 700px;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product_head div div div {
	height: 0;
	display: none !important;
}

.product_image_wrap {
	width: 100%;
	height: 600px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}

.bespokecommisionprojects .product_image_wrap, #othersfinishes .product_image_wrap
{
	height:auto;
}

.product_image_wrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.product_image_wrap:hover::after {
	opacity: 1;
}

.product_image_wrap .head {
	color: white;
	font-size: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	font-weight: 300;
	font-family: "canela-thin";
}

.product_image_wrap img {
	width: 100%;
	height: 100%;
	transition: 0.5s ease-in-out;
}

.bespokecommisionprojects .product_image_wrap img, #othersfinishes .product_image_wrap img
{
	height:auto;
}

.product_image_wrap:hover img {
	scale: 1.2;
}

.product_colors {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 20px;
	opacity: 0;
	transition: 0.3s ease-in-out;
	z-index: 10;
	justify-content: center;
	align-items: flex-start;
}

.product_image_wrap:hover .product_colors {
	opacity: 1;
}

.product_image_wrap:hover .head {
	color: rgb(255, 255, 255, 0.8);
	z-index: 10;
}

.color_box {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.product_detail_head {
	width: 100%;
	min-height: 600px;
	overflow: hidden;
	background: #f4f1e9;
}

.product_details_img {
	width: 100%;
}

.product_detail_content {
	padding: 12%;
}

.finsh_option {
	width: 35px;
	height: 35px;
	background-size: cover;
	position: relative;
	border-radius: 50%;
	border: 2px outset transparent;
	cursor: pointer;
}

.selected_finsh {
	border: 3px outset red;
	box-shadow: 0px 0px 5px #000;
}

.selected_finsh span {
	display: block !important;
	user-select: none;
}

.selected_color {
	border: 3px outset red;
	box-shadow: 0px 0px 5px #000;
}

#selected_finsh_img {
	transition: all 0.3s ease;
}

.finsh_option span {
	position: absolute;
	top: 110%;
	font-family: inter;
	display: none;
}

.finsh_option:hover span {
	display: block;
}

.case_study_1 {
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.case_study_1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.case_study_1:hover img {
	scale: 1.1;
}

.case_study_2 {
	width: 100%;
	height: 600px;
	margin-top: 30px;
	overflow: hidden;
}

.case_study_2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.case_study_2:hover img {
	scale: 1.1;
}

.case_study_3 {
	width: 100%;
	height: 700px;
	overflow: hidden;
}

.case_study_3 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.case_study_3:hover img {
	scale: 1.1;
}

.case_study_4 {
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin-top: 30px;
	overflow: hidden;
}

.case_study_4 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.case_study_4:hover img {
	scale: 1.1;
}

.case_study_5 {
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.case_study_5 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.case_study_5:hover img {
	scale: 1.1;
}

.custom-slider {
	max-width: 100%;
	padding: 40px 0;
	position: relative;
}

.custom-slider .slick-slide img {
	height: 500px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	object-position: center;
}

.custom-slider .slick-slide:hover img {
	transform: scale(1.06);
}

.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	background: #fff;
	color: #000;
	border-radius: 50%;
	z-index: 10;
}

.slick-prev:before,
.slick-next:before {
	color: #000;
	font-size: 20px;
}

.slick-prev {
	left: -50px;
}

.slick-next {
	right: -50px;
}

.custom_arrow_box {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1000;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	display: flex !important;
	gap: 10px;
	transition: 0.2s ease-in-out;
	z-index: 1000;
}

.custom_arrow_box:hover {
	scale: 1.2;
	right: 30px;
}

.custom-prev,
.custom-next {
	font-size: 30px;
	color: whitesmoke;
}

/* Make sure margin doesn't break layout */
.slick-slide {
	margin: 0 8px;
	box-sizing: border-box;
}

/* Compensate outer margin */
.slick-list {
	margin: 0 -8px;
}

#product_page_slider {
	min-height: 600px;
	padding-top: 50px;
}

.slick-slide {
	min-height: 600px;
	padding-top: 10px;
}

.sgnews {
	cursor: pointer;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
	.custom_arrow_box {
		display: none !important;
	}

	.intro_video {
		width: 100%;
		height: 600px;
	}

	.intro_video video {
		height: 600px;
	}

	.footer_contact_wrap {
		width: 40% !important;
		margin: auto;
	}

	.video_content {
		position: absolute;
		bottom: 100px;
		left: 50px;
		color: white;
	}

	.video_title {
		font-size: 3rem;
	}

	.video_designation {
		font-size: 2.5rem;
	}
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
	.custom-slider .slick-slide {
		min-height: 500px;
	}

	#product_page_slider {
		min-height: 500px;
		padding-top: 10px;
	}

	.main_header {
		flex-direction: column;
	}

	.footer_contact_wrap {
		width: 90% !important;
		margin: auto;
	}

	.header_part {
		width: 100%;
		height: 50vh;
	}

	.caption {
		font-size: 20px;
	}

	.overlay-text {
		font-size: 36px;
		letter-spacing: 6px;
		top: 49%;
	}

	.intro_video {
		width: 100%;
		height: 500px;
	}

	.intro_video video {
		height: 500px;
	}

	.video_content {
		position: absolute;
		bottom: 50px;
		left: 30px;
	}

	.video_title {
		font-size: 1.8rem;
	}

	.video_designation {
		font-size: 1.2rem;
	}

	.custom-tabs {
		overflow-x: auto;
		white-space: nowrap;
		flex-wrap: nowrap;
	}

	.custom-tabs .nav-link {
		margin: 0 0.75rem;
		font-size: 14px;
	}

	.team_img_box {
		height: 420px;
	}

	.slick-slide img {
		height: 500px;
	}
}

/*anka-parent*/

.news_box {
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.news_box img {
	width: 100%;
	/* height: 700px; */
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.news_box img:hover {
	scale: 1.05;
}


.news_left .news_wrapper:nth-child(odd) .news_box img {
	height: 700px;
	object-fit: cover;
	width: 100%;
}

.news_left .news_wrapper:nth-child(even) .news_box img {
	height: 500px;
	object-fit: cover;
	width: 100%;
}

.news_right .news_wrapper:nth-child(odd) .news_box img {
	height: 500px;
	object-fit: cover;
	width: 100%;
}

.news_right .news_wrapper:nth-child(even) .news_box img {
	height: 700px;
	object-fit: cover;
	width: 100%;
}

/* Optional spacing */
.news_wrapper {
	margin-bottom: 20px;
}

.header-video {
	width: 100%;
}

.header-video-container {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

/* Responsive: stack in 1 column on mobile */
@media (max-width: 767px) {
	.news_left, .news_right {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


.clients_logo_wrapper {
	display: grid;
	gap: 20px; /* space between images */
	justify-content: center; /* center horizontally */
	align-items: center; /* center vertically */
	margin-top: 50px;
}

/* Desktop: 6 per row */
@media (min-width: 1025px) {
	.clients_logo_wrapper {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* Tablet: 4 per row */
@media (min-width: 768px) and (max-width: 1024px) {
	.clients_logo_wrapper {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Mobile: 1 per row */
@media (max-width: 767px) {
	.clients_logo_wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Images styling */
.clients_logo_wrapper img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	margin: auto;
	filter: grayscale(100%); /* Black & white by default */
	transition: filter 0.4s ease-in-out, 0.2s ease-in-out; /* Smooth animation */
}

/* Hover effect */
.clients_logo_wrapper img:hover {
	filter: grayscale(0%); /* Back to full color */
	scale: 1.01;
}


/* LEFT SIDE */
.home_category_wrap_left .img-card:nth-child(odd) img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}

.home_category_wrap_left .img-card:nth-child(even) img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

/* RIGHT SIDE */
.home_category_wrap_right .img-card:nth-child(odd) img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.home_category_wrap_right .img-card:nth-child(even) img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}

/* Optional: spacing between cards */
.img-card {
	margin-bottom: 20px;
}

@media (min-width:992px) {
	.second_est_img {
		position: absolute;
		left: 50%; /* Move to the middle */
		transform: translateX(-50%); /* Adjust back by half its width */
	}


	.custom_verticals {
		position: relative; /* so the ::after positions relative to this */
	}

	.custom_verticals::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0; /* make it stretch full height */
		left: 50%; /* move to the center */
		transform: translateX(-50%);
		width: 1px;
		background-color: white;
	}
}

.second_est_img {
	width: 130px;
}

.border_bottom_white {
	border-bottom: 2px solid white !important;
}

.footer_Contact_Form input, .footer_Contact_Form textarea {
	border-color: white !important;
	color: white !important;
}

.footer_Contact_Form textarea {
	height: 150px !important;
}


.contact_input::placeholder {
	color: #a89680 !important;
}


.footer #ffreqform input::placeholder {
	border-color: white !important;
	color: white !important;
}




/*anka-parent*/

.anka-parent {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* adds spacing between child elements */
	padding: 20px;
}

.anka-child {
	box-sizing: border-box;
}

.anka-child img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* Odd rows */
.anka-child:nth-child(4n+1) {
	flex: 0 0 calc(60% - 10px); /* subtract half the gap */
}

.anka-child:nth-child(4n+2) {
	flex: 0 0 calc(40% - 10px);
}

/* Even rows */
.anka-child:nth-child(4n+3) {
	flex: 0 0 calc(40% - 10px);
}

.anka-child:nth-child(4n+4) {
	flex: 0 0 calc(60% - 10px);
}

/* Mobile: full width */
@media (max-width: 767px) {
	.anka-child {
		flex: 0 0 100%;
	}

	.websiteby {
		font-size: 12px;
		text-align: center;
	}
}





/* NEW SLIDER CSS */


/* Slider wrapper */
.pro_one_slider {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.pro_one_slider .slide {
	width: 100%;
	height: 100vh;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* Custom navigation */
.custom-nav {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 18px;
	color: #fff;
	z-index: 10;
}

.projdetacontrols
{
	background:radial-gradient(circle,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
	padding:10px;
}

.backToProjects {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	color: #fff;
	z-index: 10;
	font-family: inter;
	transition: 0.1s ease-in-out;
}

.backToProjects:hover {
	color: whitesmoke;
	text-decoration: underline;
}

.custom-nav button {
	background: none;
	border: none;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.custom-nav button:hover {
	color: #ddd;
	scale: 1.3;
	text-shadow: 0 0 2px #fff, 0 0 2px #fff;
}

.custom-nav .counter {
	font-size: 14px;
	/* font-weight: bold; */
	font-family: inter;
}





.projdetaprev, .projdetanext {
	position: absolute;
	top: -40vh;
}

.projdetaprev i, .projdetanext i {
	background: #f4f1e9;
	font-size: 30px;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	color: white;
	padding-top: 10px;
}

.projdetaprev {
	left: -40vw;
}

.projdetanext {
	right: -40vw;
}

.contactaddress h2 {
	font-size: 27px !important;
}

.contactaddress h3 {
	font-size: 23px !important;
}

#passwdmsg {
	margin-top: 10px;
}
