/*
Theme Name: TestTheme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A modern, responsive testing theme.
Version: 1.0
License: GPL v2 or later
Text Domain: testtheme
*/

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	background: #f9f9f9;
}

a {
	color: #3498db;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #2980b9;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.site-header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 20px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
}

.site-title a {
	color: #2c3e50;
}

.custom-logo {
	max-height: 80px;
	width: auto; 
}

@media(max-width: 767px){

	.custom-logo {
		max-height: 60px;
		width: auto;
	}
}

/* Desktop Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.primary-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li {
	margin-left: 30px;
	position: relative;
}

.primary-menu a {
	color:#333333;
	font-weight: 500;
	padding: 10px 0;
	display: inline-block;
	position: relative;
}

.primary-menu a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #c9a86c;
	transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
	width: 100%;
}

/* Hamburger Menu (hidden on desktop) */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #c9a86c;
	padding: 5px 10px;
	transition: color 0.3s ease;
}

.menu-toggle:hover {
	color: #c9a86c;
}

.main-navigation {
	display: none;
}
.main-navigation.toggled {
	display: block;
}
@media (min-width: 769px) {
	.main-navigation {
		display: flex; /* adjust to your desktop layout */
	}
	.primary-menu a::after{
		display: none !important;
	}
}

/* Mobile Styles */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.primary-menu a::after{
		display: none !important;
	}

	.main-navigation {
		display: none;
		width: 100%;
		background: #f8f9fa;
		padding: 20px;
		/* 		border-radius: 8px; */
		margin-top: 10px;
		/* 		box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
	}

	.main-navigation.toggled {
		display: block;
		animation: slideDown 0.3s ease;
	}

	.primary-menu {
		flex-direction: column;
	}

	.primary-menu li {
		margin: 0 0 15px 0;
	}

	.primary-menu a {
		display: block;
		padding: 10px 0;
		font-size: 1.1rem;
	}

}

/* Animation for mobile menu */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Main content area */
main {
	/*     padding: 40px 20px; */
	min-height: 70vh;
}


.hero-section{
	position:relative;
	width:100%;
	height:80vh;
	min-height:420px;
	max-height:900px;
	overflow:hidden;
}

@media(max-width:768px){

.hero-section{
	height:60vh;
	min-height:350px;
}

}

@media(max-width:480px){

.hero-section{
	height:55vh;
	min-height:300px;
}

}

@media(max-width: 500px){



	.custom-logo {
		max-height: 60px;
		width: 150px;
	}


}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

/* ===== HERO IMAGE LAYER FIX ===== */

.swiper-slide .slide-inner{
	position:relative;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}

/* real image layer */
.hero-image{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	z-index:1;
}

/* mobile focus fix */
@media(max-width:768px){
	.hero-image{
		background-position:70% center;
	}
}



.slide-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:linear-gradient(135deg, rgba(40,30,20,0.8) 0%, rgba(20,15,10,0.6) 100%);
	display:flex;
	align-items:flex-end;
	justify-content:center;
	padding-bottom:80px;
	z-index:2;
}

.slide-content {
	text-align: center;
	color: #fff;
	z-index: 3;
	animation: fadeInUp 1s ease-out;
	max-width: 800px;
	padding: 20px;
}

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

.slide-subtitle {
	display: block;
	font-size: 1.2rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
	opacity: 0.9;
}

.slide-title {
	font-size: 3.5rem;
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Large Tablet */
@media (max-width:1024px){
	.slide-title{
		font-size:2.4rem;
	}
}

/* Tablet */
@media (max-width:992px){
	.slide-title{
		font-size:2.1rem;
	}
	.slide-subtitle{
		font-size:0.95rem;
		letter-spacing:1.3px;
	}
}

/* Small Tablet */
@media (max-width:850px){
	.slide-title{
		font-size:1.9rem;
	}
}

/* Mobile Landscape */
@media (max-width:768px){
	.slide-title{
		font-size:1.7rem;
	}
	.slide-subtitle{
		font-size:0.85rem;
		letter-spacing:1px;
	}
}

/* Mobile */
@media (max-width:600px){
	.slide-title{
		font-size:1.5rem;
	}
	.slide-subtitle{
		font-size:0.8rem;
	}
}

/* Small Mobile */
@media (max-width:480px){
	.slide-title{
		font-size:1.3rem;
	}
	.slide-subtitle{
		font-size:0.75rem;
		letter-spacing:0.5px;
	}
}

/* Very Small Mobile */
@media (max-width:400px){
	.slide-title{
		font-size:1.1rem;
	}
	.slide-subtitle{
		font-size:0.7rem;
	}
}

/* Extra Small Mobile */
@media (max-width:360px){
	.slide-title{
		font-size:1rem;
	}
	.slide-subtitle{
		font-size:0.65rem;
	}
}

/* Ultra Small */
@media (max-width:320px){
	.slide-title{
		font-size:0.9rem;
	}
	.slide-subtitle{
		font-size:0.6rem;
	}
}
.slide-link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
	text-indent: -9999px;
	display: block;
}

