/* ----------------------------------------------------------------------------------------
* Author        : BNext-IT
* Template Name : Purvanchal Projects
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */

:root {
	--primary-color: #192324;
	--secondery-color: #F8F8F8;
	--text-color: #283132;
	--accent-color: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
	--theme-color: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Hanken Grotesk", sans-serif;
}

/************************************/
/*** 	   General css		  ***/
/************************************/
body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure {
	margin: 0;
    border: 2px solid #b08a2e;
    border-radius: 6px;

}

img {
	max-width: 100%;
}

a {
	text-decoration: none;

}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.bg-ppl {
    background: rgb(50 28 9 / 97%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.container {
	max-width: 1300px;
}

.container-mini {
	max-width: 1149px !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
	border-radius:5px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-ppl {
    	border-radius: 5px;
}

.btn-ppl:hover {
	color: var(--white-color) !important;
}

.btn-touch {
	position: relative;
	display: inline-block;
	background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 14px 46px 14px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 14px 46px 14px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background: var(--accent-color);
}

.cb-cursor:before {
	background: var(--accent-color);
}


.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn {
	text-align: end;
}

.section-title-content {
	margin-left: 120px;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	background: var(--accent-color);
	/* gradient */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	padding-left: 35px;
	margin-bottom: 20px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title h1 {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;

}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
	/* color: var(--accent-color); */
}

.section-title h1 span div,
.section-title h2 span div {
	background: linear-gradient(114deg, #c39347 -0.78%, #5e3808 102.56%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}




/************************************/
/**** 	  Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar-brand img {
	height: 40px;
	width: auto;
}

.navbar {
	padding: 4px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	padding: 7px 14px !important;
	color: #ffc363;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover {
	background: var(--theme-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

/* Submenu links default */
.main-menu ul li.submenu ul li a {
	color: #000000 !important;
	/* Solid black by default */
	padding: 7px 12px !important;
	display: block;
	transition: all 0.3s ease-in-out;
	background: none !important;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
}

.main-menu ul li.submenu ul li a:hover {
	color: #ffc363 !important;
	background: #000000cf !important;



}



/* Optional: prevent parent hover rule from affecting submenu */
.main-menu>ul>li>a:hover,
.main-menu>ul>li>a:focus {
	color: #d4d3df;
	/* only apply to top-level menu items */
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ebebed;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--accent-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.dropdown-toggle::after{
	border-top:0;
}
.dropdown-large{
	background:#fff!important;
}
 .dropdown-large .row{
	padding-right: 0px;
    padding-left: 0px;
}
.side-menu .list-group .menu-item a:hover{
	background:transparent!important;
	color:#000000 !important;
}
.side-menu {
	background:transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    height: 100%;              /* matches dropdown height */
}

.side-menu .list-group {
    margin: 0 auto;            /* optional: center horizontally */
	background-color:transparent;
}
.side-menu	.list-group-item{
	Background:transparent;
	border:0;
	padding: 10px 5px;
}
.dropdown-large .list-group{
	opacity:1;
	visibility:visible;
	top:0;
}
        /* Dropdown Image Menu */
        .dropdown-large {
            width: 900px;
        }

        .preview-img {
            width: 100%;
            border-radius: 15px;
            object-fit: cover;
			padding:0 10px;
        }

        .menu-item:hover {
            background: #f1f1f1;
            cursor: pointer;
        }

        /* Enable hover dropdown (desktop only) */
        @media (min-width: 992px) {
            .nav-item.submenu:hover > .dropdown-menu {
                display: block;
            }
        }

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}


.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

.hamburger {
	background: transparent;
	border: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 28px;
	cursor: pointer;
}

/* Hamburger lines */
.hamburger span {
	display: block;
	height: 5px;
	width: 100%;
	border-radius: 2px;

	/* Gradient color */
	background: white;
}



.mobile-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--theme-color);
	color: #fff;
	/* icon color */
	font-size: 20px;
	/* adjust icon size */
	text-decoration: none;
	border: none;
	padding: 0;
}

/* Mobile Sidebar Styling */
#mobileSidebar {
	background: var(--primary-color);
	/* same as header */
	color: #ffc363;
	/* same top-level menu text color */
	border-right: 1px solid var(--dark-divider-color);
	/* optional divider */
	padding: 20px;
	font-family: var(--accent-font);
}

#mobileSidebar .offcanvas-header {
	border-bottom: 1px solid var(--dark-divider-color);
}

#mobileSidebar .offcanvas-title {
	font-size: 24px;
	font-weight: 600;
	color: #ffc363;
	/* same as header menu links */
}

#mobileSidebar .btn-close {
	filter: invert(1);
	/* make close button visible on dark bg */
}

/* Mobile Sidebar Menu Links */
#mobileSidebar .navbar-nav {
	margin-top: 20px;
	list-style: none;
	padding-left: 0;
}

#mobileSidebar .navbar-nav .nav-item {
	margin-bottom: 10px;
	position: relative;
}

#mobileSidebar .navbar-nav .nav-link {
	color: #ffc363;
	/* same as header links */
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
	display: block;
	padding: 12px 0;
	transition: all 0.3s ease-in-out;
}


