/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #192324;
	--secondery-color		: #F8F8F8;
	--text-color			: #283132;
	--accent-color			: #f4b400;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", sans-serif;
}


/************************************/
/*** 	   02. 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.5em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

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;
}

.container{
	max-width: 1300px;
}

.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;
}

.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-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 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-color: var(--accent-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.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;
    color: var(--accent-color);
	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: 42px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 15px;
	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);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. 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{
	padding: 30px 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;
}

.navbar-brand img {
	width:100px;
	    position: absolute;
		top:0px}

.main-menu .nav-menu-wrapper{
	flex: 1;
    text-align: end;
		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: 16px;
	font-weight: 400;
	padding: 15px 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 280px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	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(--white-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;
}

.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);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 250px 0 250px;
	min-height: 100vh;
	margin-top: -118px;
}

.hero::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.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 280px 0 250px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted{
	margin-left: 30px;
}

/************************************/
/***       05. 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: 40px 0px 80px 0px;

}

.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-color: 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;
	text-transform: capitalize;
	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-color: 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;
}

.about-us-contact-list{
	width: calc(50% - 40px);
}

.about-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child{
	margin-bottom: 0;
}

.about-contact-item .icon-box{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box{
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img{
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

/*.about-contact-content{
	width: calc(100% - 55px);
}*/

.about-contact-content{
	width: calc(100% - 0px);
}