/* Custom Numbered Pagination */
.hero-section .swiper-pagination {
	position: absolute;
	bottom: 30px !important;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

.hero-section .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	opacity: 1;
	margin: 0 !important;
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 8px;
	font-weight: 600;
	line-height: 1;
}

.hero-section .swiper-pagination-bullet:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: #fff;
	transform: scale(1.1);
}

.hero-section .swiper-pagination-bullet-active {
	background: #c9a86c;
	border-color: #c9a86c;
	color: #2c2c2c;
	box-shadow: 0 0 15px rgba(201, 168, 108, 0.5);
	transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.hero-section .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		font-size: 5px;
	}
	.hero-section .swiper-pagination {
		gap: 5px;
		bottom: 20px;
	}
}





/* ============================================
HOME SWIPER SLIDER - COMPLETE STYLES
============================================ */

/* Slider Section - Minimal Padding */
.hm-swiper-section {
	padding: 10px 0;
	background: #f9f9f9;
	text-align: center;
	width: 100%;
	overflow: hidden;
}

/* Remove extra gap between multiple sections */
.hm-swiper-section + .hm-swiper-section {
	padding-top: 0;
}

/* Container */
.hm-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

/* Section Title - Reduced Margin */
.hm-section-title {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 30px;
	position: relative;
	font-weight: 700;
}

/* .hm-section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #c9a86c;
	margin: 15px auto 0;
	border-radius: 2px;
} */

/* Swiper Wrapper */
.hm-swiper-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

/* Track Wrapper - Minimal Padding */
.hm-track-wrapper {
	overflow: hidden;
	padding: 5px 0;
	width: 100%;
}

/* Track - Flex Container */
.hm-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
	width: auto;
}

/* ============================================
SLIDE ITEMS - PERFECT RESPONSIVE BREAKPOINTS
============================================ */

/* Base Slide Item */
.hm-slide-item {
	flex: 0 0 auto;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

/* DESKTOP - 4 Slides (1201px and above) */
@media (min-width: 1201px) {
	.hm-slide-item {
		width: calc(25% - 15px);
		margin-right: 20px;
	}
}

/* SMALL DESKTOP/TABLET LANDSCAPE - 3 Slides (769px to 1200px) */
@media (min-width: 600px) and (max-width: 1200px) {
	.hm-slide-item {
		width: calc(33.333% - 14px);
		margin-right: 20px;
	}
}

/* TABLET PORTRAIT - 2 Slides (481px to 768px) */
@media  (max-width: 600px) {
	.hm-slide-item {
		width: calc(33.333% - 14px);
		margin-right: 15px;
	}
}


/* Remove margin from last slide */
.hm-slide-item:last-child {
	margin-right: 0 !important;
}

/* ============================================
CARD STYLES - PERFECT DIMENSIONS
============================================ */

/* Card Container */
.hm-card {
	background: transparent;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	height: 550px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
	width: 100%;
}

/* Hover Effect */
.hm-card:hover {
	transform: translateY(-8px);
}

/* Card Image Container */
.hm-card-image {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4/3;
}

/* Card Image */
.hm-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
	display: block;
}

/* Image Zoom on Hover */
.hm-card:hover .hm-card-image img {
	transform: scale(1.05);
}

/* Card Title - Optimized Spacing */
.hm-card-title {
	margin: 12px 0 0 0;
	padding: 0 15px 12px 15px;
	font-size: 1.2rem;
	color: #2c3e50;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;

	/* Title trim to 3 lines */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

/* ============================================
NAVIGATION BUTTONS - EXACT 7px MARGIN
============================================ */

/* Buttons Container - 7px Top & Bottom */
.hm-nav-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 7px 0;
}

/* Individual Button - Small & Perfect */
.hm-nav-btn {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #2c3e50;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
}