#mobileSidebar .navbar-nav ul {
	padding-left: 15px;
	/* submenu indentation */
	margin-top: 5px;
}

#mobileSidebar .navbar-nav ul .nav-link {
	font-size: 18px;
	color: #000;
	/* submenu text default */
}




/* Mobile Button Styling */
#mobileSidebar .header-btn a {
	width: 100%;
	background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
	border: 2px solid #623e12;
	color: #fff;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
	border-radius: 8px;
	display: inline-block;
	transition: all 0.3s ease-in-out;
}



/* Submenu links on black background */
#mobileSidebar .navbar-nav ul .nav-link {
	font-size: 16px;
	color: #ffc363;
	padding: 6px 0;
}



/* Collapse icon styling */
#mobileSidebar .collapse-icon {
	font-size: 18px;
	color: #ffc363;
	transition: transform 0.3s ease;
}

/* Rotate icon when open */
#mobileSidebar .nav-link[aria-expanded="true"] .collapse-icon {
	transform: rotate(45deg);
	/* turns + into × */
}

.mobile-sticky-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 9999;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	/* optional top border */
}

.sticky-btn {
	flex: 1;
	/* each button takes 50% */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 0;
	color: #ffc363;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	background: black;
	position: relative;
}



/* Add vertical partition line between buttons */
.sticky-btn.whatsapp::after {
	content: '';
	position: absolute;
	top: 10%;
	right: 0;
	width: 1px;
	height: 80%;
	background: rgba(255, 255, 255, 0.5);
}
.sticky-btn.call::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
}

.btn-icon i {
	color: #ffc363;
	font-size: 20px;
	transition: color 0.3s ease;
}

/* Icon styling */
.sticky-btn i {
	font-size: 20px;
}

/* Hover effect */
.sticky-btn:hover {
	opacity: 0.9;
}

/************************************/
/***      Homepage Slider css 	  ***/
/************************************/
.homepageslider {
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 100vh; /* Desktop */
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image & Video */
.heroSwiper img,
.heroSwiper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    .heroSwiper {
        height: auto;
    }

    .heroSwiper img,
    .heroSwiper video {
        height: auto;
        object-fit: contain;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .heroSwiper {
        height: auto;
    }

    .heroSwiper img,
    .heroSwiper video {
        height: auto;
    }
}


/************************************/
/***      Pages Banner Css       ***/
/************************************/

.pages-banner {
  width: 100%;
  overflow: hidden;
}

/* Image container */
.pages-banner-img {
  width: 100%;
}

/* Image styling */
.pages-banner-img img {
  width: 100%;
  height: auto;              /* maintain original ratio */
  display: block;
  object-fit: contain;       /* ensures no cropping */
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .pages-banner {
    height: auto;
  }

  .pages-banner-img {
    height: auto;
  }

  .pages-banner-img img {
    width: 100%;
    height: auto;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .pages-banner {
    height: auto;
  }

  .pages-banner-img img {
    width: 100%;
    height: auto;
  }
}

************************************/
/***       About Us css 	  ***/
/************************************/
.about-us {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
    padding: 30px 0;
}

.about-us-images {
	position: relative;
	background-image: url(../images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}

.about-img-2 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.experience-counter {
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;

	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.about-us-content-list {
	margin-bottom: 40px;
}

.about-us-content-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}


    .impact-box {
    background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);

    border-radius: 20px;
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
    color: #fff;

    /* Gradient border */

}

.impact-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
     color:white;

}


.impact-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.4);
    padding: 0 15px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    color:white;
}