.about-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p{
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. 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;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a{
	display: block;
	cursor: none;
}

.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-btn{
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a{
	background-color: 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;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
    overflow: hidden;
	z-index: 1;
}

.intro-video-image a{
	display: block;
	cursor: none;
}

.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-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;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover{
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project{
	padding: 100px 0 70px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after{
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after{
	transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn{
	position: absolute;	
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);	
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);	
}

.project-btn a{
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img{
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover{
	background: var(--primary-color);
}

.project-btn a:hover img{
	transform: rotate(0deg);
}

.project-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
}

.project-content{
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2{
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2{
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a{
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work{
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item{
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box{
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img{
	max-width: 60px;
}

.how-we-work-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p{
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo{
	text-align: center;
}

.how-work-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill{
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no{
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress{
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image{
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1{
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure{
	display: block;
}

.our-skill-img-1 img{
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2{
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img{
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3{
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img{
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. 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{
	cursor: none;
}

.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;
}

/************************************/
/***       13. 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{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.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;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer{
	padding: 80px 0 0;
	background: var(--primary-color);
}

.main-footer .footer-header{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	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;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: var(--accent-color);
}

.footer-social-links ul li a:hover i{
	color: var(--white-color);
}

.footer-links h3{
	font-size: 22px;
	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-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: 65px;
	padding: 40px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
	margin-top: -118px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    font-size: 20px;
    color: var(--white-color);
}

.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 / 1.1;
    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;
	cursor: none;
}

.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-color: 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-color: 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;
	cursor: none;
}

.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{
	cursor: none;
}

.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: 100px 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){

	.navbar{
		padding: 20px 0;
	}
	
	.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: 180px 0 140px;
		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{
		padding: 50px 0;
	}

	.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{
        padding: 180px 0 100px;
        margin-top: -92px;
    }

    .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{
		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: start;
		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;
	}

	.page-header-box h1{
		font-size: 28px;
		margin-bottom: 5px;
	}

	.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%;
    }
}

h2.text-banner-sub {
    color: white;
    font-size: 25px;
    margin-top: 30px;
    font-weight: 500;
}

.banner-text {
    font-size: 16px !important;
    font-weight: 500;
}


h2.main-title {
    text-align: center;
}
.section-top-title {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 0px;
}
















/* Trusted Partners Section */
.trusted-partners {
    padding: 50px 0px 0px 0px;
    background: #ffffff;
}
/*
.trusted-partners .container {
 
    margin: auto;
    padding: 0 15px;
}*/

/* Heading */
.partners-heading {
    text-align: center;
    margin-bottom: 55px;
}

.partners-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #ff6b00;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.partners-description {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: auto;
    line-height: 1.7;
}

/* Brand Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Brand Card */
.brand-card {
    background: #f8f8f8;
    padding: 25px 20px 20px;
    text-align: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: brandFadeUp 0.8s ease both;
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c877f, #7c877f);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.brand-card h4,
.brand-card span {
    position: relative;
    z-index: 1;
}

.brand-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.brand-card span {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

/* Hover Effects */
.brand-card:hover::before {
    transform: translateY(0);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.brand-card:hover h4,
.brand-card:hover span {
    color: #ffffff;
}

/* Animation */
@keyframes brandFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .partners-title {
        font-size: 28px;
    }
}


li.Our-Expertise {
    color: white !important;
    font-size: 15px;
}

.Our-Expertise::before {
    color: white !important;
}

ul.Expertise-ul {
    margin-top: 20px;
}















/* Contact Information Section */
.contact-info-section {
    position: relative;
    padding: 35px 45px;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Background Pattern */
.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
       background: var(--primary-color);
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Section Title Styling */
.contact-info-section .section-title h3 {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #7c877f;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-info-section .section-title h2 {
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}


.contact-info-section .section-title h2 span {
    position: relative;
}


.contact-info-section .section-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
        margin-bottom: 0;
}

/* Consultation Box */

.cta-icon {
    width: 50px;
    height: 50px;
    background: #7c877f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2.5;
}

.cta-content h4 {
    margin: 0;
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.4;
}

/* Contact Details */
.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f4b400;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
background: #f4b400;

}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg {
    color: white;
}

.contact-text {
    flex: 1;
}

.contact-text .label {
    display: block;
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text .value {
    display: block;
    font-size: 20px;
    color: #1a202c;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text .value:hover {
    color: #7c877f;
}

/* Phone Ring Animation */
.phone-ring {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.phone-item:hover .phone-ring {
    animation: ring 2s infinite;
    opacity: 1;
}

@keyframes ring {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: translateY(-50%) scale(2);
        opacity: 0;
    }
}

/* Email Fly Animation */
.email-fly {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.email-item:hover .email-fly {
    animation: fly 2s infinite;
    opacity: 1;
}

@keyframes fly {
    0% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-50%) translateX(20px) rotate(180deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(-50%) translateX(40px) rotate(360deg);
        opacity: 0;
    }
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.phone-item { animation-delay: 0.1s; }
.email-item { animation-delay: 0.2s; }

/* Responsive Design for Contact Info */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 40px;
        min-height: auto;
        margin-bottom: 30px;
    }
    
    .contact-info-section .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .contact-text .value {
        font-size: 18px;
    }
    
    .consultation-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}


.footer-logo img {
    width: 17%;
}

























/* -------------------------
   ABOUT TOP
------------------------- */
.about-top {
    padding: 80px 0;
    background: #fafafa;
}

.section-top-title {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.partners-description {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* -------------------------
   STATS SECTION
------------------------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-box h3 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin: 0;
}

.star {
    color: #f4b400;
}

/* Hover */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}

/* Highlight */
.stat-box.highlight {
    background: linear-gradient(135deg, #111, #2c2c2c);
}

.stat-box.highlight h3,
.stat-box.highlight p {
    color: #fff;
}

/* -------------------------
   SERVICE LOCATIONS
------------------------- */
.service-locations {
    margin-top: 30px;
    padding: 20px 0px;
    text-align: center;
}

.service-locations h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111;
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.location-links a {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #D4AF37;
    background: #f9f9f9;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-links a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 991px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .about-top {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .service-locations {
        padding: 30px 20px;
    }
}


































/* ===============================
 Vision Mission Comparison
================================ */
/* Comparison Content */
.vm-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 0px;
}

/* Column */
.vm-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Titles - fixed height */
.vm-title {
    font-size: 22px;
    font-weight: 700;
    min-height: 60px; /* Consistent title height */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vm-problem-title {
    color: #b91c1c;
}

.vm-solution-title {
    color: #065f46;
}

/* Card - fixed height and alignment */

.vm-card {
    background: #fafafa;
    padding: 20px 15px 0px 15px;
    border-radius: 10px;
    min-height: 129px !important;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Gold Accent */
.vm-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #D4AF37;
}

/* Icon */
.vm-icon {
    font-size: 30px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 4px;
    width: 40px; /* Fixed icon width */
}

/* Content - proper alignment */
.vm-content {
    flex: 1;
    min-height: 130px; /* Ensure content area has minimum height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vm-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vm-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    flex: 1; /* Makes paragraph take available space */
}

/* Color variants */
.vm-problem .vm-content h4 {
    color: #b91c1c;
}

.vm-solution .vm-content h4 {
    color: #065f46;
}

/* Hover Effects */
.vm-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Shine animation */
.vm-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(212, 175, 55, 0.25),
        transparent
    );
    transition: 0.6s ease;
}

.vm-card:hover::after {
    left: 120%;
}

/* Responsive */
@media (max-width: 991px) {
    .vm-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vm-title {
        min-height: auto;
        height: auto;
        margin-bottom: 20px;
    }
    
    .vm-card {
        min-height: auto; /* Remove fixed height on mobile */
        height: auto;
            padding: 10px 10px 10px 10px;
                border-radius: 8px;


    }
    
    .vm-content {
        min-height: auto;
    }
}

/* Additional alignment for desktop - ensures cards in both columns match height */
@media (min-width: 992px) {
    .vm-column {
        justify-content: flex-start;
    }
    
    .vm-card:nth-child(2) {
        flex: 1;
    }
}




















/* ===============================
   AJ Credentials Block
================================ */
 
  /* Section */
.aj-advantage {
    padding: 80px 0;
    background: #f8f8f8;
}

/* Grid */
.aj-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

/* Left */
.aj-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    color: #d4af37;
    margin-bottom: 12px;
}

.aj-adv-left h2 {
  
    line-height: 1.2;
    margin-bottom: 16px;
}

.aj-adv-left strong {
    color: #000;
}

.aj-adv-left p {
    color: #555;
    max-width: 520px;
    margin-bottom: 40px;
}

/* Credentials */
.aj-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.aj-cred {
    position: relative;
    padding-left: 14px;
}

.aj-cred::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 100%;
    background: #d4af37;
}

.aj-cred h5 {
    font-size: 15px;
    font-weight: 700;
}

.aj-cred span {
    font-size: 13px;
    color: #666;
}

.aj-cred em {
    font-size: 12px;
    color: #999;
    font-style: normal;
}

/* Right */
.aj-adv-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.aj-feature {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    display: flex;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.aj-feature:hover {
    transform: translateY(-6px);
}

.aj-feature .icon {
    font-size: 28px;
}

.aj-feature h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.aj-feature p {
    margin: 0px;
}

/* Responsive */
@media (max-width: 991px) {
    .aj-adv-grid {
        grid-template-columns: 1fr;
    }

    .aj-adv-right {
        grid-template-columns: 1fr;
    }

    .aj-credentials {
        grid-template-columns: 1fr;
    }
}

.aj-but {
    text-align: start !important;
    margin-top: 10%;
}

















































/* Grid */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.flow-item {
  background: #fff;
  border-radius: 22px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Golden glow */
.flow-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
    rgba(212,175,55,0.18),
    transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-item:hover::before {
  opacity: 1;
}

/* Number watermark */
.flow-item::after {
  content: attr(data-number);
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(212,175,55,0.08);
}

/* Icon */
.flow-icon {
  width: 78px;
  height: 78px;
  background: rgba(212,175,55,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

/* Content */
.flow-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
  position: relative;
}

/*.flow-content p {
  
 
  margin-bottom: 18px;
}*/

.flow-content a {
  font-size: 14.5px;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  position: relative;
}

/* Hover Effects */
.flow-item:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

.flow-item:hover .flow-icon {
  background: #D4AF37;
  color: #fff;
  transform: scale(1.12) rotate(6deg);
}

.flow-content a::after {
  content: " →";
  transition: transform 0.3s ease;
}

.flow-item:hover a::after {
  transform: translateX(6px);
}


/* Responsive */
@media (max-width: 1200px) {
  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .flow-list {
    grid-template-columns: 1fr;
  }
}


















































/* Table Styling */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 15px 15px;
    text-align: left;
}

.pricing-table thead {
    background: #000000;
    color: #fff;
}

.pricing-table th {
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table tbody tr.bg-light {
    background: #fff;
}

.pricing-table tbody tr.bg-dark {
    background-color: rgb(255 255 255) !important;
}

.pricing-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Home Type */
.home-type {
    display: flex;
    align-items: center;
}

.home-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 12px;
    margin-right: 12px;
}

.home-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.home-info .size {
    font-size: 0.85rem;
    color: #555;
}

/* Prices */
.price-cell .market-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-cell .our-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-top: 4px;
}

/* Savings */
.savings-cell {
    text-align: center;
}

.savings-badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(212,175,55,0.2);
    color: #b8941f;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.savings-badge:hover {
    transform: scale(1.1);
}

/* Responsive */
@media(max-width: 768px) {
    .pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .pricing-table th,
    .pricing-table td {
        min-width: 180px;
    }
}

.pricing-info-box {
    background: linear-gradient(135deg, #fff8e1, #fff5d4);
    border-left: 6px solid #d4af37;
    padding: 20px 20px;
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.pricing-info-box h3 {
    font-size: 20px;
    color: #b8941f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-info-box p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pricing-info-box ul.pricing-details {
    list-style-type: none;
    padding-left: 0;
}

.pricing-info-box ul.pricing-details li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.pricing-info-box ul.pricing-details li strong {
    color: #1a1a1a;
}


.aj-port-img {

aspect-ratio: 2 / 1.36 !important;
}


.tow-but {
    display: flex;
    gap: 30px;
}


























/* SECTION */
.trust-section {
  padding: 90px 0;
  background: linear-gradient(180deg,#f8f8f8,#ffffff);
  overflow: hidden;
}

/* TITLE */
.trust-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #222;
}

.trust-subtitle {
  text-align: center;
  color: #666;
  max-width: 650px;
  margin: 15px auto 50px;
  font-size: 16px;
}

/* MARQUEE */
.trust-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.trust-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: trustScroll 40s linear infinite;
}

/* Pause on hover */
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

/* CARD */
.trust-card {
  width: 400px;
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow border effect */
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.trust-card:hover::after {
  border-color: rgba(212,175,55,0.6);
}

/* Hover */
.trust-card:hover {
  /*transform: translateY(-12px) scale(1.02);*/
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ICON */
.trust-icon {
  width: 80px;
  height: 80px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.trust-card:hover .trust-icon {
  background: #D4AF37;
  color: #fff;
  transform: rotate(8deg) scale(1.15);
}

/* TEXT */
.trust-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

/*.trust-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0px;
}*/

/* SLIDE ANIMATION */
@keyframes trustScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-title {
    font-size: 26px;
  }

  .trust-card {
    min-width: 260px;
    padding: 28px 24px;
  }

  .trust-icon {
    width: 65px;
    height: 65px;
    font-size: 32px;
  }
}











































/* GRID */
.insite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.insite-card {
  background: #fff;
  border-radius: 22px;
  padding: 25px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover */
.insite-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border-color: rgba(212,175,55,0.5);
}

/* Step Letter */
.insite-step {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 50px;
  font-weight: 800;
  color: rgba(212,175,55,0.12);
}

/* Phase */
.insite-phase {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 15px;
}

/* Title */
.insite-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

/* Text */
.insite-card p {
 margin-bottom: 0px;
}

/* Accent line */
.insite-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 0;
  background: linear-gradient(90deg,#D4AF37,#b8962e);
  transition: width 0.4s ease;
}

.insite-card:hover::after {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .insite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .insite-grid {
    grid-template-columns: 1fr;
  }

  .insite-header h2 {
    font-size: 26px;
  }
}

  



















































.exp-center-section {
  padding: 120px 0;
  background: #f6f6f6;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.exp-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.exp-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.exp-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #000;
  color: #fff;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.exp-open {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #d4af37;
  color: #000;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 800;
}

/* CONTENT */
.exp-details h6 {
  font-size: 13px;
  letter-spacing: 3px;
  color: #b89c4d;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.exp-title {
 
  margin-bottom: 10px;
}

.exp-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 500;
}

/* HIGHLIGHT */
.exp-highlight-bar {
  border-left: 4px solid #d4af37;
  padding-left: 20px;
  margin-bottom: 32px;
}

.exp-highlight-bar strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.exp-highlight-bar span {
  font-size: 15px;
  color: #666;
}

/* META */
.exp-meta {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.exp-meta li {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* POINTS */
.exp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-bottom: 38px;
}

.exp-points span {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* ACTIONS */
.exp-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.exp-btn-primary {
  background: #000;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.exp-btn-primary:hover {
  background: #d4af37;
  color: #000;
}

.exp-btn-link {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .exp-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .exp-title {
    font-size: 32px;
  }
}

































/* HERO TRUST BADGES */
.hero-trust {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-trust span {
    background: #f4b400;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* HERO HIGHLIGHTS */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 25px 0;
}
.hero-highlights span {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.hero-highlights span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37;
    font-weight: 800;
}

/* INVESTMENT LINE */
.hero-invest {
    margin-top: 20px;
    font-size: 15px;
    color: #ffffff;
}

.hero-invest strong {
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-trust,
    .hero-highlights {
        /*justify-content: center;*/
        text-align: center;
    }

    .hero-invest {
        text-align: center;
    }
}



.exp-highlight-bar {
    margin-top: 20px;
}

ul.exp-meta {
    margin-bottom: 15px;
}

































































/* Footer About */
.footer-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Footer Bottom Extra Links */
.footer-extra-links a {
    margin-left: 15px;
    font-size: 14px;
    color: #bfbfbf;
    transition: 0.3s;
}

.footer-extra-links a:hover {
    color: #fff;
}

/* Footer Highlight Line */

/* Mobile Adjustments */
@media (max-width: 767px) {
    .footer-extra-links {
        text-align: center;
        margin-top: 10px;
    }

    .footer-extra-links a {
        margin: 0 8px;
    }

    .footer-highlight-text {
        margin-top: 15px;
    }
}


.footer-links.footer-about-box span {
    color: #f4b400;
}









/* ===============================
   FOOTER ABOUT
================================ */

.footer-about-box h3 span {
    color: #c9a14a;
}

/* ===============================
   FOOTER BADGES
================================ */
.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    white-space: nowrap;
}

/* ===============================
   FOOTER CONTACT LINKS
================================ */
.footer-contact-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-content a:hover {
    color: #c9a14a;
}

/* ===============================
   FOOTER EXTRA LINKS (BOTTOM)
================================ */
.footer-extra-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-extra-links a {
    font-size: 14px;
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-extra-links a:hover {
    color: #c9a14a;
}

/* ===============================
   FOOTER HIGHLIGHT TEXT
================================ */
.footer-highlight-text {
    font-size: 13px;
    font-weight: 600;
    color: #c9a14a;
    letter-spacing: 0.3px;
    text-align: right;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 767px) {

    .footer-extra-links {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-extra-links a {
        margin: 0 8px;
        font-size: 13px;
    }

    .footer-highlight-text {
        text-align: center;
        margin-top: 15px;
        font-size: 13px;
    }
}

























































/* Contact Form Wrapper */

/* Grid row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 20px;
}

/* Single column items (select & textarea) */
.form-row .form-group.col-12 {
    grid-column: span 2;
}

/* Labels */
.contact-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* Inputs, select, textarea */
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Placeholder color */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #aaa;
}

/* Focus effect */
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    border-color: #c9a14a;
    box-shadow: 0 0 0 2px rgba(201,161,74,0.15);
    outline: none;
}

/* Textarea */
.contact-form-wrapper textarea {
    resize: vertical;
}

/* Submit Button */
.contact-form-wrapper button {
    padding: 12px 30px;
    background-color: #c9a14a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper button:hover {
    background-color: #b08f3c;
}

/* Success/Error message */
#msgSubmit {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr; /* single column on mobile */
    }

    .form-row .form-group.col-12 {
        grid-column: span 1;
    }

    .contact-form-wrapper button {
        width: 100%;
    }
}
.form-group.col-md-6 {
    width: 100% !important;
}








/* Consultation Box */
.consultation-box {
    background: #f9f9f9;
    border-left: 4px solid #c9a14a;
    padding: 20px 25px;
    border-radius: 8px;
}

/* Title */
.consultation-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* Steps list */
.consultation-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultation-steps li {
    font-size: 16px;
    color: #000000;
    padding-left: 18px;
    margin-bottom: 8px;
    position: relative;
}

/* Simple dot instead of icon */
.consultation-steps li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a14a;
    font-size: 18px;
    line-height: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .consultation-box {
        padding: 18px;
    }

    .consultation-box h4 {
        font-size: 16px;
    }
}


.get-free-heading {
    color: white !important;
}





















/*About page */


/*.innerpages {
    position: relative;
    background-color: black;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 185px 0 50px;
    margin-top: -118px;
}
*/

.innerpage-ptag {
    color: white;
    margin-top: 15px;
}

.innerpage-ptag-but {
    margin-top: 20px;
}





































/* ===============================
   Leadership Section
=================================*/

.leadership-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.leadership-section .section-title h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.leadership-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.leadership-section .section-title p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

/* Founder Image */
.leader-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    width: 100%;
    display: block;
}

/* Content Area */
.leader-content {
    padding-left: 30px;
}

.leader-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.leader-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.leader-content h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: #c49b63;
    border-radius: 2px;
}

.leader-content p {

    margin-bottom: 15px;
}

.leader-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.leader-content ul li {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

/* Quote Styling */
.leader-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: #fff;
    border-left: 5px solid #c49b63;
    font-style: italic;
    font-size: 16px;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

/* Button */
.leadership-section .btn-default {
    margin-top: 20px;
   
}

.leadership-section .btn-default:hover {
    background: #111;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .leader-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .leadership-section {
        padding: 70px 0;
    }

    .leadership-section .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .leadership-section .section-title h2 {
        font-size: 28px;
    }

    .leader-content h3 {
        font-size: 24px;
    }

    .leader-content h4 {
        font-size: 18px;
    }
}









































/* ===============================
   What Drives Us Section
=================================*/

.aj-drives-us {
    padding: 100px 0;
    background: #ffffff;
}

.aj-drive-grid {
    margin-top: 60px;
}

/* Intro */
.aj-drive-intro {
    position: sticky;
    top: 120px;
}

.aj-drive-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.aj-drive-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Cards */
.aj-drive-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 18px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.aj-drive-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.aj-drive-card .icon {
    font-size: 32px;
    min-width: 48px;
}

.aj-drive-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.aj-drive-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .aj-drive-intro {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .aj-drive-intro h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .aj-drive-card {
        padding: 22px;
        gap: 15px;
    }

    .aj-drive-card h4 {
        font-size: 18px;
    }
}









/* ==============================
   Manufacturing System – PRO UI
================================*/

.manufacturing-system {
    background: #f7f7f7;
    padding: 120px 0;
    color: #111;
}

.ms-header {
    max-width: 900px;
    margin: 0 auto 90px;
    text-align: center;
}

.ms-header h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.ms-header p {
    font-size: 18px;
    color: #555;
}

/* MAIN GRID */
.ms-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CORE INFO */
.ms-core h4 {
    font-size: 26px;
    margin-bottom: 20px;
}

.ms-core p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.ms-core strong {
    color: #000;
}

.ms-benefits {
    margin-top: 35px;
    padding-left: 18px;
}

.ms-benefits li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

/* FLOW SYSTEM */
.ms-flow {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.ms-flow::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.ms-step {
    padding-left: 60px;
    position: relative;
}

.ms-step span {
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.ms-step h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.ms-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 900px) {
    .ms-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ms-header h2 {
        font-size: 34px;
    }
}



























/* ===============================
   Quality Guarantee Section
=================================*/

.aj-quality-guarantee {
    padding: 100px 0;
    background: #f9f9f9;
}

/* Steps Timeline */
.aj-qg-steps {
    margin-top: 60px;
}

.aj-qg-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 30px;
    position: relative;
    border-left: 4px solid #c49b63;
    transition: all 0.3s ease;
}

.aj-qg-step:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #c49b63;
    position: absolute;
    left: -50px;
    top: 20px;
}

.aj-qg-step h4 {
    font-size: 18.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.aj-qg-step p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Guarantee Block */
.aj-qg-guarantee {
    background: #111;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
}

.aj-qg-guarantee h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #c49b63;
}

.aj-qg-guarantee p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.aj-qg-guarantee blockquote {
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.7;
    color: #fff;
    border-left: 4px solid #c49b63;
    padding-left: 15px;
    margin: 0 auto;
    max-width: 800px;
}

/* Responsive */
@media (max-width: 991px) {
    .step-number {
        left: -35px;
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .aj-qg-step {
        padding: 20px 20px;
    }

    .aj-qg-step h4 {
        font-size: 17px;
    }

    .aj-qg-guarantee {
        padding: 35px 20px;
    }
}























/* ===============================
   Awards & Testimonials Section
=================================*/

.aj-awards {
    padding: 100px 0;
    background: #f7f7f7;
}

.aj-awards-grid {
    margin-top: 60px;
    row-gap: 30px;
}

/* Card Styling */
.aj-award-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.aj-award-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.aj-award-card .icon {
    font-size: 36px;
    margin-bottom: 18px;
    color: #c49b63;
}

.aj-award-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.aj-award-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .aj-awards-grid {
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .aj-award-card {
        padding: 22px 18px;
    }

    .aj-award-card h4 {
        font-size: 17px;
    }

    .aj-award-card p {
        font-size: 14px;
    }

    .aj-award-card .icon {
        font-size: 32px;
    }
}



























/* ===============================
   Modern Service Location UI
================================*/
.aj-location-modern {
    padding: 100px 0;
    background: #ffffff;
}

.aj-location-modern .section-title p {
    max-width: 680px;
    margin: 0 auto;
    color: #666;
}

/* Office Cards */
.aj-office-cards {
    margin-top: 60px;
}

.aj-location-card {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.aj-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.aj-location-card .tag {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #c49b63;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;
}

.aj-location-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.aj-location-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Coverage Area */
.aj-coverage {
    margin-top: 80px;
    padding: 45px;
    background: #f7f7f7;
    border-radius: 24px;
}

.aj-coverage h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.aj-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.coverage-item {
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    border-color: #c49b63;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.coverage-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.coverage-item span {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .aj-location-card h4 {
        font-size: 20px;
    }

    .aj-coverage {
        padding: 30px;
    }
}











.csr-list {
    margin-top: 10px;
    padding-left: 18px;
}



.csr-list li strong {
    color: #222;
}






























.exp-v2 {
    padding: 90px 0;
    background: linear-gradient(180deg,#fafafa,#ffffff);
}

/* HEADER */
.exp-v2-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.exp-v2-head h5 {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c49b63;
}

.exp-v2-head h2 {
   
    margin: 10px 0;
}

.exp-v2-head h2 span {
    color: #c49b63;
}

.exp-v2-head p {
    color: #666;
   
}

/* GRID */
.exp-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.exp-v2-image {
    position: relative;
}

.exp-v2-image img {
    width: 100%;
    border-radius: 28px;
}

.exp-v2-image .badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
}

/* CONTENT */
.info-box {
    background: #fff;
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    margin-bottom: 18px;
}

.info-box h4 {
    margin-bottom: 8px;
}

.info-box.split {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* ACTIONS */
.action-box {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.btn-primary {
    padding: 14px 30px;
    background: #c49b63;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    padding: 14px 30px;
    border: 2px solid #c49b63;
    color: #c49b63;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* SOCIAL */
.social-box span {
    font-weight: 600;
    margin-right: 10px;
}

.social-box a {
    margin-right: 15px;
    color: #c49b63;
    text-decoration: none;
}

/* EXPECT */
.expect-grid {
    margin-top: 90px;
    text-align: center;
}

.expect-grid h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.expect-items {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.expect-card {
    background: #fff;
    padding: 26px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    font-size: 15px;
}

/* MOBILE */
@media(max-width:991px){
    .exp-v2-grid {
        grid-template-columns: 1fr;
    }

    .expect-items {
        grid-template-columns: 1fr;
    }

    .action-box {
        flex-direction: column;
    }
}
.bottom-but {
    text-align: left !important;
    margin: 20px 0px;
}

.info-box.split p {
    margin: 0px;
}

.info-box p {
    margin: 0px;
}





/*
.innerpage-maindiv {
    padding-top: 200px;
    margin-bottom: 140px;
}
*/
.innerpage-mainheader {
    font-size: 40px !important;
    color: white;
}
.innerpage-maindiv h2.text-banner-sub {
    margin-top: 10px !important;
    color: #ffffff !important;
}

.innerpage-header-box {
    text-align: left !important;
}

























h2.text-bottom {
    font-size: 25px;
    margin: 20px 0px;
}





.aj-services {
    padding: 100px 0;
    background: #f9f9f9;
}

/* HEADER */
.aj-services-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.aj-services-head h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #c49b63;
}

.aj-services-head h2 {
    font-size: 42px;
    margin: 12px 0;
}

.aj-services-head h2 span {
    color: #c49b63;
}

.aj-services-head p {
    color: #666;
    font-size: 16px;
}

/* GRID */
.aj-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card .desc {
    margin-bottom: 10px;
}

.service-card ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.service-card ul li {
   
    margin-bottom: 5px;
}

.service-card .price {
    font-weight: 600;
    margin-bottom: 15px;
    color: #f4b400;
    font-size: 23px;
}

.card-btn {
    text-decoration: none;
    color: #c49b63;
    font-weight: 600;
}

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #c49b63;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #c49b63;
    color: #c49b63;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 991px){
    .aj-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .aj-services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}






























.complete-home-interior {
    padding: 30px 0 80px;
    background: #f9fafb;
}

/* Right side wrapper */
.interior-right-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Image */
.interior-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

/* Pricing grid */
.pricing-box-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.pricing-box {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.pricing-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.pricing-box p {
    font-size: 15px;
    font-weight: 500;
    color: black;
    margin: 0px;
}

.pricing-box.highlight {
    background: #f4b400;
    color: #ffffff;
}

.pricing-box.highlight p {
    color: #ffffff;
}

/* CTA */
.hero-btn {
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 991px) {
    .pricing-box-wrapper {
        grid-template-columns: 1fr;
    }

    .interior-right-wrap {
        margin-top: 40px;
    }
}




































.modular-kitchen-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.modular-kitchen-section .partners-heading h3 {
    color: #f4b400;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modular-kitchen-section .partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modular-kitchen-section .partners-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.modular-kitchen-section .list-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f4b400;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modular-kitchen-section ul.list-items,
.modular-kitchen-section ul.budget-items {
    list-style: disc inside;
    color: #555;
    line-height: 1.7;
    padding-left: 0;
    margin-bottom: 20px;
}

.modular-kitchen-section ol.process-items {
    padding-left: 20px;
    list-style: decimal inside;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.modular-kitchen-section .modular-kitchen-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.modular-kitchen-section .modular-kitchen-image img:hover {
    transform: scale(1.03);
}

.modular-kitchen-section .highlight-btn {
    display: inline-block;
    background: #f4b400;
    color: #111;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modular-kitchen-section .highlight-btn:hover {
    background: #d9a300;
    transform: translateY(-2px);
    color: #000;
}

/* Responsive */
@media(max-width:991px){
    .modular-kitchen-section {
        padding: 60px 15px;
    }

    .modular-kitchen-section .partners-title {
        font-size: 2rem;
    }

    .modular-kitchen-section .highlight-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}
.Kitchen-Section {
    text-align: center !important;
    margin-bottom: 20px;
}








































/* Wardrobe Section Styling */
.wardrobe-section .section-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wardrobe-section .section-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
   
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4b400;
    font-weight: bold;
}

/* Pricing Boxes */
.pricing-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.pricing-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-box p {
    font-size: 15px;
    font-weight: 600;
    color: #f4b400;
}


.pricing-box.highlight p {
    color: #000;
}

/* Image */
.interior-image img {
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
}


/* Mobile */
@media (max-width: 991px) {
    .pricing-box-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-box.highlight {
        grid-column: span 1;
    }
}


.innerpage-section-title {
    margin-bottom: 0px !important;
} 














































.portfolio-case {
    padding:80px 0;
    background:#f8f8f8;
}

/* Main Wrapper */
.portfolio-wrapper {
    display:flex;
    overflow:hidden;
    border-radius:14px;
    background:#000;
}

/* Image */
.portfolio-image {
    width:50%;
    position:relative;
}

.portfolio-image img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.flag-badge {
    position:absolute;
    top:20px;
    left:20px;
    background:#cfa73a;
    color:#000;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

/* Content */
.portfolio-content {
    width:50%;
    padding:40px;
    color:#fff;
    background:#000;
}

.portfolio-content h3 {
    margin-bottom:15px;
     color:#ffffff;
}

/*.portfolio-content p {
    color:#ccc;
    margin-bottom:15px;
}*/

.highlight {
    color:#cfa73a;
}

/* Stats */
.portfolio-stats {
    display:flex;
    gap:15px;
    margin:25px 0;
}

.stat-boxs {
    flex: 1;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2b2b2b;
}

.stat-boxs h4 {
    color:#cfa73a;
    font-size:22px;
}

.stat-boxs span {
    font-size:11px;
    color: #000000;
}

/* Buttons */
.portfolio-buttons {
    margin-top:25px;
}

.btn-gold {
    background:#cfa73a;
    color:#000;
    padding:12px 25px;
    border-radius:6px;
    font-weight:600;
    margin-right:10px;
    display:inline-block;
}

.btn-outline {
    border:1px solid #cfa73a;
    color:#cfa73a;
    padding:12px 25px;
    border-radius:6px;
    display:inline-block;
}

.btn-outline:hover {
    background:#cfa73a;
    color:#000;
}

/* Scope */
.scope-box {
    background:#fff;
    padding:30px;
    margin-top:30px;
    border-radius:10px;
}

.scope-box h4 {
    margin-bottom:15px;
}

.scope-box ul {
    padding-left:20px;
}

.scope-box li {
    margin-bottom:10px;
}
/* Tablet */
@media (max-width: 992px){

.portfolio-wrapper{
    flex-direction:column;
}

.portfolio-image,
.portfolio-content{
    width:100%;
}

.portfolio-image img{
    height:320px;
}

.portfolio-content{
    padding:30px;
}

.portfolio-stats{
    flex-wrap:wrap;
}

.stat-boxs{
    width:48%;
}

}


/* Mobile */
@media (max-width: 576px){

.portfolio-image img{
    height:250px;
}

.portfolio-content{
    padding:25px 18px;
}

.portfolio-content h3{
    font-size:18px;
}

.portfolio-content p{
    font-size:14px;
}

.portfolio-stats{
    flex-direction:column;
}

.stat-boxs{
    width:100%;
}

.portfolio-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.btn-gold,
.btn-outline{
    width:100%;
    text-align:center;
}

.scope-box{
    padding:22px 18px;
}

.scope-box li{
    font-size:14px;
}

}










































/* Project Tags Styling */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.project-tags span {
    background: #f5f5f5;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

/* Project Price Styling */
.project-price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 15px 0;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Quote Button Styling */
.quote-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    border: 2px solid #222;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.quote-btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Project Content Spacing */
.project-content {
    padding: 20px;
    background-color: #e4e4e4;
}

.project-content h3 {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    
}

.project-content h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-content h2 a:hover {
    color: #888;
}

.project-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Project Item Hover Effect */
.project-item:hover .project-content {
    background: #fafafa;
    transition: background 0.3s ease;
}

/* Portfolio Button (Bottom Section) */
.portfolio-btn {
    display: inline-block;
    background: transparent;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    border: 2px solid #222;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.portfolio-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Showcase Text */
.showcase-text {
    
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-tags {
        gap: 6px;
    }
    
    .project-tags span {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .project-price {
        font-size: 15px;
    }
    
    .quote-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .project-content h2 {
        font-size: 20px;
    }
    
    .project-content p {
        font-size: 14px;
    }
    
    .portfolio-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}



.teb-buts {
    text-align: center;
}



































/* Before & After Section */
.before-after-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}





/* Before After Grid */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Before After Card */
.before-after-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.before-after-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Comparison Wrapper */
.comparison-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

/* Image Comparison Container */
.image-comparison {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: col-resize;
    user-select: none;
}

.before-container,
.after-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-container {
    left: 0;
    width: 50%;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.after-container {
    right: 0;
    width: 100%;
}

.image-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Image Labels */
.image-label {
    position: absolute;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 3;
    border-radius: 0 0 4px 0;
}

.before-label {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #666 0%, #333 100%);
}

.after-label {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 0 0 0 4px;
}

/* Comparison Slider */
.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    cursor: col-resize;
    z-index: 4;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: grab;
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.slider-icon {
    color: #D4AF37;
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Project Details */
.project-details {
    padding: 30px;
}


/* Project Footer */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.investment {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.investment-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.investment-amount {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.investment-amount::before {
    content: '₹';
    font-size: 25px;
    color: #f4b400;
}


/* View More Container */
.view-more-container {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .partners-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .before-after-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .comparison-wrapper {
        height: 250px;
    }
    
    .project-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .view-details-btn {
        justify-content: center;
    }
    
    .view-more-btn {
        padding: 15px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .comparison-wrapper {
        height: 200px;
    }
    
    .slider-handle {
        width: 50px;
        height: 50px;
    }
    
    .main-title {
        font-size: 28px;
    }
}















































/* Process Flow Section */
.process-flow-section {
    padding: 70px 0;
}

.process-flow-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 16px;
    border-left: 5px solid #f4b400;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.process-count {
    min-width: 60px;
    height: 60px;
    background: #f4b400;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.process-time {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f4b400;
    margin-bottom: 8px;
}

.process-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
    }

    .process-count {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}




































/* CTA + TRUST SECTION */
.aj-cta-trust {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b1c2d 0%, #12283f 100%);
    color: #fff;
}

.aj-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.aj-cta-desc {
    font-size: 17px;
   
    margin-bottom: 30px;
}

/* CONTACT LIST */
.aj-contact-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 35px;
}

.aj-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15.5px;
    color: #e4e9ef;
}

.aj-contact-list a {
    color: #fff;
    text-decoration: none;
}

.aj-map-link {
    margin-left: 6px;
    color: #f4b400;
    font-weight: 600;
}

.aj-icon {
    font-size: 18px;
}

/* BUTTONS */
.aj-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.aj-btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.aj-btn-outline {
    border: 1px solid #f4b400;
    color: #f4b400;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
}

/* RIGHT TRUST BOX */
.aj-trust-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 180, 0, 0.25);
    border-radius: 14px;
    padding: 35px;
}

.aj-trust-box h4 {
    margin-bottom: 18px;
    color: #f4b400;
}

.aj-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aj-trust-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
   
}

.aj-trust-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .aj-cta-grid {
        grid-template-columns: 1fr;
    }

   }
.back-black {
    color: white;
}


















h3.banner-sub-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.section-title.section-top-title {
    margin-top: 40px;
}.vision-mission-innerpage {
    background: black;
    padding: 75px 0px;
}

.flow-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.flow-items {
    background: #fff;
    border-radius: 22px;
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.Interior-Styles-box {
    margin-top: 20px;
}
.Interior-Styles-sp {
  color: var(--accent-color);
}







































/* Style Guide Section */
.style-guide-section {
    padding: 0px 0 40px;
}

/* Table Wrapper */
.style-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

/* Table Base */
.style-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Table Header */
.style-table th {
    background: #000000;
    color: #ffffff;
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Table Body */
.style-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    vertical-align: middle;
}

/* Row Hover */
.style-table tbody tr:hover {
    background: rgba(244, 180, 0, 0.06);
}

/* Style Name Column */
.style-name {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

.style-name img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Badges */
.badges {
      font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f4b400;
}

.badge.low {
    background: rgba(244, 180, 0, 0.15);
    color: #000;
}

.badge.very-low {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

.badge.medium {
    background: rgba(244, 180, 0, 0.25);
    color: #000;
}

.badge.high {
    background: #f4b400;
    color: #000;
}

/* Expertise Section */
.expertise-section {
    margin-top: 50px;
}

.expertise-section .center {
    text-align: center;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

/* Expertise Card */
.expertise-card {
    background: #ffffff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-6px);
    border-bottom-color: #f4b400;
}

/* Expertise Image */
.expertise-img img {
    width: 100%;
    height: 190px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 16px;
}

/* Expertise Title */
.expertise-card h4 {
    margin-bottom: 10px;
  
}


/* Responsive */
@media (max-width: 991px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .style-name {
        flex-direction: column;
        align-items: flex-start;
    }
}



































/* Author Meta Section */
.author-meta {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-left: 4px solid #f4b400;
    background: rgb(255 255 255) !important;
    border-radius: 10px;
    max-width: 720px;
}

/* Icon Badge */
.author-badge {
    width: 44px;
    height: 44px;
    background: #f4b400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Text */
.author-text h4 {
    margin: 0 0 4px;
    font-size: 17.5px;
    font-weight: 600;
   
}

.author-text p {
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .author-meta {
        flex-direction: column;
    }
}
















































.material-guide-section {
  padding: 50px 0;
  background: #f8f8f8;
}

/* Key Takeaways */
.key-takeaways {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  margin-bottom: 60px;
}

.kt-header span {
  background: #f4b400;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
}
.grade-card h3 {
    font-size: 19px;
    margin: 10px 0px;
}

.kt-list {
  margin-top: 20px;
  padding-left: 18px;
}

.kt-list li {
  margin-bottom: 12px;
  color: #444;
}

.kt-list .highlight {
  background: #fff6d8;
  padding: 12px;
  border-left: 4px solid #f4b400;
}

/* Blocks */
.mg-block {
  margin-bottom: 40px;
}

.sub-title {
  margin-top: 20px;
  font-weight: 600;
}

/* Grade Cards */
.grade-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
  margin-top: 30px;
}

.grade-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.grade-card.premium {
  border-top: 4px solid #f4b400;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

/* Table */
.table-wrap {
  margin-top: 40px;
  overflow-x: auto;
}

.style-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.style-table th {
  background: #000000;
  color: #ffffff;
  padding: 14px;
}


/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.compare-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
}

.highlight-card {
  background: #fff6d8;
}

/* Tip */
.expert-tip {
  margin-top: 25px;
  padding: 15px;
  background: #fff6d8;
  border-left: 5px solid #f4b400;
}

/* Finishes */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
}

.finish-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.finish-card p {
    margin: 0px;
}
.finish-card h3 {
    font-size: 22px;
}

/* Mobile */
@media(max-width:768px){
  .mg-block.alt {
    padding: 35px;
  }
  .mg-step {
    font-size: 32px;
  }
}












































.design-fix-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.design-fix-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.design-fix-header p {
    color: #555;
    margin-top: 15px;
    font-size: 16px;
}

.design-fix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.design-fix-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.design-fix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.fix-number {
    position: absolute;
    top: -18px;
    left: 30px;
    background: #f4b400;
    color: #000;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 14px;
}

.design-fix-card h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 20px;
}

.design-fix-card .problem {
    color: #777;
    margin-bottom: 10px;
}

.design-fix-card .solution {
    color: #333;
    font-size: 15px;
}

.highlight-card {
    border: 2px solid #f4b400;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
}







































.aj-advantage-sections {
    padding: 80px 0;
    background: #ffffff;
}

/* Header */
.aj-advantage-headers {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}



/* Main Advantage */
.aj-advantage-mains {
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
}

.advantage-boxs {
    max-width: 1000px;
    background: #fff9e6;
    border-left: 6px solid #f4b400;
    padding: 45px 50px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.advantage-boxs h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.advantage-boxs p {
    color: #333;
    line-height: 1.7;
}

.advantage-notes {
    margin-top: 12px;
    color: #555;
}

/* Coverage */
.bangalore-coverages {
    margin-bottom: 90px;
}

.coverage-titles {
    text-align: center;
    font-size: 30px;
    margin-bottom: 45px;
}

.coverage-titles span {
    color: #f4b400;
}

.coverage-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.coverage-cards {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

.coverage-cards:hover {
    transform: translateY(-8px);
}

.coverage-cards h4 {
    margin-bottom: 18px;
}

.coverage-cards ul {
    padding-left: 18px;
}

.coverage-cards li {
    margin-bottom: 8px;
    color: #555;
}

/* CTA */
.bangalore-ctas {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 25px;
    border-radius: 25px;
}

.bangalore-ctas h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #ffffff;
}

.bangalore-ctas h3 span {
    color: #f4b400;
}

.bangalore-ctas p {
    max-width: 720px;
    margin: 0 auto 35px;
    color: #ddd;
}

.bangalore-cta-btns {
    display: inline-block;
    padding: 16px 34px;
    background: #f4b400;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bangalore-cta-btns:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(244,180,0,0.45);
}

.all-heading-center {
    text-align: center !important;
}





















































/* ===============================
   BLOG SECTION – UI UPGRADE
================================ */

.page-blog {
    padding: 80px 0;
    background: #fafafa;
}

/* Blog Card */
.post-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid #eee;
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Image */
.post-featured-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.08);
}

/* Body */
.post-item-body {
    padding: 26px 24px 30px;
    display: flex;
    flex-direction: column;
}

/* Category */
.post-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    background: #f4b400;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* Title */
.post-item-content h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.post-item-content h3 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item:hover h3 a {
    color: #f4b400;
}

/* Description */
/*.post-item-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}*/

/* Date */
.post-date {
   
    color: #888;
    margin-bottom: 22px;
    display: block;
}

/* Button */
.post-item-btn {
    margin-top: auto;
}

.post-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
   
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid #f4b400;
    transition: all 0.3s ease;
}

.post-btn:hover {
    color: #f4b400;
    gap: 10px;
}

/* Pagination */
.page-pagination {
    margin-top: 60px;
    text-align: center;
}

.page-pagination .pagination {
    justify-content: center;
    gap: 10px;
}

.page-pagination .pagination li a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-weight: 600;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-pagination .pagination li.active a,
.page-pagination .pagination li a:hover {
    background: #f4b400;
    border-color: #f4b400;
    color: #000;
}

/* Responsive */
@media (max-width: 767px) {
    .post-featured-image img {
        height: 200px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }
}