/* Button Hover Effect */
.hm-nav-btn:hover {
	background: #c9a86c;
	color: #fff;
	transform: scale(1.1);
}

/* Disabled Button State */
.hm-nav-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
	transform: none;
}

/* ============================================
RESPONSIVE ADJUSTMENTS - ALL DEVICES
============================================ */

/* Small Desktop / Large Tablet */
@media (max-width: 1200px) {
	.hm-card {
		height: 530px;
	}
	.hm-card-title {
		font-size: 1.1rem;
		margin-top: 10px;
		padding: 0 12px 10px 12px;
	}
}

/* Tablet */
@media (max-width: 768px) {
	.hm-card {
		height: 300px;
	}
	.hm-card-title {
		font-size: 1rem;
		margin-top: 8px;
		padding: 0 10px 8px 10px;
	}
	.hm-section-title {
		font-size: 2rem;
		margin-bottom: 25px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.hm-card {
		height: 260px;
	}
	.hm-card-title {
		font-size: 1rem;
		margin-top: 6px;
		padding: 0 8px 6px 8px;
	}
	.hm-section-title {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
	.hm-nav-btn {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

/* 	.hm-section-title::after {
		width: 50px;
		height: 3px;
		margin: 5px auto 0;
	} */
}

/* Small Mobile */
@media (max-width: 360px) {
	.hm-card {
		height: 250px;
	}
	.hm-card-title {
		font-size: 0.95rem;
		margin-top: 5px;
		padding: 0 6px 5px 6px;
	}
	.hm-nav-btn {
		width: 25px;
		height: 25px;
		font-size: 14px;
	}
}

/* ============================================
UTILITY CLASSES
============================================ */

/* Hide Pagination Completely */
.hm-pagination {
	display: none !important;
}

/* Clear Fix */
.hm-clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/* Responsive Images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ============================================
BROWSER FALLBACKS
============================================ */

/* Fallback for aspect-ratio */
@supports not (aspect-ratio: 4/3) {
	.hm-card-image {
		height: 300px;
	}
	.hm-card-image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
}

/* Fallback for flex gap */
@supports not (gap: 15px) {
	.hm-nav-buttons {
		margin: 7px -7px;
	}
	.hm-nav-btn {
		margin: 0 7px;
	}
}

/* ============================================
OPTIONAL - DARK BACKGROUND VARIANT
============================================ */

/* Dark background section */
.hm-swiper-section.dark-bg {
	background: #1a1a1a;
}

.dark-bg .hm-section-title {
	color: #fff;
}

.dark-bg .hm-card-title {
	color: #fff;
}

.dark-bg .hm-nav-btn {
	background: #333;
	color: #fff;
}

.dark-bg .hm-nav-btn:hover {
	background: #c9a86c;
}

/* ============================================
OPTIONAL - NO BACKGROUND VARIANT
============================================ */

/* Transparent background */
.hm-swiper-section.transparent-bg {
	background: transparent;
}

/* ============================================
PRINT STYLES
============================================ */

@media print {
	.hm-swiper-section {
		background: none;
		padding: 20px 0;
	}
	.hm-nav-buttons {
		display: none;
	}
	.hm-track {
		transform: none !important;
	}
	.hm-slide-item {
		width: 25% !important;
		margin: 0 !important;
		page-break-inside: avoid;
	}
}


/* ============================================
FOOTER STYLES
============================================ */
footer {
	background: #2c3e50;
	color: #fff;
	padding: 50px 0 30px;
/* 	margin-top: 50px; */
}

.footer-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

/* Footer Brand */
.footer-brand {
	text-align: left;
}

.footer-logo .custom-logo {
	max-height: 60px;
	width: auto;
	margin-bottom: 15px;
}

.footer-site-name {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 15px;
	color: #fff;
}

.copyright {
	font-size: 0.9rem;
	opacity: 0.8;
	margin: 0;
	text-align: center;
	margin-top: 20px;
}

/* Footer Menus */
.footer-menu {
	text-align: left;
}

.footer-menu-title {
	color: #c9a86c;
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
}

.footer-menu-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: #c9a86c;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li {
	margin-bottom: 10px;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
	opacity: 0.8;
}

.footer-nav a:hover {
	color: #c9a86c;
	opacity: 1;
	padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #7f521b;      /* brown background */
    color: #f7f3e9;                  /* light beige icon */
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-icon i {
    font-size: 20px;
}

.social-icon:hover {
    background-color: #f7f3e9;      /* light beige background on hover */
    color: #7f521b;                  /* brown icon on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Agar aap chahein to specific platform colors bhi add kar sakte hain */
.social-icon.facebook:hover { background-color: #f7f3e9; color: #3b5998 ; }
.social-icon.instagram:hover { background-color: #f7f3e9; color: #e4405f ; }
.social-icon.twitter:hover { background-color: #f7f3e9; color: #1da1f2; }
.social-icon.linkedin:hover { background-color: #f7f3e9; color: #0077b5; }
.social-icon.youtube:hover { background-color: #f7f3e9; color: #ff0000; }
.social-icon.snapchat:hover { background-color: #f7f3e9; color: #000; } /* snapchat ka apna yellow alag hai to black le sakte hain */



/* Responsive */
@media (max-width: 992px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.about-title,
	.contact-title {
		font-size: 2.2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}
}



/* Simple Address Textarea Styles */
.footer-address {
	text-align: left;
}

.address-text {
	color: #fff;
	opacity: 0.8;
	line-height: 1.8;
	font-size: 0.95rem;
	margin-top: 15px;
	/*     white-space: pre-line; New lines respect karega */
}

/* Responsive */
@media (max-width: 768px) {
	.address-text {
		font-size: 0.9rem;
		text-align: center;
	}

	.footer-address {
		text-align: center;
	}
}


.auto-play-indicator span{
	display: none;
}


/* services section code - section 1 (odd) - slightly different background */
.services {
	background-color: #F5F0E2;   /* slightly lighter/creamier than base */
	padding: 5rem 1.5rem;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
}

/* ---------- SECTION HEADER (luxury) ---------- */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-sub {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #80521b;               /* primary gold */
	margin-bottom: 1rem;
	font-weight: 400;
	word-spacing: 2px;
}

.section-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 6vw, 3.5rem);
	font-weight: 600;
	color: #2B2B2B;               /* dark text */
	line-height: 1.1;
	margin-bottom: 1.2rem;
}

.section-subtitle {
	max-width: 680px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: #555555;                /* medium gray */
	font-weight: 300;
	line-height: 1.6;
}

/* ---------- GRID (3 cols, no gap, borders as dividers) ---------- */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 0;                    /* no outer border */
}

/* base card styles */
.card {
	position: relative;
	background-color: #FAF7F0;    /* cream card background */
	padding: 2.5rem 1.8rem 2.2rem 1.8rem;
	border-right: 1px solid #E5D8B8;   /* thin vertical divider (gold border) */
	border-bottom: 1px solid #E5D8B8;   /* thin horizontal divider */
	transition: all 0.35s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* remove right border from every 3rd card (end of row) */
.card:nth-child(3n) {
	border-right: none;
}

/* last card (7th) : no bottom border & no right border (already handled but safe) */
.card:last-child {
	border-bottom: none;
	border-right: none;
}

/* ----- large faint background number ----- */
.card-number {
	position: absolute;
	bottom: 0.2rem;
	right: 0.8rem;
	font-family: 'Playfair Display', serif;
	font-size: 7rem;
	font-weight: 700;
	line-height: 1;
	color: #2B2B2B;
	opacity: 0.03;
	z-index: 0;
	pointer-events: none;
	user-select: none;
	display: none;
}

/* content wrapper to keep relative above number */
.card > *:not(.card-number) {
	position: relative;
	z-index: 2;
}

/* ----- gold circular icon ----- */
.icon-circle {
	width: 58px;
	height: 58px;
	border: 1px solid #80521b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.8rem;
	transition: all 0.35s ease;
	color: #80521b;
	font-size: 26px;
}

.icon-circle i {
	transition: all 0.35s ease;
	color: #80521b;
}

/* ----- title row (english left / arabic right) ----- */
.title-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.9rem;
}

.en-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #2B2B2B;
	transition: color 0.35s ease;
	letter-spacing: -0.02em;
}

.ar-title {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	color: #80521b;
	text-align: right;
	transition: color 0.35s ease;
	direction: rtl;
}

/* ----- description text ----- */
.description {
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.6;
	margin-top: 0.2rem;
	transition: color 0.35s ease;
	max-width: 95%;
}

/* ---------- HOVER EFFECTS (PREMIUM) ---------- */
.card:hover {
	background-color: #F5EFD8;          /* slightly lighter cream */
	transform: translateY(-6px);
	transition: all 0.35s ease;
	box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

/* bottom gold line animation (left to right) */
.card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #80521b;
	transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 5;
}

.card:hover::after {
	width: 100%;
}

/* icon & border bright gold + glow */
.card:hover .icon-circle {
	border-color: #E6D3A3;                /* light gold */
	box-shadow: 0 0 14px rgba(200, 164, 90, 0.4);
	transform: scale(1.02);
}

.card:hover .icon-circle i {
	color: #E6D3A3;                       /* icon itself brighter */
	text-shadow: 0 0 8px rgba(200, 164, 90, 0.5);
}

/* title turns gold */
.card:hover .en-title {
	color: #80521b;
}

.card:hover .ar-title {
	color: #E6D3A3;                        /* slightly brighter gold */
}

/* optional subtle description color shift */
.card:hover .description {
	color: #3A3A3A;                        /* darker for contrast */
}

/* keep number unaffected (no interaction) */

/* ---------- RESPONSIVENESS ---------- */
@media (max-width: 1024px) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* reset border-right for 2-col layout: remove right border on even cards */
	.card:nth-child(3n) {
		border-right: 1px solid #E5D8B8;   /* overwrite previous 3n rule */
	}

	.card:nth-child(even) {
		border-right: none;
	}

	/* for 2-col, we need to adjust bottom border removal: last two cards if needed */
	.card:last-child {
		border-bottom: none;
		border-right: none;
	}
}

@media (max-width: 768px) {
	.services {
		padding: 4rem 1rem;
	}
}

@media (max-width: 640px) {
	.card-grid {
		grid-template-columns: 1fr;
	}

	/* in 1-col: all cards have border-right: none, border-bottom except last */
	.card {
		border-right: none !important;
		border-bottom: 1px solid #E5D8B8;
	}

	.card:last-child {
		border-bottom: none;
	}

	/* smaller adjustments */
	.icon-circle {
		width: 52px;
		height: 52px;
		font-size: 22px;
		margin-bottom: 1.2rem;
	}

	.en-title {
		font-size: 1rem;
	}

	.ar-title {
		font-size: 1rem;
	}

	.section-header h2 {
		font-size: 1.7rem;
	}
}

/* fine tune for very small */
@media (max-width: 400px) {
	.card {
		padding: 2rem 1.2rem;
	}
	.section-header h2 {
		font-size: 1.3rem;
	}
}

/* tablet portrait (extra care) */
@media (min-width: 641px) and (max-width: 900px) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.card:nth-child(even) {
		border-right: none;
	}
	/* bottom border: only last card removed */
	.card:last-child {
		border-bottom: none;
		border-right: none;
	}
}

/* additional fix for 2col border-right: ensure multiples of 2 have no right border */
@media (min-width: 641px) and (max-width: 1024px) {
	.card:nth-child(2n) {
		border-right: none;
	}
}

/* HOVER stays smooth on all devices, no tap issues */
@media (hover: hover) {
	.card:hover {
		background-color: #F5EFD8;
	}
}

/* fallback for touch (active state) */
.card:active {
	background-color: #F2E7D4;
	transform: translateY(-3px);
	transition: 0.15s;
}

/* ===== JUMEIRA 2000 DIFFERENCE – PREFIXED STYLES (section 2) ===== */
.j2k-diff-section {
	background-color: #F7F2E7;  /* base section background */
	font-family: 'Inter', sans-serif;
	color: #2B2B2B;
	padding: 5rem 1.5rem;
	margin: 0;
}

.j2k-diff-container {
	max-width: 1280px;
	margin: 0 auto;
}

/* ----- HEADER ----- */
.j2k-diff-header {
	text-align: center;
	margin-bottom: 4rem;
}

.j2k-diff-label {
	display: block;
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #80521b;
	margin-bottom: 1rem;
	font-weight: 400;
}

.j2k-diff-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 7vw, 3.8rem);
	font-weight: 600;
	color: #2B2B2B;
	line-height: 1.1;
	margin: 0;
}

.j2k-diff-highlight {
	color: #80521b;
	font-style: italic;
	font-weight: 700;
}

/* ----- GRID: 4 COLUMNS (desktop) ----- */
.j2k-diff-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* card base */
.j2k-diff-card {
	background-color: transparent;
	padding: 2rem 1.5rem;
	border-right: 1px solid rgba(200, 164, 90, 0.3); /* thin gold vertical divider */
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

/* remove border from last card */
.j2k-diff-card:last-child {
	border-right: none;
}

/* icon */
.j2k-diff-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 1.8rem;
	color: #80521b;
	transition: all 0.3s ease;
}

.j2k-diff-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* title row (english / arabic) */
.j2k-diff-title-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1rem;
	gap: 0.5rem;
}

.j2k-diff-en-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #2B2B2B;
	transition: color 0.3s ease;
}