.stat-item p {
    font-size: 16px;
    margin: 0;
}
@media (max-width: 767px) {
  .impact-box {
    padding: 25px 15px;   /* reduce padding */
  }

  .impact-title {
    font-size: 18px;      /* smaller heading */
    margin-bottom: 20px;
  }

  .impact-title::after {
    width: 40px;          /* shorter underline */
    height: 2px;          /* thinner line */
    bottom: -6px;
  }

  .impact-stats {
    flex-direction: column;   /* stack stats vertically */
    gap: 15px;
  }

  .stat-item {
    border-right: none;       /* remove vertical dividers */
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item h2 {
    font-size: 26px;   /* scale down numbers */
  }

  .stat-item p {
    font-size: 14px;
  }
}



/************************************/
/***     Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

.why-choose-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2 {
	width: calc(43% - 10px);
}

.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3 {
	width: calc(67% - 10px);
}

.why-choose-img-3 img {
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4 {
	width: calc(33% - 10px);
}

.why-choose-img-4 img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}


/************************************/
/***     Our Project Section css     ***/
/************************************/

.our-services {
	padding: 100px 0;
	background-color: #fff;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-item:hover img {
  transform: scale(1.1);
}

.service-item:hover .service-back {
  opacity: 1;
  visibility: visible;
}

.service-item:hover .service-content {
  opacity: 0;
}

.service-back {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.service-back .overlay-content {
  max-width: 90%;
}

.service-back h4 {
    color:white;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.service-back p {
  font-size: 14px;
  line-height: 1.6;
}

.service-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a {
	background: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

.btn-outline {
  display: block;
  margin: 0 auto; /* centers the button */
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-image: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  border-image-slice: 1;
  background: transparent;
  color: #b18743ff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect: fill with gradient */
.btn-outline:hover {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  color: #fff;
  transform: translateY(-2px);
}

/************************************/
/***      Intro Video css     ***/
/************************************/

.intro-video {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;

	background-size: cover;
	padding: 100px 0;

}

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.intro-video-image a {
	display: block;
}

.intro-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.video-img {
    position: relative;
    display: block;
    width: 75%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 5px;
    background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
}



.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}


/************************************/
/***   Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: var(--secondery-color);
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	padding: 100px;
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider {
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper {
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--accent-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}


/************************************/
/***     Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}


.pagination .page-link {
    background: transparent;
    color: #a3610cde;
    border: 1px solid #a3610cde;
    box-shadow: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 16px;
    font-family: inherit;
}

.pagination .active .page-link {
    background: rgb(61, 61, 61);
    color: #fff;
    border: 2px solid #31313096;
}

.pagination .page-link:hover {
    color: #fff;
}

/************************************/
/***       Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
	border-radius:5px;
	height:100;
}

/*.post-item:hover .post-featured-image img {*/
/*	transform: scale(1.1);*/
/*}*/

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	color: inherit;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}

/****************************************/
/**** Youtube Subscription Button css****/
/****************************************/
.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #ff0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.yt-subscribe-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.55);
}

.yt-subscribe-btn:active {
    transform: translateY(0) scale(0.98);
}

/************************************/
/***      	Footer css 		  ***/
/************************************/

.main-footer {
	padding: 50px 0 0;
	background: #363a3a;
}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li {
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 50%;
    height: 36px;
    width: 36px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
    display: flex;                 /* IMPORTANT */
    align-items: center;
    justify-content: center;
    line-height: 2;                /* IMPORTANT */
    background: var(--theme-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}
.footer-social-links ul li a i:hover{
    background: rgb(61, 61, 61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}
.footer-social-links ul li a:hover {
	background: #fff ;
}

.footer-social-links ul li a:hover i {
	color: var(--white-color);
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li a {
	display: block;
	color: inherit;
}

.footer-links ul li a:hover {
	color: #f3cb80;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form button {
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 25px;
	padding: 15px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}


.footer-contact-content .contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size: 18px;
    color: #f3eeee;
}


.footer-contact-content .contact-item i{
    width:20px;
    text-align:center;
    font-size: 18px;
    color: #f3eeee;
}


.footer-contact-content .contact-item span{
    line-height:1.5;
    font-size: 18px;
    color: #f3eeee;
}


/************************************/
/***     15. About Us Page css 	  ***/
/************************************/


.about-us.page-about-us {
	background: transparent;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-facility-item:hover .icon-box:before {
	transform: scale(1);
}

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
	display: none;
}

.vision-mission-item .icon-box {
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
	transform: scale(1);
}

.vision-mission-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;

}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

.faq-accordion .accordion-body p {
	margin: 0;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;

}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {

}

.page-gallery-box .photo-gallery figure {
	display: block;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 50px 0 50px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}

.contact-us-form {
	margin-left: 30px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: var(--white-color);
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 15px;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i {
	color: var(--white-color);
}

.contact-info-content {
	width: calc(100% - 80px);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {

	.our-testimonial-content {
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 991px) {
	.main-header .d-lg-none a {
		font-size: 20px;
		padding: 10px 10px;
	}

	.navbar {
		padding: 0;

	}


	/* Hide desktop menu + button */
	.main-menu,
	.header-btn {
		display: none !important;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		min-height: auto;
		padding: 50px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}


	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

	.service-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill {
		padding: 50px 0;
	}

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 16px;
	}

	.about-facility-list {
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item {
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img {
		max-width: 20px;
	}

	.about-facility-content {
		width: calc(100% - 55px);
	}

	.about-facility-content h3 {
		font-size: 18px;
	}

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 30px 15px;
		gap: 30px 40px;
	}

	.vision-mission-item {
		width: calc(50% - 20px);
	}

	.vision-mission-item::before {
		right: -20px;
	}

	.vision-mission-item .icon-box {
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img {
		max-width: 30px;
	}

	.vision-mission-content h3 {
		margin-bottom: 15px;
	}

	.best-selling {
		padding: 25px 0 50px;
	}

	.best-selling-content {
		margin-bottom: 20px;
	}

	.best-selling-content-img {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-readmore-btn {
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a {
		width: 50px;
		height: 50px;
	}

	.team-content {
		margin-bottom: 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.our-faqs-image {
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.8;
	}

	.our-clients {
		padding: 50px 0;
	}

	.our-clients .our-clients-box {
		max-width: 100%;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body {
		padding: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-project {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li {
		margin-bottom: 15px;
	}

	.faq-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-image {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form {
		margin-left: 0;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.contact-info-box {
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item {
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i {
		font-size: 16px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {


	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		text-align: center;
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.hero-content .btn-default {
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.hero-content .btn-default.btn-highlighted {
		margin: 0;
	}

	.about-us-images {
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter {
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p {
		font-size: 12px;
		height: 38px;
		width: 38px;
		margin: 0 0 6px 0;
	}

	.feedback-counter h3 {
		font-size: 12px;
		width: calc(100% - 40px);
	}

	.about-img-2 {
		max-width: 240px;
	}

	.experience-counter {
		height: 102px;
		width: 102px;
	}

	.experience-counter h3 {
		font-size: 22px;
	}

	.experience-counter p {
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body {
		gap: 0px;
	}

	.about-us-content-body::before {
		display: none;
	}

	.about-us-content-info {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-contact-list {
		width: 100%;
	}

	.about-us-content-list ul li {
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item {
		margin-bottom: 20px;
	}

	.about-contact-content h3 {
		font-size: 18px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img {
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn img {
		max-width: 20px;
	}

	.project-content h2 {
		font-size: 18px;
	}

	.how-we-work-item {
		width: 100%;
	}

	.how-we-work-item .icon-box img {
		max-width: 50px;
	}

	.how-we-work-content h3 {
		font-size: 18px;
	}

	.how-work-company-slider {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image {
		padding-bottom: 83px;
	}

	.our-skill-img-1 {
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2 {
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3 {
		width: 200px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 38px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-social-links {
		justify-content: center;
		gap: 20px;
	}

	.footer-social-link-title h3 {
		font-size: 18px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-copyright {
		padding: 15px 0;

	}
	.footer-logo {
    text-align: center;
	margin-bottom:40px !important;
  }
  .footer-logo img {
    display: inline-block;
  }


	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 14px;
	}

	.about-facility-item {
		width: 100%;
	}

	.vision-mission {
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box {
		padding: 20px;
		gap: 40px;
	}

	.vision-mission-item {
		width: 100%;
	}

	.vision-mission-item::before {
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before {
		display: block;
	}

	.vision-mission-item:last-child::before {
		display: none;
	}

	.vision-mission-content h3 {
		font-size: 18px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 2px;
	}

	.faq-accordion .accordion-body {
		padding-right: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry-list-image {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 5px;
	}

	.project-gallery-images {
		gap: 20px;
	}

	.project-gallery-img {
		width: calc(50% - 10px);
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.75;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-info-item {
		width: 100%;
	}

	.error-page-image img {
		max-width: 100%;
	}
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
}


/* ==============================
   Cinematic Scroll Animation Section
============================== */
.anim-section {
	position: relative;
	min-height: 160vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
	background-image: url(../images/section-bg-shape-2.svg);
	/* replace with your image path */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.anim-section .row {
	align-items: center;
}

/* ===== Image Styling ===== */
.anim-section .anim-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 500px;
	opacity: 0;
	filter: blur(10px);
	z-index: 2;
	transition: filter 1s ease, transform 1s ease;
}

.anim-section .anim-image.focused {
	filter: brightness(1.1) contrast(1.05);
}

/* ===== Content Box ===== */
.anim-section .about-us-content {
	position: relative;
	z-index: 3;
}

.anim-section .content-box {
	opacity: 0;
	transform: translate(-80px, 60px);
	transition: all 1s ease-in-out;
}

/* ===== Soft Fade Overlay ===== */
.anim-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1), transparent 70%);
	pointer-events: none;
	z-index: 1;
}

/* ===== Signature ===== */
.anim-section .sign {
	text-align: right;
	margin-top: 40px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease-in-out;
}

/* ===== Headings and Paragraphs ===== */
.anim-section .section-title h3,
.anim-section .section-title h2,
.anim-section .section-title p {
	opacity: 0;
	transform: translateY(60px);
}



/* ===== Responsive ===== */
@media (max-width: 991px) {
	.anim-section {
		flex-direction: column;
		text-align: center;
		padding: 60px 20px;
	}

	.anim-section .anim-image {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		max-width: 90%;
		margin: 0 auto 30px;
		opacity: 1 !important;
		filter: none !important;
	}

	.anim-section .content-box,
	.anim-section .section-title h3,
	.anim-section .section-title h2,
	.anim-section .section-title p,
	.anim-section .sign {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}

	.content-box .section-title h2 {

		font-size: 2rem;
	}

	.content-box .section-title p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.anim-section .sign {
		text-align: center;
	}

	.swiper-slide .service-item:hover img,
	.swiper-slide .service-item:hover figure {
		transform: none !important;
	}
}

/*--- Project Listing-----*/
    /* Section Wrapper */
.projects-section {
  padding: 80px 20px;
  color: #623e12; /* main text color */
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  background: #fff; /* keep section clean */
}

/* Title with gradient text */
.projects-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects-section .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Tabs */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.project-tabs .tab {
  background: #fff;
  color: #623e12;

  padding: 12px 30px;

  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-tabs .tab.active,
.project-tabs .tab:hover {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  color: #fff;

}

/* Tab Description */
.tab-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #623e12;
}

/* Featured Projects Cards */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 2px solid #f4d4a1;
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-card h4 {
  font-size: 40px;
  margin: 15px 0 5px;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-card p {
  font-size: 20px;
  margin-bottom: 15px;
  color: #623e12;
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: #623e12;
}

/* Form + Image Section */
.form-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}



.project-form h4 {
  font-size: 24px;
  margin-bottom: 20px;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-form input,
.project-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #623e12;
  outline: none;
  font-size: 14px;
}

.project-form textarea {
  resize: none;
  height: 120px;
}



/* Image next to form */
.form-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid #f4d4a1;
}
/* Project Card Wrapper */
.project-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 2px solid #f4d4a1;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

/* Background Image Zoom on Hover */
.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}

.project-card:hover .image-wrapper img {
  transform: scale(1.1);
}
.projects-content {
    padding:20px
}

.projects-content h3 {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 6px;
}

.projects-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Overlay Styling */
.overlay {
  position: absolute;
  inset: 0;
  background: rgb(30 30 29 / 85%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
  padding: 25px;
  text-align: left;
}

.project-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay Content */
.overlay-content {
  max-width: 250px;
  text-align: left;
  animation: fadeInDown 0.6s ease forwards;
}

.overlay-content h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f4d4a1;
}

.overlay-content .description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #fff;
}

/* Project Info Icons + Text */
.project-info {
  margin-bottom: 15px;
}

.project-info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 5px;
  color: #f4d4a1;
}

.project-info .info-item i {
  color: #f4d4a1;
  font-size: 16px;
}

/* Explore More Button */
.view-btn {
  display: inline-block;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.view-btn:hover {
    background: linear-gradient(102deg, #623e12 -0.78%, #f4d4a1 102.56%);
  color: #fff;
  transform: translateY(-2px);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width: 992px){
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .form-image-section {
    flex-direction: column;
  }
}
.form-image-section {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  padding: 60px 40px;

}

/* Form styling */
.project-form {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.project-form h4 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  color: #623e12;
}

.project-form input,
.project-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.project-form input:focus,
.project-form textarea:focus {
  border-color: #623e12;
}

.project-form button {
  width: 50%;
  padding: 10px 18px;
  border: none;

  font-size: 16px;
  background: linear-gradient(102deg, #623e12 -0.78%, #f4d4a1 102.56%);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin: 0 auto; /* centers the button */
}


.project-form button:hover {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
}

/* Image styling */
.form-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive (Bootstrap handles most) */
@media (max-width: 768px) {
  .form-image-section {
    text-align: center;
    padding: 30px 20px;
  }

  .project-form {
    margin-bottom: 20px;
  }
}

.journey-heading {
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom:50px;
}

.journey-heading span {
  background: linear-gradient(102deg, #a58c63 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.query-section{
	background: #f7f7e985;
}

/*---- legacy listing starts---*/
  /* Timeline wrapper */
    .timeline {
      position: relative;
      padding: 50px 0;
    }

    /* Center line */
    .timeline::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background-color: #d9b18c;
      transform: translateX(-50%);
    }

    /* Each item */
    .timeline-item {
      position: relative;
      margin: 50px 0;
	  animation: fadeIn 2s ease;
    }

    /* Connector dot */
    .timeline-item::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      background-color: #d9b18c;
      border: 3px solid #fff;
      border-radius: 50%;
      z-index: 1;
    }

    /* Card styling */
    .timeline-content {
      background: #fff;
      padding: 20px;
    }

    .timeline-year {
		font-size: 5rem;
		font-weight: 700;
		color: rgba(0, 0, 0, 0.05);
		position: absolute;
		top: -52px;
		left: 20px;
	}

    .timeline-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #b67a42;
	  text-align: left;
    }

    .timeline-img {
      max-width: 100%;
      border-radius: 10px;
    }

    .content{
		  width: 60%;
		  text-align: justify;
	  }

    /* Alternate sides */
    @media (min-width: 768px) {
      .timeline-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .timeline-item:nth-child(odd) .timeline-content {
        order: 1;
        width: 45%;
        text-align: right;
      }

      .timeline-item:nth-child(odd) .timeline-img-wrapper {
        order: 0;
        width: 45%;
        text-align: left;
      }

      .timeline-item:nth-child(even) .timeline-content {
        order: 0;
        width: 45%;
        text-align: left;
      }

      .timeline-item:nth-child(even) .timeline-img-wrapper {
        order: 1;
        width: 45%;
        text-align: right;
      }
	  .content{
		  width: 60%;
	  }
    }

    /* Mobile layout (stacked) */
    @media (max-width: 767px) {
      .timeline::before {
        left: 20px;
      }

      .timeline-item::before {
        left: 10px;
        transform: translateY(-50%);
      }

      .timeline-item {
        display: block;
        padding-left: 30px;
      }

      .timeline-content, .timeline-img-wrapper {
        width: 100%;
        text-align: left !important;
      }
    }

/*----  Section End---*/


/*---- Single Project Starts-----*/
.project-title-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Common slide styling */
.project-bg-slider .slide-item {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Video styling */
.video-slide .bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Caption */
.fixed-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    color: #fff;
    z-index: 10;
}

.fixed-caption h1 {
    font-size: 50px;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(0,0,0,0.7);
}

.fixed-caption p {
    font-size: 22px;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    margin-top: 10px;
}

/* Owl dots */
.owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.owl-dots .owl-dot span {
    background: #fff;
    opacity: 0.4;
}
.owl-dots .owl-dot.active span {
    opacity: 1;
}

.amenities-section {
    padding: 20px 0;
}

.amenity-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Image holder */
.amenity-img {
    width: 80px;
    height: 80px; /* Same height for all images */
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Makes all images look uniform */
}

/* Text */
.amenity-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

  .breadcrumb{
    margin-bottom: 0;
  }
 .breadcrumb-item a{
    color: #ba8940;
  }

   .breadcrumb-item a:hover, .breadcrumb-item a:focus{
    color: #694b1d;
  }

/* ===== Section Base ===== */

.investor-tabs .nav-link {
    color: #000;
    border: 1px solid #ddd;
    margin: 0 8px;
    padding: 10px 30px;
    border-radius: 30px;
    background: transparent;
}

.investor-tabs .nav-link.active {
    background: #ffc363;
    color: #000;
    border-color: #ffc363;
}

/* ===== Title ===== */
.investor-relations h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #111;
}



.csr-heading {
  font-size: 40px;
  font-weight: bolder;
  font-style: italic;
  color: #100b2e;
  padding: 15px 0;
  white-space: nowrap;
  overflow: hidden;
}

.banner-section {
  width: 100%;
  overflow: hidden;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  padding-top: 40%; /* Maintains aspect ratio (adjust as needed) */
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the space but may crop */
  display: block;
}

/* Text inside image */
.banner-content {
  position: absolute;
  top: 11%;
  left: 5%;
  color: white;
  max-width: 45%;
  z-index: 2;
}

.banner-quote {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 10px;
}

.banner-designation {
  font-size: 1.1vw;
  color: #f0f0f0;
  line-height: 1.5;
  /* margin-bottom: 20px; */
  font-style: italic;
  opacity: 0.9;
}

/* Optional: style the name differently */
.banner-designation strong {
  font-size: 1.3vw;
  font-weight: bold;
  font-style: normal;
  display: block;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: transparent; /* outline style */
  color: white !important;
  text-decoration: none;

  border: 1px solid #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.read-more-btn:hover {
  /* background-color: #140958; */
  color: #ffffff;
  border-color: #ffffff;
  text-decoration: none;
}
.sustainability-section {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}

.sustainability-intro,
.sustainability-conclusion {
  margin-bottom: 15px;
}

.sustainability-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.sustainability-list li {
  margin-bottom: 8px;
  list-style-type: disc;
}
.vision-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.custom-section{
    background-color: #100b2e !important;
}
.custom-heading {
  font-size: 28px;
  font-weight: 600;
}

.custom-paragraph {
  font-size: 16px;
  line-height: 1.6;
}

.custom-list {
  padding-left: 20px;
}

.custom-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.custom-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.csrgallery{
    background: #fff9e8;
}
/* Swiper slide size */
.gallerycarousel .swiper-slide {
    height: 454px;            /* FIXED HEIGHT – adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image uniform sizing */
.gallerycarousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Keeps aspect ratio & fills container */
    border-radius: 8px;       /* Optional */
}






/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-wrapper {
    padding-top: 60%;
  }

  .banner-quote {
    font-size: 11px;
  }

  .banner-content {
    max-width: 90%;
  }
  .banner-designation {
    font-size: 8px;
  }
  .banner-designation strong {
    font-size: 16px;
  }
   .vision-img {
    height: 350px;
}
 .custom-heading {
    font-size: 22px;
  }

  .custom-paragraph, .custom-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .banner-wrapper {
    padding-top: 75%;
  }

  .banner-quote {
    font-size: 11px;
  }

  .banner-designation {
    font-size: 8px;
  }
  .banner-designation {
    font-size: 13px;
  }
  .banner-designation strong {
    font-size: 15px;
  }
}



@media (max-width: 768px) {
  .csr-heading {
    font-size: 28px;
  }
  .custom-breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .csr-heading {
    font-size: 15px;
  }
  .custom-breadcrumb {
    font-size: 10px;
  }
}

@media(max-width: 767px){
    .chairmensection.chairmensection-inner{
        background-position: left top;
        background-size: contain;
    }
    .chairmensection.chairmensection-inner .chairmantop {
        top: 20em;
        padding-bottom: 15px;
        background-color: #101338;
    }
}


.text-gradient {
  background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Year Buttons ===== */
.btn-year {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #111;
  font-weight: 500;
  min-width: 120px;
  border-radius: 8px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.btn-year:hover,
.btn-year.active {
  background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
  color: #fff;
  border-color: transparent;
}

/* ===== PDF Cards ===== */
.pdf-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pdf-card:hover {
  transform: translateY(-6px);
  background-color: #fffdf9;
  box-shadow: 0 8px 24px rgba(255, 195, 99, 0.25);
}

/* ===== PDF Icon ===== */
.pdf-icon {
  position: relative;
  width: 60px;
  height: 70px;
  margin: 0 auto;
  background-color: #e4e4e4;
  border-radius: 6px;
}

.pdf-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #c79a64;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
}

/* ===== Download Icon ===== */
.download-icon {
  font-size: 1.4rem;
  color: #c79a64;
  transition: color 0.3s;
}

.download-icon:hover {
  color: #623e12;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .btn-year {
    min-width: 90px;
    font-size: 0.9rem;
  }

  .pdf-card {
    padding: 20px 15px;
  }



.cmd-banner img{
  height:500px;
}
 .logo-wrapper img {
  /*height: 100px;*/
  position: relative;
  /*bottom:70px;*/
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

  .btn-gradient-outline {
  color: #623e12; /* Text color matches the darker gradient tone */
  border: 2px solid transparent;
  border-image: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  border-image-slice: 1;
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Hover effect — fills with gradient */
.btn-gradient-outline:hover {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  color: #fff;

}
.project-description {
  background-color: #fff;
}

.project-description .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #623e12; /* matches your theme color */
}

.project-description .section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.project-gallery {
  background: #faf9f6;
  overflow: visible; /* so side images are visible outside */
}
.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;       /* Rounded corners for image */
  object-fit: cover;         /* Keeps image aspect ratio */
  transition: transform 0.3s ease;
}
.gallerySwiper {
  width: 100%;
  padding: 40px 0; /* more padding for visual balance */
}

/* Make slides wider */
.swiper-slide {
  width: 700px; /* increase this to make center slide bigger */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.7);
  z-index: 1;

}

/* Images inside slides */
.swiper-slide img {
  width: 100%; /* fill the slide width */
  height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.5s ease;
  object-fit: cover;
}

/* Center slide larger */
.swiper-slide-active {
  transform: scale(1.2); /* increase the scale for zoom effect */
  opacity: 1;
  z-index: 5;
}


/* Previous & next slides (partially visible behind center) */
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.9);
  z-index: 2;
}

/* Swiper pagination (dots) */
.swiper-pagination-bullet {
  background: #623e12;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #f4d4a1;
  opacity: 1;
}
.projects-highlights {
  background-color: #ffffffff;
}

.projects-highlights .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #623e12;
}

.projects-highlights .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.video-wrapper {
  position: relative;
  width: 100%;

  margin: 0 auto;

  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
.project-features {
  background: linear-gradient(102deg, #bd8f46ff -0.78%, #916e43ff 102.56%);

  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-features .features-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5c400cff;
}

.project-features .features-text {
  font-size: 1rem;
  color: #ffffffff;
  line-height: 1.7;
}

.project-features .features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;

  /* 2 columns */
  column-count: 3;
  column-gap: 40px; /* gap between columns */

  /* For smaller screens */
  @media (max-width: 768px) {
    column-count: 1;
  }
}

.project-features .features-list li {
  font-size: 1rem;
  color: #ffffffff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.project-features .features-list li::before {
  content: "➤";
  color: #473a0eff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.projects-amenities {
  background: #faf9f6;
}

.projects-amenities .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #623e12;
}

.amenities-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #555;
  cursor: pointer;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #623e12;
  border-bottom: 2px solid #f4d4a1;
}

.tab-separator {
  width: 2px;
  height: 40px;
  background: #6e6060;
  margin: 0 10px;
}

/* Hide non-active tab content */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Swiper */
.amenitiesSwiper {
  padding: 20px 0;
}
.amenitiesSwiper .swiper-slide {
  opacity: 1 !important;
  transform: scale(1) !important;
}
/* Set a fixed height for the swiper-wrapper inside amenities */
.amenitiesSwiper .swiper-wrapper {
  height: 300px; /* adjust the height as needed */
}

/* Optional: make slides take full height */
.amenitiesSwiper .swiper-slide swiper-slide-amenities {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-slide swiper-slide-amenities img {
  width: 97%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Features Grid */
.features-grid .feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.features-grid p {
  font-size: 0.95rem;
  color: #555;
}

.feature-icon {
  font-size: 50px;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}
.projects-floorplans {
  background: linear-gradient(102deg, #bd8f46ff -0.78%, #ffffffff 102.56%);
}

.floorplan-tabs, .sub-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tab-btn, .sub-tab-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #555;
  cursor: pointer;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.tab-btn.active, .sub-tab-btn.active {
  color: #623e12;
  border-bottom: 2px solid #f4d4a1;
}

/* Hide non-active tabs */
.tab-pane, .sub-tab-pane {
  display: none;
}

.tab-pane.active, .sub-tab-pane.active {
  display: block;
}
.floor{
  padding: 12px 30px
}

.floorplan-slide {
  display: flex;
  gap: 30px;
}

.floorplan-details h3 {
  font-size: 1.8rem;
  color: #623e12;
  font-weight: 700;
  margin-bottom: 20px;
}

.floorplan-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.floorplan-slide img {
  width: 100%;
  border-radius: 16px;
  box-shadow: none; /* removes the shadow */
}


/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
  color: #623e12;
}
.floorplan-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto; /* center and spacing */
}
:root {
  --theme-gradient: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  --theme-color: #623e12;
}

.projects-contact {
  background: #faf8f5;
  color: #333;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.pricing {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pricing strong {
  color: var(--theme-color);
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
}

/* Tabs */
.form-tabs {
  display: flex;
  gap: 1rem;
}

.form-tabs .tab-btn {
  border: 2px solid var(--theme-color);
  background: transparent;
  color: var(--theme-color);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.form-tabs .tab-btn.active,
.form-tabs .tab-btn:hover {
  background: var(--theme-gradient);
  color: #fff;
  border-color: transparent;
}

/* Tab Content */
.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
}

/* Forms */
.modern-form .form-group {
  margin-bottom: 1rem;
}

.modern-form label {
  font-weight: 500;
  margin-bottom: 0.3rem;

}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.btn-submit {
  background: var(--theme-gradient);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Channel Partner Info */
.channel-info h3 {
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom:10px;
}

.contact-details p,
.existing-partner p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.partner-link {
  color: var(--theme-color);
  text-decoration: underline;
}
.projects-contact {
  background: #f9f9f9;
}

.contact-text {
  padding: 20px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #623e12;
  margin-bottom: 20px;
}

.pricing {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Tabs */
.form-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.form-tabs .tab-btn {
  flex: 1;
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-tabs .tab-btn.active {
  background: #623e12;
  color: #fff;
  border-color: #623e12;
}

/* Tab content */
.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}
/* Form Layout */
.modern-form {
  background: #faf8f4;

  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 1rem;

}

.form-group {
  margin-bottom: 1.2rem;
  width: 100%;
}

.form-group.half {
  flex: 1;
}
.form-group.terms label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-group.terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  color: #623e12;
  margin: 0;
}

.form-group.terms span {
  font-size: 0.95rem;
  color: #333;
}

.form-group.terms a {
  color: #6c63ff;
  text-decoration: none;
}

.form-group.terms a:hover {
  text-decoration: underline;
}
/* Inputs */
.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
  transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: #623e12;
  box-shadow: 0 0 0 3px rgba(98, 62, 18, 0.1);
}

/* Preferred Mode of Contact */
.contact-mode {
  margin-bottom: 1.5rem;
}

.contact-label {
  display: block;
  font-weight: 600;
  color: #623e12;
  margin-bottom: 0.6rem;
}

.radio-group {
  display: flex;

  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap; /* keep them in one line */
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  white-space: nowrap; /* prevents wrapping */
}

/* Terms Checkbox */
.terms {
  font-size: 0.9rem;
  color: #444;
}

.terms input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #623e12;
}

.terms a {
  color: #623e12;
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: linear-gradient(102deg, #f4d4a1, #623e12);
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(98, 62, 18, 0.25);
}

/* Modern Form */
.modern-form .form-group {
  margin-bottom: 15px;
}

.modern-form label {

  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: #623e12;
  box-shadow: 0 0 8px rgba(98, 62, 18, 0.3);
}

.btn-submit {
  background: #623e12;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #916e43;
}
.projects-location .nav-tabs .nav-link {
  color: #623e12;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.projects-location .nav-tabs .nav-link.active {
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  color: #fff;
  border: none;
}

.projects-location .nav-tabs {
  border-bottom: none;
}

.projects-location iframe {
  border: none;
  border-radius: 12px;
}

.advantage-box {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.advantage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.advantage-icon {
  font-size: 36px;
  background: linear-gradient(102deg, #f4d4a1 -0.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Default Swiper navigation visibility fix */


/* Responsive */
@media(max-width: 992px) {
  .projects-contact .row {
    flex-direction: column;
  }

  .contact-text {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .floorplan-slide {
    flex-direction: column;
  }
  .floorplan-details {
    margin-bottom: 20px;
    text-align: center;
  }
}


/* Optional spacing & responsiveness */
@media (max-width: 768px) {
  .project-description .section-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .project-description .section-text {
    text-align: center;
  }
}


/* ===== Envelope Style Video Section ===== */
.video-showcase {
  background: #f8f8f8;
}
.text-gradient {
  background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.envelope-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.envelope-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Flap effect */
.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(102deg, #ffc363 -.78%, #623e12 102.56%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Body (image area) */
.envelope-body {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.envelope-body img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.envelope-card:hover img {
  transform: scale(1.05);
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 195, 99, 0.9);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.play-overlay i {
  color: #fff;
  font-size: 2rem;
}
.envelope-body:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Info */
.video-info {
  padding: 15px 10px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .envelope-body img {
    height: 220px;
  }
  .play-overlay {
    width: 55px;
    height: 55px;
  }
  .play-overlay i {
    font-size: 1.5rem;
  }
}


/**-------Timeline CSS----------***/

.timeline {
  position: relative;
  padding: 60px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: #d9b18c;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 60px 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-color: #d9b18c;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.timeline-img-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  position: relative;
}

.timeline-year_range {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(70, 70, 70, 0.12);
  position: absolute;
  top: -40px;
  left: 15px;
  pointer-events: none;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b67a42;
}

.content {
  width: 100%;
  text-align: justify;
}

@media (min-width: 992px) {
  .timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    width: 45%;
    order: 1;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-img-wrapper {
    width: 45%;
    order: 0;
  }

  .timeline-item:nth-child(even) .timeline-content {
    width: 45%;
    order: 0;
    text-align: left;
  }

  .timeline-item:nth-child(even) .timeline-img-wrapper {
    width: 45%;
    order: 1;
  }
}

@media (max-width: 991px) {
  .timeline::before {
    left: 29px;
  }

  .timeline-item::before {
    left: 20px;
    transform: translateY(-50%);
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-item,
  .timeline-img-wrapper,
  .timeline-content {
    width: 100%;
  }

  .timeline-img-wrapper {
    margin-bottom: 20px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-year_range {
    position: static;
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .timeline {
    padding: 40px 0;
  }

  .timeline-title {
    font-size: 1.2rem;
  }

  .timeline-year_range {
    font-size: 2.5rem;
  }
}