.j2k-diff-ar-title {
	font-size: 1.1rem;
	font-weight: 300;
	color: #80521b;
	direction: rtl;
	white-space: nowrap;
}

.j2k-diff-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555555;
	transition: color 0.3s ease;
	margin: 0;
}

/* ----- HOVER EFFECTS (premium) ----- */
.j2k-diff-card:hover {
	transform: translateY(-6px);
	background-color: #F5EFD8;  /* light cream hover */
}

.j2k-diff-card:hover .j2k-diff-icon {
	transform: scale(1.05);
	filter: drop-shadow(0 0 8px rgba(200, 164, 90, 0.4));
	color: #E6D3A3;  /* light gold */
}

.j2k-diff-card:hover .j2k-diff-en-title {
	color: #80521b;
}

.j2k-diff-card:hover .j2k-diff-desc {
	color: #3A3A3A;
}

/* ----- TABLET (2 columns) ----- */
@media (max-width: 1024px) {
	.j2k-diff-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* reset borders: all cards get right border except every 2nd (end of row) */
	.j2k-diff-card {
		border-right: 1px solid rgba(200, 164, 90, 0.3);
	}

	.j2k-diff-card:nth-child(2n) {
		border-right: none;
	}
}

/* ----- MOBILE (1 column) ----- */
@media (max-width: 640px) {
	.j2k-diff-section {
		padding: 3rem 1rem;
	}



	.j2k-diff-card {
		border-right: none !important;
		border-bottom: 1px solid rgba(200, 164, 90, 0.2);
		padding: 2rem 1rem;
	}

	.j2k-diff-card:last-child {
		border-bottom: none;
	}

	.j2k-diff-icon {
		width: 48px;
		height: 48px;
		margin-bottom: 1.2rem;
	}

	.j2k-diff-en-title {
		font-size: 1rem;
	}

	.j2k-diff-ar-title {
		font-size: 1rem;
	}
}

/* small screens extra */
@media (max-width: 380px) {
	.j2k-diff-title-row {
		flex-wrap: wrap;
		gap: 0.25rem;
	}
	.j2k-diff-ar-title {
		white-space: normal;
	}
}


/* our story section code - section 3 (odd) - slightly different background */
.j2k-about-section {
	background-color: #F5F0E2;      /* same as section 1 for alternating */
	color: #2B2B2B;
	font-family: 'Inter', sans-serif;
	padding: 5rem 1.5rem;
	margin: 0;
}

.j2k-about-container {
	max-width: 1280px;
	margin: 0 auto;
}

/* two-column grid */
.j2k-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

/* ----- LEFT COLUMN (image) ----- */
.j2k-about-image-col {
	position: relative;
}

.j2k-about-image-wrapper {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	background-color: #E5D8B8; /* light gold fallback */
	aspect-ratio: 4 / 5;
}

.j2k-about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1.2s ease;
}

.j2k-about-image-wrapper:hover .j2k-about-image {
	transform: scale(1.03);
}

/* overlapping badge */
.j2k-about-badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	background-color: #FAF7F0;   /* cream */
	border-left: 4px solid #80521b;  /* primary gold */
	padding: 0.75rem 1.5rem;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.j2k-about-badge-text {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #80521b;
	letter-spacing: 0.5px;
}

/* ----- RIGHT COLUMN (content) ----- */
.j2k-about-content-col {
	padding: 1rem 0;
}

.j2k-about-label {
	display: inline-block;
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #80521b;
	margin-bottom: 1.2rem;
	font-weight: 400;
	border-bottom: 1px solid rgba(200, 164, 90, 0.3);
	padding-bottom: 0.5rem;
}

.j2k-about-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.2;
	color: #2B2B2B;
	margin: 1.5rem 0 1.2rem 0;
}

.j2k-about-highlight {
	color: #80521b;
	font-style: italic;
}

.j2k-about-arabic {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #80521b;
	margin-bottom: 1.5rem;
	font-weight: 300;
	direction: rtl;
	text-align: left;
}

/* override text-align for arabic to keep left aligned */
.j2k-about-arabic[dir="rtl"] {
	text-align: left;
}

.j2k-about-english {
	font-size: 1rem;
	line-height: 1.7;
	color: #555555;
	margin-bottom: 2.5rem;
	max-width: 90%;
}

/* stats row */
.j2k-about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	border-top: 1px solid rgba(200, 164, 90, 0.2);
	padding-top: 2rem;
}

.j2k-about-stat-item {
	display: flex;
	flex-direction: column;
}

.j2k-about-stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #80521b;
	line-height: 1.2;
}

.j2k-about-stat-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6A6A6A;
	margin-top: 0.25rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
	.j2k-about-grid {
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	.j2k-about-grid {
		grid-template-columns: 1fr;
	}

	.j2k-about-image-col {
		max-width: 600px;
		margin: 0 auto;
		width: 100%;
	}

	.j2k-about-content-col {
		text-align: center;
		max-width: 700px;
		margin: 0 auto;
	}

	.j2k-about-english {
		max-width: 100%;
	}

	.j2k-about-stats {
		grid-template-columns: repeat(4, 1fr);
		text-align: center;
	}

	.j2k-about-arabic[dir="rtl"] {
		text-align: center;
	}
}

@media (max-width: 640px) {
	.j2k-about-section {
		padding: 3rem 1rem;
	}

	.j2k-about-stats {
		grid-template-columns: 1fr 1fr;
		gap: 1.8rem 1rem;
	}

	.j2k-about-stat-item {
		align-items: center;
	}

	.j2k-about-badge {
		bottom: 1rem;
		left: 1rem;
		padding: 0.5rem 1rem;
	}

	.j2k-about-badge-text {
		font-size: 0.9rem;
	}

	.j2k-about-heading {
		font-size: 1.3rem;
	}
}

@media (max-width: 400px) {
	.j2k-about-stats {
		gap: 1rem;
	}
	.j2k-about-stat-number {
		font-size: 1.5rem;
	}
	.j2k-about-stat-label {
		font-size: 0.7rem;
	}
}

/* testimonial section code - section 4 (even) - original background */
.j2k-testimonial-section {
	background-color: #F7F2E7;  /* base section background */
	color: #2B2B2B;
	font-family: 'Inter', sans-serif;
	padding: 5rem 1.5rem;
	margin: 0;
}

.j2k-testimonial-container {
	max-width: 1280px;
	margin: 0 auto;
}

/* ----- HEADER (with gold decorative lines) ----- */
.j2k-testimonial-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.j2k-testimonial-label {
	display: inline-flex;
	align-items: center;
	gap: 2rem;
	font-size: 0.9rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #80521b;
	font-weight: 400;
	position: relative;
}

.j2k-testimonial-label::before,
.j2k-testimonial-label::after {
	content: '';
	display: inline-block;
	width: 60px;
	height: 1px;
	background-color: rgba(200, 164, 90, 0.3);
}

@media (max-width: 640px) {
	.j2k-testimonial-label::before,
	.j2k-testimonial-label::after {
		width: 30px;
	}
}

.j2k-testimonial-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 600;
	color: #2B2B2B;
	line-height: 1.2;
	margin: 0.5rem 0 0;
}

.j2k-testimonial-highlight {
	color: #80521b;
	font-style: italic;
}

/* ----- GRID: 3 cards (desktop) ----- */
.j2k-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* ----- CARD STYLES ----- */
.j2k-testimonial-card {
	background-color: #FAF7F0;   /* cream card */
	border: 1px solid #E5D8B8;    /* border */
	border-radius: 4px;
	padding: 2.5rem 2rem 2rem 2rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* hover effect */
.j2k-testimonial-card:hover {
	transform: translateY(-6px);
	border-color: #80521b;
	box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(200,164,90,0.2);
}

/* quote icon */
.j2k-testimonial-quote {
	margin-bottom: 1.5rem;
}

.j2k-testimonial-quote svg {
	display: block;
	width: 40px;
	height: 40px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	stroke: #80521b;
}

.j2k-testimonial-card:hover .j2k-testimonial-quote svg {
	opacity: 1;
}

/* testimonial texts */
.j2k-testimonial-text,
.j2k-testimonial-text-arabic {
	font-size: 1rem;
	line-height: 1.7;
	color: #4A4A4A;
	margin: 0 0 1rem 0;
	font-weight: 300;
}

.j2k-testimonial-text-arabic {
	color: #80521b;
	direction: rtl;
	text-align: left;
	font-size: 0.95rem;
	border-right: 2px solid rgba(200,164,90,0.2);
	padding-right: 1rem;
}

/* divider */
.j2k-testimonial-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, #80521b, transparent);
	margin: 1.5rem 0 1.2rem 0;
	width: 100%;
}

/* client info */
.j2k-testimonial-client {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.j2k-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #80521b;
	color: #2B2B2B;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
}

.j2k-testimonial-card:hover .j2k-testimonial-avatar {
	background-color: #A8843F;    /* dark gold */
}

.j2k-testimonial-client-info {
	display: flex;
	flex-direction: column;
}

.j2k-testimonial-client-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #2B2B2B;
	margin-bottom: 0.2rem;
}

.j2k-testimonial-client-location {
	font-size: 0.85rem;
	color: #6A6A6A;
	letter-spacing: 0.5px;
}

/* ----- RESPONSIVE (tablet: 2 cards) ----- */
@media (max-width: 1024px) {
	.j2k-testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.8rem;
	}
}

@media (max-width: 640px) {
	.j2k-testimonial-section {
		padding: 3rem 1rem;
	}

	.j2k-testimonial-grid {
		grid-template-columns: 1fr; 
		gap: 1.5rem; 
	}

	.j2k-testimonial-card {
		padding: 2rem 1.5rem;
	}

	.j2k-testimonial-heading {
		font-size: 1.3rem;
	}

	.j2k-testimonial-label {
		font-size: 0.8rem;
	}

	.j2k-diff-title{
		font-size: 1.3rem;
	}
}

/* small screens */
@media (max-width: 380px) {
	.j2k-testimonial-client {
		flex-wrap: wrap;
	}
}


/* 1. Icon sizing – make emojis behave like SVGs */
.j2k-diff-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #80521b;                /* primary gold */
	transition: all 0.3s ease;
}

.j2k-diff-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Emoji-specific styling */
.j2k-diff-icon.emoji-icon {
	font-size: 36px;               /* scale emoji nicely */
	line-height: 1;
}

/* 2. Stack titles vertically (English above Arabic) */
.j2k-diff-title-row.flex-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;       /* left align both */
	gap: 0.25rem;                  /* small space between lines */
	margin-bottom: 1rem;
	width: 100%;
}

/* Remove the default space-between behavior for this modifier */
.j2k-diff-title-row.flex-column {
	justify-content: flex-start;
}

/* Adjust Arabic line for stacking – remove nowrap, normal weight */
.j2k-diff-title-row.flex-column .j2k-diff-ar-title {
	white-space: normal;           /* allow wrapping if needed */
	font-size: 1.1rem;
	color: #80521b;
	direction: rtl;
	text-align: left;
}

/* Optional: hover effect consistency (already in base CSS, but keep) */
.j2k-diff-card:hover .j2k-diff-icon.emoji-icon {
	transform: scale(1.05);
	filter: drop-shadow(0 0 8px rgba(200, 164, 90, 0.4));    
	color: #E6D3A3;                /* light gold on hover */
}

.card-grid .card:last-child {
/* 	grid-column: 1 / -1;  */
	/* spans from first to last column */
	width: 100%;
}
.hm-section-title-ar{
    font-size:2.5rem;
    text-align:center;
    margin-bottom:5px;
    font-weight:500;
    direction:rtl;
    font-family: "Noto Naskh Arabic", serif;
	color: #80521b;
	margin-bottom: -10px;
}

@media(max-width: 767px){
	.hm-section-title-ar{
	 font-size:1.3rem;
	}
}



@media(max-width: 500px){
	.hm-section-title-ar{
	 font-size:1rem;
	}
}


/* Force swiper hero to fully fill the hero section */
.hero-section{
	position:relative;
	width:100%;
	aspect-ratio:16/9;
	max-height:700px;
	overflow:hidden;
}
@media(max-width:768px){

.hero-section{
	aspect-ratio:4/5;
}

}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide{
    height:100% !important;
}

/* ensure slide-inner fills slide */
.swiper-slide .slide-inner{
    position:relative;
    width:100%;
    height:100%;
}

/* hero background layer */
.hero-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
}

/* HERO IMAGE FIX */
.hero-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* slide container must fill */
.swiper-slide .slide-inner{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

/* force swiper to fill hero */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide{
    height:100% !important;
}

/* hero container */
.hero-section{
    position:relative;
    width:100%;
    height:75vh;
    min-height:420px;
    max-height:750px;
    overflow:hidden;
}


