:root {
	--saffron-blue: #0EA5E9;
	--saffron-purple: #0012b1;
	--saffron-dark: #0F172A;
	--saffron-darker: #020617;
	--saffron-gray: #64748B;
	--saffron-light-gray: #94A3B8;
}


/* Footer */
/* Footer */
.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 5px;
}


.footer-logo span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
}

.footer-line {
  border: none;
  height: 1px;
  background: #333;
  margin: 35px 0;
}

.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 0;
  margin-bottom: 35px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-subscribe {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-subscribe input {
  padding: 14px 20px;
  width: 260px;
  border-radius: 30px 0 0 30px;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  outline: none;
}

.footer-subscribe button {
  padding: 14px 30px;
  border-radius: 0 30px 30px 0;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-social a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
.footer-menu a,
.footer-social a,
.footer-bottom,
.footer-logo span {
  font-family: 'Poppins', sans-serif;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 56px;        /* size adjust kari sako */
  height: auto;
}

.logo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 4px;
  margin: 0;
}

.logo-text span {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
}


.logo-3d {
  display: inline-block;
  perspective: 1000px;
}

.logo-3d img {
  width: 56px;
  transform-style: preserve-3d;
  transition: transform 1.5s ease;
}

/* FULL ROTATION */
.logo-3d:hover img {
  transform: rotateY(360deg);
}

@keyframes spin3d {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.logo-3d img {
  width: 56px;
  transform-style: preserve-3d;
}

.logo-3d:hover img {
  animation: spin3d 2.5s linear infinite;
}

/* navbar */

:root {
	--saffron-blue: #0EA5E9;
	--saffron-purple: #0012b1;
	--saffron-dark: #0F172A;
	--saffron-darker: #020617;
	--saffron-gray: #64748B;
	--saffron-light-gray: #94A3B8;
}

.container {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 5px 20px;
}


body.menu-blur::before {
	content: "";
	position: fixed;
	inset: 0;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 253, 253, 0.4);
	z-index: 998;
	transition: all 0.3s ease;
}

body.menu-dimmed::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	/* dark overlay */
	/*backdrop-filter: blur(4px);    optional blur */
	z-index: 9998;
	transition: all 0.3s ease;
}


.sidebar-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background: #f5f5f5;
	/* soft gray */
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
	transition: left 0.4s ease;
	z-index: 9999;
	padding: 0px;
	display: flex;
	flex-direction: column;
}

/* Show menu */
.sidebar-menu.active {
	left: 0;
}

/* Header with logo and close */
.sidebar-header {
	padding: 20px;
	background: #f5f5f5;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar-logo {
	height: 62px;
}

/* Close button */
.close-btn {
	background: none;
	border: none;
	font-size: 28px;
	color: #333;
	cursor: pointer;
}

.sidebar-links {
	margin-top: 30px;
}

.sidebar-links li a {
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 16px;
	color: #1f2937;
	text-decoration: none;
	transition: background 0.2s ease;
}

.sidebar-links li a:hover {
	background-color: #f3f4f6;
	color: #0ea5e9;
}

.sidebar-links li a i {
	transition: transform 0.3s ease;
}

.dropdown-menu,
.submenu-list {
	display: none;
	flex-direction: column;
	padding-left: 16px;
}

.dropdown-menu.open,
.submenu-list.open {
	display: flex;
}

.rotated {
	transform: rotate(90deg);
}






/* Header Styles */
header {
	border-radius: 60px;
	position: fixed;
	top: 20px;
	left: 12%;
	/* right: -242px; */
	width: 75%;
	background: rgba(0, 0, 0, 0.45);
	/* black with transparency */
	backdrop-filter: blur(12px);
	/* blur behind the header */
	-webkit-backdrop-filter: blur(12px);
	/* for Safari */

	z-index: 1000;

	transition: all 0.3s ease;
}

header.scrolled {
	padding: 10px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 5px 10px;
	transition: all 0.3s ease;
}

header.submenu-open {
	background: #f5f5f5;
	/* saffron blue/purple tone */
	border-radius: 50px 50px 0 0;
}

header.submenu-open .nav-menu a {
	color: #000;
}

header.submenu-open .mega-menu {
	background: #f5f5f5;
	/* soft gray/white */
}

header.submenu-open .mega-column h3 {
	color: black;
}

header.submenu-open .sol-mega-column h3 {
	color: black;
}

header.submenu-open .mega-list a {
	color: #000 !important;
	/* text black */
}

header.submenu-open .mega-list a:hover {
	color: #0EA5E9 !important;
	/* hover accent */
}

header.submenu-open .contact-btn {
	background: linear-gradient(135deg, var(--saffron-blue), var(--saffron-purple));
}


.logo-icon {
	padding: 9px;
	height: 80px;
	width: auto;
	/* automatically adjust width */
	max-width: 150px;
	/* maximum width limit */
	object-fit: contain;
	/* image proportions maintain રહેશે */
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}


.logo-dark {
	display: none;
}

header.submenu-open .logo-light {
	display: none;
}

header.submenu-open .logo-dark {
	display: inline-block;
}


/* Mega menu container */
.mega-menu {
	position: absolute;
	top: 100%;
	/* navbar ni niche */
	left: 0px;
	width: 100%;
	max-width: 85vw;

	background: #f5f5f5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/*  9 items */
	gap: 30px;

	padding: 30px 100px;
	display: none;



	border-radius: 0 0 50px 50px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	z-index: 9998;

	opacity: 0;
	visibility: hidden;



}

.solution-mega-menu {
	position: absolute;
	top: 100%;

	left: 0px;
	width: 100%;
	max-width: 85vw;

	background: #f5f5f5;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/*  9 items */
	gap: 30px;

	padding: 30px 100px;
	display: none;

	border-radius: 0 0 50px 50px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	z-index: 9998;

	opacity: 0;
	visibility: hidden;
}

.has-mega-menu {
	position: static;
}

.has-mega-menu>a {
	padding-bottom: 10px;
	/* small buffer area */
}

.has-mega-menu:hover>a {
	color: rgba(18, 47, 182, 1);

}

/* Show menu on hover */
.has-mega-menu:hover .mega-menu {
	display: grid;
	border-top: 1px solid #000;

	opacity: 1;
	visibility: visible;

}

.has-mega-menu.show-menu .mega-menu {
	display: grid;
	opacity: 1;
}

.mega-column {
	height: 285px;
	max-width: 400px;
	background: #e4e4e4;
	padding: 0px;
	border-radius: 18px;
	text-align: left;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


/* Hover - slightly dark + soft lift effect */
.mega-column:hover {
	background: #d8d8d8;
	/* Slightly darker shade */
	transform: translateY(0px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.sol-mega-column {
	height: 97px;
	max-width: 400px;
	background: #e4e4e4;
	padding: 0px;
	border-radius: 18px;
	text-align: left;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.sol-mega-column:hover {
	background: #d8d8d8;
	/* Slightly darker shade */
	transform: translateY(0px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* Column headings */
.mega-column h3 {
	text-align: center;
	font-weight: 400;
	color: #6b6b6b;
	font-size: 18px;
	margin-bottom: 0px;
}

.mega-img {
	height: 67%;
	width: 80%;
	display: block;
	margin: 20px auto;
	/* <-- PERFECT CENTER */
	margin-bottom: 10px;
	border-radius: 10px;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.mega-img:hover {
	transform: scale(1.08);
	/* zoom IN */
	filter: brightness(0.95);
	/* slightly dim for premium feel */
}

.mega-item {
	display: flex;

	align-items: center;
	gap: 20px;
	padding: 12px;
}

.mega-text h3 {
	color: #6b6b6b;
	margin: 0;
	font-size: 1.2rem;
	font-weight: 400;
}



.sol-mega-img {
	width: 20%;
	/* perfect size like screenshot */
	display: block;
	border-radius: 10px;
}

.mega-list {
	line-height: 2rem;
	margin-left: -20px;
	max-width: 280px;
	list-style: none;
	padding: 0;
}

.mega-list li {
	margin: 0 20px;
	transition: color 0.3s ease, transform 0.3s ease;
}

.mega-list li:hover {
	color: #fff !important;
	transform: translateX(5px);
}

.mega-list a {
	font-weight: 300 !important;
	font-size: 15px;
	color: #ccc !important;
	padding: 5px 0;
	cursor: pointer;

}

.mega-list a:hover {
	color: #fff !important;

}

/* Smooth animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-menu {
	gap: 20px;
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin: 0 20px;
}

.nav-menu a {
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 60px;
	background: transparent;
	color: #e5e7eb;
	font-weight: 400;
	font-size: 15px;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.nav-menu a:hover {
	background: rgba(14, 165, 233, 0.15);
	color: #fff;
	border-color: rgba(14, 165, 233, 0.25);
}

.nav-menu a.active {
	background: rgba(14, 165, 233, 0.25);
	color: #fff;
	border-color: rgba(14, 165, 233, 0.35);
	box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15) inset;
}

.contact-btn {
	position: relative;
	/* important for ::before */
	text-decoration: none;
	display: inline-block;
	/* margin-top: 20px; */
	padding: 12px 24px;
	overflow: hidden;
	background: #f3c249;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 40px;
	border: none;
	box-shadow: 0 -1px 4px #f3c2497d, 0 2px 6px rgba(255, 255, 255, 0);
	border-image-slice: 1;
	border-image-source: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
	transition: 0.3s ease;
}

.contact-btn a {
	color: white;
	text-decoration: none;
}

.contact-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;


	background: rgba(255, 255, 255, 0.12);

	transform: translateX(-100%);
	/* hidden on left */
	transition: transform 0.6s ease;
	z-index: 0;
	/* behind text */
}

/* HOVER EFFECT */
.contact-btn:hover::before {
	transform: translateX(2);
	/* smooth slide */
}

.contact-btn:hover {
	/* background: rgba(14, 165, 233, 0.1); */
	transform: translateY(-7px);
}

.mobile-menu-btn {	
	display: none;
	background: none;
	border: none;
	color: #f4f6f8;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
	transform: scale(1.1);
	color: rgb(9, 30, 124);
}


/* Responsive Breakpoints */
/* Responsive Breakpoints */
@media (max-width: 1200px) {
	header {
		left: 50px;
		width: calc(100% - 100px);
	}

	.header-container {
		padding: 5px 40px;
	}
}

@media (max-width: 992px) {
	header {
		left: 20px;
		width: calc(100% - 40px);
	}

	.header-container {
		padding: 5px 20px;
	}

	.nav-menu a {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	header {
		border-radius: 0px;
		margin: 0 !important;
		padding: 0 !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		position: fixed;
		/* or sticky if you want */
		z-index: 9999;
	}

	.header-container {
		padding: 10px 15px;
		justify-content: space-between;
	}

	.logo-icon {

		height: 80px;
	}

	.contact-btn {
		display: none;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}
}

@media (max-width: 576px) {
	header {
		border-radius: 0px;
		margin: 0 !important;
		padding: 0 !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		position: fixed;
		/* or sticky if you want */
		z-index: 9999;
	}

	.logo-icon {
		height: 75px;
	}
}


/* style */


/* CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--saffron-blue: #0EA5E9;
	--saffron-purple: #0012b1;
	--saffron-dark: #0F172A;
	--saffron-darker: #020617;
	--saffron-gray: #64748B;
	--saffron-light-gray: #94A3B8;
}

/************smoothness**************/
html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/************ ..............**************/


body {
	font-family: "Inter", sans-serif;
	background-color: #ffffff;
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;

}

section {
	background: #f5f6f7;
}



#main-contant {
	opacity: 0;
	pointer-events: none;
}

/* Loading Screen */
/* Loader Base */
.loader {
	position: fixed;
	inset: 0;
	background: #0C1328;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Wrapper */
.logo-wrap {
	text-align: center;
}

/* SVG LOGO - Octagon Rings with Drawing Animation */
.atulya-logo {
	width: 200px;
	height: 200px;
	margin: 0 auto 30px;
}

.octagon-ring {
	fill: none;
	stroke: #d6b35e;
	stroke-width: 8;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Animate each ring with delay */
.ring-1 {
	animation: drawRing 0.8s ease-out forwards;
	animation-delay: 0s;
}

.ring-2 {
	animation: drawRing 0.8s ease-out forwards;
	animation-delay: 0.2s;
}

.ring-3 {
	animation: drawRing 0.8s ease-out forwards;
	animation-delay: 0.4s;
}

.ring-4 {
	animation: drawRing 0.8s ease-out forwards;
	animation-delay: 0.6s;
}

.ring-5 {
	animation: drawRing 0.8s ease-out forwards;
	animation-delay: 0.8s;
}

@keyframes drawRing {
	to {
		stroke-dashoffset: 0;
	}
}

/* Glow Effect After Drawing */
@keyframes glowPulse {

	0%,
	100% {
		filter: drop-shadow(0 0 8px rgba(214, 179, 94, 0.6));
	}

	50% {
		filter: drop-shadow(0 0 20px rgba(214, 179, 94, 0.9));
	}
}

.atulya-logo {
	animation: glowPulse 2s ease-in-out infinite;
	animation-delay: 1.5s;
}

/* TEXT */
.brand-text {
	opacity: 0;
	animation: textReveal 0.8s ease forwards;
	animation-delay: 1.6s;
}

.brand-text h1 {
	margin: 0;
	font-size: 48px;
	letter-spacing: 8px;
	color: #ffffff;
	font-weight: 400;
	text-transform: uppercase;
}

.brand-text .number-line {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 20px;
}

.decorative-line {
	position: relative;
	width: 120px;
	height: 50px;
}

.decorative-line svg {
	width: 100%;
	height: 100%;
}

.line-path {
	fill: none;
	stroke: #d6b35e;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: drawLine 0.8s ease-out forwards;
	animation-delay: 2s;
}

.decorative-line.left .line-path {
	animation-delay: 1.8s;
}

.decorative-line.right .line-path {
	animation-delay: 2.2s;
}

@keyframes drawLine {
	to {
		stroke-dashoffset: 0;
	}
}

.brand-text span {
	color: #d6b35e;
	letter-spacing: 12px;
	font-size: 22px;
	font-weight: 300;
}

@keyframes textReveal {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/* Hero Section with Carousel */
.hero {
	background: #0d0d0d;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Base ellipse style */
.ellipse {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(67, 98, 241, 0.3) 0%, transparent 70%);
	z-index: 1;
}

/* Individual ellipses */
.ellipse-5 {
	width: 980px;
	height: 980px;
	top: 231px;
	left: 940px;
	transform: translate(-50%, -50%);
	opacity: 50%;
}

.ellipse-6 {
	width: 980px;
	height: 980px;
	top: 617px;
	left: 730px;
	transform: translate(-50%, -50%);
	opacity: 50%;
}

.ellipse-7 {
	width: 980px;
	height: 980px;
	top: 630px;
	left: 1119px;
	transform: translate(-50%, -50%);
	opacity: 50%;
}

.carousel-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(100%);

	z-index: 0;

}

.carousel-slide.active {
	opacity: 1;
	transform: translateX(0);
	z-index: 2;
}

.carousel-slide.exit-left {
	transform: translateX(-100%);
	opacity: 0;
	z-index: 1;
}

.carousel-slide video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.carousel-slide:nth-child(4) .carousel-video {
	opacity: 0.5;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2, 6, 23, 0.1);
	z-index: -1;
}

.hero-content {

	position: absolute;
	top: 50%;
	left: 140px;
	transform: translateY(-50%);
	/* vertical center */
	max-width: 820px;
	text-align: left;
	z-index: 2;

}


.hero-title {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #fff, #CBD5E1);
	-webkit-background-clip: text;
	background-clip: text;
	/* color: transparent; */
	animation: textGlow 2s infinite alternate;
	transition: all 0.5s ease;
}


.hero-title .highlight {
	color: rgba(30, 144, 255, 1);

	border-radius: 6px;
	display: inline-block;
	width: auto;

}

.hero-title span {
	/* width: 900px; */
	background: #fff;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	position: relative;
	display: inline-block;
}

.hero-subtitle {

	font-size: 1.1rem;
	color: #ffffff;
	margin-bottom: 30px;
	max-width: 700px;

	transition: all 0.5s ease;
}

.hero-buttons {
	/* font-family: "DM Sans", sans-serif; */
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	position: fixed;

	bottom: -50px;

	z-index: 100;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 60px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.btn:hover::before {
	transform: translateX(0);
}

.btn-primary {
	background: #c7a981;
	color: white;
	/* box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3); */
	font-weight: 500;
}

.btn-primary:hover {
	transform: translateY(-3px);
	/* box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4); */
}

.btn-outline {
	text-decoration: none;
	display: inline-block;
	/* margin-top: 20px; */
	padding: 12px 24px;
	overflow: hidden;
	background: #c7a981;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 40px;
	border: none;
	/* box-shadow: 0 -1px 4px rgba(148, 217, 251, 1), 0 2px 6px rgba(255, 255, 255, 0); */
	border-image-slice: 1;
	border-image-source: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
	transition: 0.3s ease;
}

.btn-outline:hover {
	background: rgba(14, 165, 233, 0.1);
	transform: translateY(-3px);
	border-color: var(--saffron-purple);
}


/* Responsive Breakpoints */
@media (max-width: 1200px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.hero-title span {
		font-size: 3.5rem;
	}

	.hero-subtitle {
		font-size: 1.3rem;
	}

	.hero-content {
		left: 80px;
		max-width: 600px;
	}
}

@media (max-width: 992px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-title span {
		font-size: 3rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-content {
		left: 60px;
		max-width: 500px;
	}

	.ellipse-5,
	.ellipse-6,
	.ellipse-7 {
		width: 700px;
		height: 700px;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
		text-align: center;
	}

	.hero-title span {
		font-size: 2.2rem;
		text-align: center;
	}

	.hero-subtitle {
		font-size: 1rem;
		text-align: center;
	}

	.hero-content {
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: 90%;
		text-align: center;
	}

	.hero-buttons {
		position: static;
		justify-content: center;
		margin-top: 20px;
	}

	.carousel-dots {
		display: none !important;
		/* overflow: hidden; */
	}
}

/* Desktop */
@media (min-width: 769px) {
	.carousel-dots {
		display: none;
		overflow: hidden;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.8rem;
	}

	.hero-title span {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 0.9rem;
	}

	.btn {
		font-size: 14px;
		padding: 10px 18px;
	}

	.ellipse-5,
	.ellipse-6,
	.ellipse-7 {
		width: 500px;
		height: 500px;
	}
}

/* Carousel Navigation */
.carousel-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 3;
}

.carousel-dots {
	display: flex;
	/* display: flex; */
	flex-direction: column;
	gap: 15px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
}

.dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	width: 24px;
	height: 24px;
	background: white;
}

.dot .time {
	font-size: 10px;
	color: black;
	position: absolute;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dot.active .time {
	opacity: 1;
}

.progress {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: conic-gradient(white 0deg, rgba(255, 255, 255, 0.3) 0deg);
	transform: rotate(-90deg);
}

.dot.active .progress {
	animation: progressAnim linear forwards;
}


/* ðŸŒ‘ WHO WE ARE SECTION */
.who-we-are {
	position: relative;
	width: 100%;
	padding: 120px 80px 0px 80px;
	background-color: #ffffff;
	overflow: hidden;
}

/* Background Images */
.who-we-are::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 77%;
	height: 77%;
	background: url("../Image/background.jpg") no-repeat center center/cover;
	opacity: 0.5;
	z-index: 1;
}

.who-we-are::after {
	content: "";
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	height: 250px;
	background: url("../Image/image-2.jpg") no-repeat center bottom/cover;
	opacity: 0.25;
	z-index: 1;
}

/* Content Container */
.content-container {
	position: relative;
	z-index: 2;
	/* max-width: 1400px; */
	margin: 0 auto;
}

/* ABOUT SECTION */
.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1 1 550px;
	background: #ffffff;
	padding: 50px;
	border-radius: 20px;

	/* Elegant Gold Border */
	border: 1px solid #ceb798;

	/* Soft Gold Glow */
	box-shadow: 0 10px 40px rgba(206, 183, 152, 0.3);

	animation: goldPulse 2s infinite alternate;
	position: relative;
}

/* Gold Glow Animation */
@keyframes goldPulse {
	0% {
		box-shadow: 0 0 10px #ceb798;
	}

	100% {
		box-shadow: 0 0 25px #d7c7ac;
	}
}

.about-text::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 3px;

	background: linear-gradient(135deg, #ceb798, transparent);

	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;

	opacity: 0.4;
}

.about-label {
	font-size: 0.9rem;
	color: #b79f82;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #3a2f25;
	/* dark brownish for luxury look */
	margin-bottom: 1rem;
}

.about-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #4a392c;
}

.about-image {
	flex: 1 1 450px;
	text-align: center;
}

.about-image img {
	width: 85%;
	max-width: 500px;
	height: auto;

	/* Soft Gold Shadow */
	/* filter: drop-shadow(0 15px 40px rgba(206,183,152,0.6)); */

	animation: floatEffect 3s ease-in-out infinite alternate;
}

@keyframes floatEffect {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}


/* ðŸŒŸ CARDS SECTION */
.cards-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin: 120px auto 0;
	padding: 0 24px;
	max-width: 1280px;
}

.card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 380px;
	/* âœ… prevents card from stretching too wide  */
	flex: 1 1 calc(33.333% - 40px);
	background: linear-gradient(180deg, #24272D 0%, #000000 100%);
	border-radius: 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	/* transition: transform 0.3s ease, box-shadow 0.3s ease; */
	text-align: center;
	min-height: 650px;
	margin: 0 auto;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 100%;
	background: linear-gradient(90deg, #3366ff, #9333ea);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.card:hover::before {
	transform: translateX(0);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(51, 102, 255, 0.25);
}

.card-icon {
	height: 290px;
	overflow: hidden;
}

.card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px 15px 0 0;
	transition: transform 0.3s ease;
}

.card-icon img:hover {
	transform: scale(1.1);
}

.card-content {
	flex-grow: 1;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.card-title {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	color: #fff;
	font-weight: 700;
	margin-bottom: 20px;
}

.card-description {
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: #b8b9c0;
	line-height: 1.6;
}

/* ðŸŒ RESPONSIVE STYLES */
/* 1440px+: widen container slightly, keep 3 columns */
@media (min-width: 1440px) {
	.cards-container {
		max-width: 1560px;
		gap: 36px;
	}

	.card {
		max-width: 520px;
		min-height: 600px;
	}
}

/* 1200â€“1439px: 3 columns, tighter */
@media (max-width: 1439px) and (min-width: 1200px) {
	.cards-container {
		max-width: 1300px;
		gap: 28px;
	}

	.card {
		max-width: 400px;
		min-height: 560px;
	}
}

/* 992â€“1199px: move to 2 columns */
@media (max-width: 1199px) {
	.card {
		flex: 1 1 calc(50% - 28px);
		max-width: 520px;
		min-height: 520px;
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.who-we-are {
		padding: 100px 50px;
	}

	.who-we-are::before {
		width: 90%;
		height: 50%;
		opacity: 0.12;
		/* slightly softer  */
	}

	.about-text h2 {
		font-size: 2.3rem;
	}

	.about-text p {
		font-size: 1.1rem;
	}

	.card {
		flex: 1 1 calc(50% - 30px);
		min-height: 550px;
	}
}

@media (max-width: 991px) {
	.cards-container {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.card {
		flex: 1 1 100%;
		max-width: 720px;
		min-height: auto;
	}

	.card-icon {
		height: 220px;
	}

	.card-content {
		padding: 28px;
	}
}

/* Tablet and Mobile â€“ stack cards vertically */
@media (max-width: 992px) {
	.cards-container {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.card {
		flex: 1 1 calc(50% - 30px);
		max-width: 450px;
		min-height: 550px;
	}

	.card-icon img {
		width: 100%;
		/* height: auto; */
	}
}

/* Mobile */
@media (max-width: 768px) {
	.who-we-are {
		padding: 80px 25px;
	}

	.who-we-are::before {
		width: 100%;
		height: 40%;
		opacity: 0.1;
		left: 0;
		transform: none;
		background-position: center top;
	}

	.about-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.about-text {
		width: 100%;
		padding: 30px;
	}

	.about-text h2 {
		font-size: 2rem;
	}

	.about-text p {
		font-size: 1rem;
	}

	.about-image img {
		max-width: 90%;
	}

	.cards-container {
		padding: 0 15px;
	}

	.cards-container {
		flex-direction: column;
		align-items: center;
	}

	.card {
		flex: 1 1 100%;
		max-width: 90%;
		min-height: auto;
	}

	.card-title {
		font-size: 1.5rem;
	}

	.card-description {
		font-size: 1rem;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.cards-container {
		margin-top: -20px;
		flex-direction: column;
		align-items: center;
	}

	.who-we-are::before {
		width: 100%;
		height: 30%;
		opacity: 0.08;
		background-position: top;
	}

	.about-text {
		padding: 20px;
	}

	.about-text h2 {
		font-size: 1.6rem;
	}

	.about-text p {
		font-size: 0.95rem;
	}

	.card-content {
		padding: 25px;
	}

	.card-title {
		font-size: 1.4rem;
	}

	.card-description {
		font-size: 0.9rem;
	}
}



/* -------------piller design 1 -----------------*/


.header-piller {
	opacity: 0;
	transform: scale(0.9) translateY(50px);
	margin-top: -90px;
	justify-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.header-piller h1 {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.header-piller p {
	font-size: 1.3rem;
	color: #aaa;
	max-width: 900px;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
}

.right-column {
	display: grid;

	gap: 20px;
}

.top-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	grid-row: span 2;
}

.card1-piller {
	height: 460px;
	width: 440px;
	background: linear-gradient(180deg, #24272D 0%, #000000 100%);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	border-radius: 24px;
	/* border: 1px solid #2a2a2a; */
	transition: all 0.3s ease;
	overflow: hidden;
}

.card-piller:hover {
	border-color: #4a9eff;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(74, 158, 255, 0.1);
}

.card1-piller:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(51, 102, 255, 0.25);
}

.card-large {
	height: 790px;
	background: linear-gradient(180deg, #24272D 0%, #000000 100%);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	border-radius: 24px;
	overflow: hidden;

	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.card-large:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(51, 102, 255, 0.25);
}

.card-horizontal:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(51, 102, 255, 0.25);
}

.card-large .card-image-piller {
	width: 100%;
	height: 280px;

	overflow: hidden;
}

.card-large .card-image-piller img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	display: block;
}

.card-horizontal {
	width: 900px;
	height: 310px;
	background: linear-gradient(180deg, #24272D 0%, #000000 100%);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	border-radius: 24px;
	transition: all 0.3s ease;
	grid-column: span 2;
	flex-direction: row-reverse;
	display: flex;

	justify-content: space-between;
	overflow: hidden;

}

.card-horizontal .card-content-piller {
	flex: 1;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	padding: 30px;
	text-align: left;
}

.card-horizontal .card-image-piller {
	flex: 1;

	height: 100%;

}

.card-horizontal .card-image-piller img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	display: block;
}

.card-horizontal .card-title-piller {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.card-icon-piller {
	font-size: 3rem;
	margin-bottom: 20px;
}

.card-large .card-icon-piller {
	font-size: 5rem;
}

.card-image-piller {
	object-fit: cover;
}

.card-image-piller img {
	max-height: 270px;
	width: 100%;
	height: auto;
	object-fit: cover;

	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
}

.card-content-piller {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
}

.card-title-piller {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.card-large .card-content-piller {
	padding: 30px 40px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.card-large .card-title-piller {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0;
}

.card-horizontal .card-title-piller {

	font-size: 1.8rem;
}

.card-description-piller {
	color: #aaa;
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.card-large .card-description-piller {
	font-size: 1rem;
	line-height: 1.6;
	color: #a8a8a8;

}

.card-large .card-keywords-piller {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.card-large .keyword-tag-piller {
	background: rgba(74, 158, 255, 0.1);
	color: #4a9eff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	border: 1px solid rgba(74, 158, 255, 0.2);
}

.card-keywords-piller {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.keyword-tag-piller {
	background: rgba(74, 158, 255, 0.1);
	color: #4a9eff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	border: 1px solid rgba(74, 158, 255, 0.2);
}

.visual-element-piller {
	width: 200px;
	height: 200px;
	background: linear-gradient(180deg, #4a9eff 0%, #2563eb 100%);
	border-radius: 50%;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	font-weight: 700;
	box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.card-large {
		grid-row: span 1;
	}

	.right-column {
		grid-template-rows: auto;
	}

	.top-cards {
		grid-row: span 1;
		grid-template-columns: 1fr;
	}

	.card-horizontal {
		grid-column: span 1;
	}


}

@media (max-width: 768px) {


	.card-piller {
		padding: 30px;
	}

	.card-title-piller {
		font-size: 1.3rem;
	}

	.card-large .card-title-piller {
		font-size: 2rem;
	}

	.visual-element-piller {
		width: 150px;
		height: 150px;
		font-size: 2.5rem;
	}
}

/* ------------------- Pillar Design (Gold + White Theme) -------------------- */

.pillars-wrapper {
	opacity: 1;
	width: 100%;
	transform: scale(0.8) translateY(50px);
}

/* Main Container */
.pillar-container {
	border-radius: 24px;
	height: 400px;
	display: flex;
	width: 100%;
	margin-bottom: 60px;
	opacity: 0;
	transform: scale(0.9) translateY(60px);
	transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);

	background: #ffffff;
	/* White background */
	border: 2px solid #CEB79850;
	/* Soft gold border */
}

.pillar-container.animate-in {
	opacity: 1;
	transform: scale(1) translateY(0);
}

/* Left Layout */
.pillar-layout-left .pillar-visual-section {
	width: 60%;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
	background: #CEB798;
	/* Gold */
}

/* Right Layout (Image Right) */
.pillar-layout-right {
	flex-direction: row-reverse;
}

.pillar-layout-right .pillar-visual-section {
	width: 60%;
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
	background: #CEB798;
	/* Gold */
}

/* Text Section */
.pillar-text-section {
	width: 40%;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;

	background: #ffffff;
	/* Pure White */
	color: #2c2c2c;
	border-radius: 24px;
}

/* Image Style */
.pillar-visual-section {
	position: relative;
	overflow: hidden;
}

.pillar-visual-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
	mix-blend-mode: multiply;
	/* Soft gold overlay look */
	opacity: 0.95;
}

.pillar-container:hover .pillar-visual-section img {	
	transform: scale(1.08);
}

/* Headings */
.pillar-text-section h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #2c2c2c;
}

/* Paragraph */
.pillar-text-section p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #6E583F;
	/* Soft brown-gold text */
}

/* Keywords */
.pillar-keywords-section {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.keyword-item {
	background: #CEB79830;
	border: 1px solid #CEB798;
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 0.85rem;
	color: #3f2e15;
	transition: all 0.3s ease;
}

.keyword-item:hover {
	background: #CEB79850;
	transform: translateY(-2px);
}

/* Icon */
.pillar-icon-badge {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #CEB798;
}

.header-piller h1,
.header-piller p {
	color: #3f2e15;
}


/* ===========================
 1200px and below
   ===========================*/
@media (max-width: 1200px) {
	.header-piller h1 {
		font-size: 2.6rem;
	}

	.header-piller p {
		font-size: 1.2rem;
		max-width: 800px;
	}
}


/* ===========================
  992px and below (Laptop)
   ===========================*/
@media (max-width: 992px) {
	.header-piller {
		margin-top: -50px;
	}

	.header-piller h1 {
		font-size: 2.3rem;
	}

	.header-piller p {
		font-size: 1.15rem;
		max-width: 700px;
	}
}


/* ===========================
 768px and below (Tablet)
   ===========================*/
@media (max-width: 768px) {
	.header-piller {
		margin-top: 70px;
		padding: 0 20px;
	}

	.header-piller h1 {
		font-size: 2rem;
	}

	.header-piller p {
		font-size: 1rem;
		max-width: 95%;
	}
}


/* ===========================
 576px and below (Mobile)
   ===========================*/
@media (max-width: 576px) {
	.header-piller {
		margin-top: -10px;
		margin-bottom: 30px;
		padding: 0 15px;
	}

	.header-piller h1 {
		margin-top: -75px;
		font-size: 1.7rem;
		margin-bottom: 12px;
	}

	.header-piller p {
		font-size: 0.95rem;
	}
}


/* ===========================
 400px and below
   ===========================*/
@media (max-width: 400px) {
	.header-piller {
		padding: 0 10px;
	}

	.header-piller h1 {
		font-size: 1.5rem;
	}

	.header-piller p {
		font-size: 0.85rem;
	}
}


/* ===========================
  1200px and below
   ===========================*/
@media (max-width: 1200px) {

	.pillar-container {
		height: 360px;
	}

	.pillar-text-section {
		padding: 40px 35px !important;
	}

	.pillar-text-section h2 {
		font-size: 1.8rem;
	}

	.pillar-text-section p {
		font-size: 1.05rem;
	}
}

/* ===========================
992px and below (Laptop)
   ===========================*/
@media (max-width: 992px) {

	.pillar-container {
		height: auto;
		flex-direction: column !important;
	}

	/* image full width */
	.pillar-visual-section {
		width: 100% !important;
		/* height: 280px; */
		border-radius: 24px 24px 0 0 !important;
	}

	/* text full width */
	.pillar-text-section {
		width: 100% !important;
		border-radius: 0 0 24px 24px !important;
		padding: 40px 30px !important;
	}

	.pillar-text-section h2 {
		font-size: 1.6rem;
	}

	.pillar-text-section p {
		font-size: 1rem;
	}
}

/* ===========================
 768px and below (Tablet)
   ===========================*/
@media (max-width: 768px) {

	.pillars-wrapper {
		transform: scale(1) translateY(0);
	}

	.pillar-visual-section {
		height: 240px;
	}

	.pillar-text-section {
		padding: 32px 25px !important;
	}

	.pillar-text-section h2 {
		font-size: 1.45rem;
	}

	.pillar-text-section p {
		font-size: 0.95rem;
		line-height: 1.55;
	}
}

/* ===========================
576px and below (Mobile)
   ===========================*/
@media (max-width: 576px) {

	.pillar-container {
		margin-bottom: 40px;
	}

	.pillar-visual-section {
		height: 200px;
	}

	.pillar-text-section {
		padding: 25px 18px !important;
		text-align: left;
	}

	.pillar-text-section h2 {
		font-size: 1.3rem;
		margin-bottom: 18px;
	}

	.pillar-text-section p {
		font-size: 0.9rem;
	}

	.keyword-item {
		font-size: 0.75rem;
		padding: 5px 10px;
	}
}

/* ===========================
 400px and below
   ===========================*/
@media (max-width: 400px) {

	.pillar-text-section {
		padding: 20px 15px !important;
	}

	.pillar-text-section h2 {
		font-size: 1.2rem;
	}

	.pillar-text-section p {
		font-size: 0.85rem;
	}
}

@media (max-width: 968px) {

	.pillar-container {
		flex-direction: column !important;
		height: auto;
		gap: 0px;
		/* spacing between image and text */
	}

	.pillar-layout-right .pillar-visual-section {
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
	}

	.pillar-visual-section {
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
		width: 100% !important;
	}

	.pillar-text-section {

		width: 100% !important;
		border-radius: 0 !important;
	}

	.pillar-visual-section img {
		border-radius: 0 !important;
		height: 250px;
		object-fit: cover;
	}

	.pillar-text-section {
		padding: 40px 30px;
	}
}


/* Mobile */
@media (max-width: 768px) {
	.who-we-are::after {
		height: 120px;
		bottom: 10px;
		opacity: 0.35;
	}
}

/* Tablet */
@media (max-width: 968px) {
	.who-we-are::after {
		height: 145px;
		bottom: 20px;
		opacity: 0.3;
	}
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
	.who-we-are::after {
		height: 300px;
		bottom: 0px;
	}
}

/* Extra Large (1600px+) */
/* @media (min-width: 1600px) {
    .who-we-are::after {
        height: 350px;
        bottom: 80px;
    }
} */






/* Stats Section */
.stats {
	z-index: 2;
	/* margin-top: -1120px; */
	padding: 80px 0;
	border: 1px solid rgba(0, 0, 0, 1);
	position: relative;
}

.section-title {
	font-size: 3rem;
}

.stats-container {
	/* font-family: "DM Sans", sans-serif; */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.stat-item {
	padding: 20px;
	opacity: 1;
	transform: translateY(50px);

}

.stat-item.visible {
	opacity: 1;
	transform: scale(1);
}

.stat-value {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(90deg, var(--saffron-blue), var(--saffron-purple));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.stat-item:hover .stat-value {
	transform: scale(1.1);
}

.stat-label {
	color: var(--saffron-light-gray);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
	color: white;
}

/* Stats section adjustments */
@media (max-width: 992px) {
	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.stat-value {
		font-size: 2.5rem;
	}

	.stat-label {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.stats {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stat-value {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.stats {
		padding: 40px 0;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.stats-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.stat-item {
		padding: 15px;
	}
}

/* Value Proposition Section */
.value-prop {
	padding: 100px 0;
	background-color: var(--saffron-dark);
	position: relative;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.value-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.value-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.value-icon {
	width: 50px;
	height: 50px;
	background: rgba(14, 165, 233, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--saffron-blue);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.value-item:hover .value-icon {
	background: linear-gradient(135deg, var(--saffron-blue), var(--saffron-purple));
	color: white;
	transform: rotate(15deg);
}

.value-content h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.value-item:hover .value-content h3 {
	background: linear-gradient(90deg, var(--saffron-blue), var(--saffron-purple));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.value-content p {
	color: var(--saffron-gray);
	transition: all 0.3s ease;
}

.value-item:hover .value-content p {
	color: #CBD5E1;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: #636138;
	text-align: center;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(50px);
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 0;
}

.cta-container {
	position: relative;
	z-index: 1;
}

.cta-title {
	color: #6E583F;
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease;
	opacity: 0;
	transform: none;
}

.cta-subtitle {
	color: #6E583F;
	/* font-family: "DM Sans", sans-serif; */
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 30px;
	opacity: 0.9;
	animation: fadeInUp 1s ease 0.2s both;
	opacity: 0;
	transform: translateY(50px);
}

/* CTA Button Base */
.cta .btn {
	position: relative;
	overflow: hidden;
	font-size: 1.1rem;
	padding: 12px 28px;
	border-radius: 40px;
	color: #fff;

	/* Gradient background */
	background: #C7A981;

	/* Entry animation */
	animation: fadeInUp 1s ease 0.4s both;
	opacity: 0;
	transform: translateY(50px);

	/* box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3); */
	cursor: pointer;
	transition: 0.3s ease;
}

/* Hover */
.cta .btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Left-to-right shiny layer effect */
.cta .btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.12);

	/* Starting position - hidden on left */
	transform: translateX(-100%);
	transition: transform 0.6s ease;

	/* Layer should be above background but below text */
	z-index: 0;
}

/* Hover  slide effect */
.cta .btn:hover::before {
	transform: translateX(0);
}




/* General improvements for all sections */
/* Large Desktop (1440px) */
@media (min-width: 1440px) {
	.cta {
		padding: 120px 0;
	}

	.cta-title {
		font-size: 3rem;
	}

	.cta-subtitle {
		font-size: 1.1rem;
		max-width: 800px;
	}

	.cta .btn {
		font-size: 1.1rem;
		padding: 14px 26px;
	}
}

/* Standard Desktop (1200px 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
	.cta {
		padding: 100px 0;
	}

	.cta-title {
		font-size: 3rem;
	}

	.cta-subtitle {
		font-size: 1.3rem;
		max-width: 700px;
	}

	.cta .btn {
		font-size: 1.1rem;
		padding: 14px 30px;
	}
}

/* Tablet Landscape (992px*1199px) */
@media (max-width: 1199px) {
	.cta {
		padding: 80px 0;
	}

	.cta-title {
		font-size: 2.5rem;
	}

	.cta-subtitle {
		font-size: 1.2rem;
		max-width: 600px;
	}

	.cta .btn {
		font-size: 1rem;
		padding: 12px 28px;
	}
}

/* Tablet Portrait (768px*991px) */
@media (max-width: 991px) {
	.cta {
		padding: 70px 0;
	}

	.cta-title {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}

	.cta-subtitle {
		font-size: 1.1rem;
		max-width: 500px;
	}

	.cta .btn {
		font-size: 1rem;
		padding: 12px 24px;
	}
}

/* Mobile (480px*767px) */
@media (max-width: 767px) {
	.cta {
		padding: 60px 20px;
	}

	.cta-title {
		font-size: 1.8rem;
	}

	.cta-subtitle {
		font-size: 1rem;
		max-width: 90%;
	}

	.cta .btn {
		display: block;
		width: 100%;
		margin: 10px auto;
		font-size: 0.95rem;
		padding: 12px 20px;
	}
}

/* Small Mobile (<480px) */
@media (max-width: 480px) {
	.cta {
		padding: 50px 15px;
	}

	.cta-title {
		font-size: 1.6rem;
	}

	.cta-subtitle {
		font-size: 0.95rem;
		max-width: 100%;
	}

	.cta .btn {
		font-size: 0.9rem;
		padding: 10px 18px;
	}
}


.carousel-image {
	position: relative;
	z-index: 2;
	top: 20%;

	right: -1140px;

	height: auto;

	transform: translateY(-50%);

	object-fit: cover;
	animation: floatEffect 10s ease-in-out infinite alternate;
}

.carousel-image-2 {
	position: absolute;
	top: 10%;

	right: 100px;

	width: 40%;

	height: auto;

	transform: translateY(-50%);
	/* vertically center */
	object-fit: cover;
	animation: floatEffect 10s ease-in-out infinite alternate;
}

.carousel-image-3 {
	position: absolute;
	top: 20%;
	/* vertical center */
	right: 180px;
	/* right side margin */
	width: 30%;
	/* image size */
	height: auto;
	/* aspect ratio maintain */
	transform: translateY(-50%);
	/* vertically center */
	object-fit: cover;
	animation: floatEffect 10s ease-in-out infinite alternate;
}

/* Soft top-bottom movement */
@keyframes floatEffect {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* === saffron SECTION (REAL ESTATE THEME) === */
.saffron-section {
	position: relative;
	padding: 100px 20px;
	overflow: hidden;
	background-color: #ffffff;
	/* White Background */
	color: #333;
	/* Dark Text */
}

/* Background (optional blur overlay removed for white theme) */
.saffron-bg-wrapper {
	display: none;
}

/* Container */
.saffron-container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

/* Heading */
.saffron-title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #3f2e15;
	/* Gold Title */
}

/* Gold Accent */
.saffron-gradient-text {
	background: none;
	color: #3f2e15;
	/* Solid Gold */
}

/* Subtitle */
.saffron-subtitle {
	font-size: 1.2rem;
	color: #555;
	/* soft dark */
	max-width: 800px;
	margin: 0 auto 60px;
	line-height: 1.6;
}

/* Grid */
.saffron-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

/* Card (White + Gold Border + Light Shadow) */
.saffron-card {
	background: #ffffff;
	border: 2px solid #CEB798;
	/* Gold Border */
	border-radius: 20px;
	padding: 40px;
	transition: all 0.4s ease;
	box-shadow: 0px 4px 20px rgba(206, 183, 152, 0.25);
}

/* Hover */
.saffron-card:hover {
	transform: translateY(-8px);
	box-shadow: 0px 6px 25px rgba(206, 183, 152, 0.35);
	background: #fff5e6;
}

/* Icon Wrapper */
.saffron-icon {
	width: 70px;
	height: 70px;
	border-radius: 12px;
	border: 2px solid #CEB798;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	background: #fff;
}

/* Icon Image */
.saffron-icon img {
	width: 65px;
	height: 65px;
}

/* Card Text */
.saffron-card-text {
	color: #333;
	font-size: 1.2rem;
	line-height: 1.6;
}

/* Title wrapper padding */
.saffron-text-center {
	margin-bottom: 100px;
}


/* === Responsive === 
            @media (max-width: 768px) {
            .saffron-title {
            font-size: 2.2rem;
            }
            .saffron-subtitle {
            font-size: 1rem;
            }
            }*/
/* Why saffron section adjustments */
@media (max-width: 992px) {
	.saffron-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.saffron-title {
		font-size: 3rem;
	}

	.saffron-subtitle {
		font-size: 1.2rem;
	}

	.saffron-card {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.saffron-section {
		padding: 60px 15px;
	}

	.saffron-title {
		font-size: 2.2rem;
	}

	.saffron-subtitle {
		font-size: 1rem;
	}

	.saffron-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.saffron-card {
		padding: 25px 20px;
	}

	.saffron-card-title {
		font-size: 1.5rem;
	}

	.saffron-card-text {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.saffron-section {
		padding: 40px 15px;
	}

	.saffron-title {
		font-size: 1.8rem;
	}

	.saffron-card {
		padding: 20px 15px;
	}
}

.ellipse-bg {
	position: absolute;
	width: 60vw;
	max-width: 804px;
	/* Figma width */
	height: 60vw;
	max-height: 805px;
	/* Figma height */
	/* top: 155px;      adjust as needed */
	left: 50%;
	/* center horizontally */
	transform: translateX(-50%) rotate(30.14deg);
	background: radial-gradient(circle at center, rgba(66, 133, 244, 0.7), rgba(0, 0, 0, 0) 70%);
	filter: blur(80px);
	opacity: 0.5;
	z-index: 0;
	/* behind cards */
}

.custom-container {
	position: relative;
	padding: 40px 20px;
}

.custom-title {
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
	font-size: 3rem;
	color: #ffffff;
	opacity: 0;
	transform: translateY(50px);
}

.custom-testimonial-slider {
	display: block !important;
	margin-top: 20px;
	margin-bottom: 40px;
	/* display: flex; */
	/* add this */
	overflow: hidden;
	/* add this */
	width: 100%;
	/* optional but helps */
}

.custom-testimonial-card {
	/* width: 550%; */
	width: 100%;
	max-width: 700px;
	flex: 0 0 100%;
	/* max-width: 700px;   */
	/* each card full width for slider */
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.1);
	/* slightly darker semi-transparent base */
	backdrop-filter: blur(20px);
	/* strong blur effect */
	-webkit-backdrop-filter: blur(20px);
	/* Safari support */
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 15px;
	padding: 30px;
	margin: 0 15px;
	height: 400px !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
	/* soft outer glow */
	/* width: 800px!important; */
}

.slick-center .custom-testimonial-card {
	transform: scale(1.05);
	/* bigger center card */
	opacity: 1;
	/* fully visible */
	border-color: rgba(66, 133, 244, 0.5);
	box-shadow: 0 0 30px rgba(66, 133, 244, 0.5);
}

.custom-testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(66, 133, 244, 0.5);
}

.custom-testimonial-text {
	color: #b8b9c0;
	/* font-family: "DM Sans", sans-serif; */
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 20px;
	/* font-style: italic; */
	flex-grow: 1;
}

.custom-testimonial-author {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #4285F4;
}

.custom-stars {
	color: #FFD700;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.custom-slider .slick-slide {
	display: flex !important;
	justify-content: center;
	align-items: stretch;
	height: auto !important;
}

.custom-slider .slick-prev:before,
.custom-slider .slick-next:before {
	color: #4285F4;
	font-size: 1.5rem;
}

.custom-slider .slick-dots li button:before {
	color: #ffffff;
	opacity: 0.5;
}

.custom-slider .slick-dots li.slick-active button:before {
	color: #4285F4;
	opacity: 1;
}

.custom-contact-section {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.custom-contact-btn {
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: #4285F4;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	/* transition: all 0.3s ease; */
	opacity: 0;
	transform: translateY(50px);
}

.custom-contact-btn:hover {
	background-color: #3367d6;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.custom-contact-btn i {
	margin-left: 10px;
	font-size: 1.3rem;
}

.custom-testimonial-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
}

.author {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* ðŸ”¹ Responsive Breakpoints */
@media (max-width: 992px) {
	.custom-container {
		padding: 20px 15px;
	}

	.custom-testimonial-card {
		padding: 25px;
	}

	.custom-testimonial-text {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.custom-container {
		padding: 20px 15px;
	}

	.custom-title {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}

	.custom-testimonial-card {
		padding: 20px;
	}

	.custom-testimonial-text {
		font-size: 0.95rem;
	}

	.custom-testimonial-author {
		font-size: 1rem;
	}

	.custom-stars {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.custom-title {
		font-size: 1.6rem;
	}

	.custom-testimonial-card {
		padding: 15px;
	}

	.custom-testimonial-text {
		font-size: 0.9rem;
	}

	.author {
		flex-direction: column;
		align-items: flex-start;
	}

	.custom-testimonial-image {
		width: 45px;
		height: 45px;
	}
}




/*solution section */




.solutions-section {
	height: auto;
	min-height: 100vh;
	width: 100%;
	background: #ffffff;
	color: #fff;
	overflow: unset;
	/* this keeps overlay slider working */
}





/* inner wrapper for centered content */
.solutions-section .content-wrapper {
	max-width: 1400px;
	margin: 25px auto;
	padding: 2rem;
}

.section-header-solution {
	text-align: center;
	margin-bottom: 60px;
}

.section-header-solution h1 {
	margin-top: 50px;
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 1.2;
}

.section-header-solution span {
	font-size: 2rem;
	color: #888;
	font-weight: 300;
}

.content-wrapper {
	display: flex;
	gap: 200px;
	align-items: flex-start;
}

.sidebar-menu-solution {
	width: 182px;
	flex-shrink: 0;
	position: sticky;
	/* top: 20px; */
}

.menu-option {
	/* background-color: transparent; */

	color: #888;
	padding: 18px 24px;
	margin-bottom: 12px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-size: 1rem;
	font-weight: 500;
}

.menu-option:hover {
	text-align: center;
	width: 190px;
	background-color: #2b2b2b;
	/* same gray */
	color: #4ea8ff;
	/* subtle blue tint on hover */
	/* transform: translateX(5px); */
}

.menu-option.active {
	text-align: center;
	width: 190px;
	background-color: #2b2b2b;
	/* soft gray like screenshot */
	color: #fff;

	/* transform: translateX(5px); */
}

.display-area {
	flex: 1;
	min-height: auto;
}

.content-panel {
	display: none;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease forwards;
}

/* ------------------- Camera Grid (Gold + White Theme) -------------------- */

.content-panel.active {
	display: block;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.camera-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Card Base */
.camera-card {
	height: 380px;
	position: relative;
	background: #ffffff;
	/* White background */
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;

	border: 2px solid #CEB79880;
	/* Soft gold border */
	box-shadow: 0px 4px 20px rgba(206, 183, 152, 0.25);
}

.camera-card:hover {
	transform: translateY(-8px);
	box-shadow: 0px 10px 25px rgba(206, 183, 152, 0.45);
}

/* Images */
.camera-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
	transition: transform 0.6s ease;
	opacity: 0.95;


	/* Soft gold overlay blend */
	mix-blend-mode: multiply;
}

.camera-card:hover .camera-image {
	transform: scale(1.07);
}

/* Overlay Text */
.camera-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;

	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	color: #3f2e15;
	/* Dark brown gold */
	transition: all 0.4s ease;
}

.camera-card:hover .camera-overlay {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
}

/* Title */
.camera-overlay h3 {
	font-size: 1.3rem;
	margin: 0;
	font-weight: 600;
	color: #3f2e15;
	/* Deep brown-gold */
}

/* Description */
.camera-overlay p {
	opacity: 0;
	transform: translateY(10px);
	font-size: 0.95rem;
	color: #6E583F;
	/* Soft golden-brown */
	transition: all 0.4s ease;
}

.camera-card:hover .camera-overlay p {
	opacity: 1;
	transform: translateY(0);
}


.real-estate-heading {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 20px;
}

.real-estate-heading h2 {
	font-size: 32px;
	font-weight: 700;
	color: #3f2e15;
	/* deep gold-brown */
	position: relative;
	display: inline-block;
	transition: color 0.3s ease;
}

.real-estate-heading h2:hover {
	color: #bfa36d;
	/* light gold on hover */
}

.heading-underline {
	display: block;
	width: 70px;
	height: 3px;
	background-color: #bfa36d;
	margin: 8px auto 0;
	border-radius: 10px;
	transition: width 0.4s ease;
}

.real-estate-heading:hover .heading-underline {
	width: 120px;
	/* smoother expansion effect */
}

/* ----------- SERVICES HEADING STYLING (Gold Theme) ------------ */

.services-heading {
	width: 100%;

	text-align: center;
	/* Center on full page */
	font-size: 2.6rem;
	font-weight: 700;

	.services-heading {
		margin: 20px 0 15px;
		/* MUCH smaller spacing */
	}

	/* Top & bottom spacing */
	color: #3f2e15;
	/* Deep premium brown-gold */
	position: relative;
	display: block;
	padding-bottom: 100px;
	transition: all 0.4s ease;
	cursor: pointer;
}

/* Center underline */
.services-heading::after {
	content: "";
	width: 70px;
	height: 3px;
	background: #ceb798;
	/* soft gold */
	margin: 10px auto 0;
	display: block;
	transition: width 0.4s ease, background 0.4s ease;
}

/* Hover Effect */
.services-heading:hover {
	color: #a3875c;
	/* bright gold on hover */
	transform: translateY(-4px);
}

.services-heading:hover::after {
	width: 110px;
	/* underline expands */
	background: #b89c6b;
	/* rich gold */
}



.camera-info {
	padding: 20px;
}

.camera-info h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.camera-info p {
	font-size: 0.9rem;
	color: #888;
}

.nvr-card {
	background: linear-gradient(rgb(17 26 113 / 52%) 0%, rgb(79 79 79 / 71%) 100%);
	;
	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 30px 70px 41px;
	border-radius: 20px;
	padding: 30px 30px;
	/* border: 2px solid #333; */
	transition: all 0.4s ease;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

.nvr-card:hover {

	transform: scale(1.02);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.NVR-left {
	flex: 1;
}

.NVR-right {
	flex: 1;
}

.nvr-image-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 15px 0;
}

.nvr-image {
	width: 100%;
	max-width: 875px;
	/* Change if needed */
	height: auto;
	border-radius: 12px;
	object-fit: contain;
	/* keeps original look */
}


.nvr-card h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #60a5fa, #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nvr-card p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #bbb;
	margin-bottom: 30px;
}

.nvr-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.nvr-feature {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(37, 99, 235, 0.3);
}

.nvr-feature h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	/* space between icon & title */
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: #ffffff;
}

.nvr-feature h4 i {
	font-size: 23px;
	color: #4da3ff;
	/* blue theme */
}

.nvr-feature p {
	font-size: 0.95rem;
	color: #999;
	margin: 0;
}

/* =====================================================
   1400px and below â€” large screens
   =====================================================*/
@media (max-width: 1400px) {
	.content-wrapper {
		gap: 120px;
	}

	.section-header-solution h1 {
		font-size: 2.6rem;
	}
}


/* =====================================================
    1200px and below â€” laptop screens
   =====================================================*/
@media (max-width: 1200px) {
	.content-wrapper {
		gap: 80px;
	}

	.sidebar-menu-solution {
		width: 160px;
	}

	.camera-card {
		height: 350px;
	}

	.section-header-solution h1 {
		font-size: 2.4rem;
	}
}

/* =====================================================
      992px and below â€” tablets landscape
   =====================================================*/
@media (max-width: 992px) {
	.content-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.sidebar-menu-solution {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
		top: 0;
	}

	.menu-option {
		width: auto;
		text-align: center;
		padding: 14px 20px;
	}

	.menu-option:hover,
	.menu-option.active {
		width: auto;
	}

	.camera-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.camera-card {
		height: 320px;
	}
}


/* =====================================================
     768px and below â€” tablets portrait
   =====================================================*/
@media (max-width: 768px) {
	.section-header-solution h1 {
		font-size: 2rem;
	}

	.section-header-solution span {
		font-size: 1.4rem;
	}

	.camera-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.camera-card {
		height: 300px;
	}

	.nvr-card {
		flex-direction: column;
		padding: 40px 30px;
	}

	.nvr-card h2 {
		font-size: 2rem;
	}

	.nvr-card p {
		font-size: 1rem;
	}

	.nvr-features {
		grid-template-columns: 1fr;
	}
}


/* =====================================================
     576px and below â€” mobile
   =====================================================*/
@media (max-width: 576px) {
	.content-wrapper {
		padding: 1.5rem;
	}

	.section-header-solution h1 {
		font-size: 1.7rem;
	}

	.section-header-solution span {
		font-size: 1.2rem;
	}

	.camera-grid {
		grid-template-columns: 1fr;
	}

	.camera-card {
		height: 260px;
	}

	.menu-option {
		font-size: 0.9rem;
		padding: 12px 16px;
	}

	.nvr-card {
		flex-direction: column;
		padding: 30px 20px;
	}

	.nvr-card h2 {
		font-size: 1.8rem;
	}

	.nvr-card p {
		font-size: 0.95rem;
	}
}


/* =====================================================
      420px and below â€” small mobile
   =====================================================*/
@media (max-width: 420px) {
	.section-header-solution h1 {
		font-size: 1.5rem;
	}

	.camera-card {
		height: 230px;
	}

	.menu-option {
		padding: 10px 14px;
		font-size: 0.85rem;
	}

	.nvr-card {
		flex-direction: column;
		padding: 24px 16px;
	}

	.nvr-card h2 {
		font-size: 1.6rem;
	}
}



.smoke-overlay {
	position: absolute;
	/* ðŸ‘ˆ floats above */
	/* top: 0; */
	left: 0;
	width: 100%;
	height: 100vh;
	/* full viewport height */
	background: white;


	opacity: 1;
	/* start hidden */
	z-index: 1;
	/* ðŸ‘ˆ above first slide */
	pointer-events: none;
	/* donâ€™t block clicks */
}



.slide-section {
	height: auto !important;
	min-height: 100vh;
	padding: 4rem 1rem;
	scroll-snap-align: start;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	/* color: #fff; */
	position: relative;
	overflow: hidden;

}

.layout-container {
	display: flex;
	grid-template-columns: 1fr 1fr 0.8fr;
	grid-template-rows: auto auto auto;
	gap: 53px;
	max-width: 882px;
	margin: auto;
	justify-items: stretch;
	align-items: stretch;
	justify-content: space-evenly;
	align-content: center;
}

.img {
	position: absolute;
	border-radius: 12px;
	overflow: hidden;
}

.img img {

	margin-top: 60px;
	width: 100%;
	height: 109%;
	object-fit: cover;
	display: block;

}

/* LEFT TALL IMAGE (IMAGE 1) */
.img1 {
	z-index: 1;
	top: 31%;
	/* left: 547px; */
	width: 590px;
	height: 428px;
	transition: transform 0.4s ease;
	/* smooth animation */

	/* grid-row: 1 / 3;
    grid-column: 1; */

	/* top: 24%;
    left: 486px;
    width: 200px;
    height: 403px;
    grid-row: 1 / 3;
    grid-column: 1; */
}

.img1:hover {
	transform: rotate(3deg) scale(1.05);
	/* halka rotate + thodu zoom */

}

/* TOP WIDE IMAGE (IMAGE 2) */
.img2 {
	top: 238px;
	left: 61%;
	transform: translateX(-50%);
	width: 466px;
	height: 196px;
	grid-row: 1;
	grid-column: 2 / span2;
}

/* CENTER SMALL IMAGE (IMAGE 3) */
.img3 {
	top: 58%;
	left: 53%;
	transform: translate(-50%, -50%);
	width: 208px;
	height: 154px;
	z-index: 5;
	grid-row: 2;
	grid-column: 2;
}

/* RIGHT TALL IMAGE (IMAGE 4) */
.img4 {
	top: 51%;
	right: 398px;
	width: 190px;
	height: 387px;
	grid-row: 2 / 4;
	grid-column: 3;
}

/* BOTTOM WIDE IMAGE (IMAGE 5) */
.img5 {
	bottom: 11px;
	left: 43%;
	transform: translateX(-50%);
	width: 437px;
	height: 259px;
	grid-row: 3;
	grid-column: 1 / 3;
}






.slide-content {
	/* display: flex; */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* max-width: 800px; */
	text-align: center;
	color: #3F2E15;
	height: 100%;
	/* fill parent height */
}

.slide-content h1 {
	margin-top: 50px;
	font-weight: 500;
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #3F2E15;
}

.slide-content-ANTARIX {
	text-align: center;
}

.slide-content-ANTARIX h1 {
	font-weight: 500;
	margin-top: 60px;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.slide-content-ANTARIX p {
	color: #aeaeae;
	text-align: center;
	align-items: center;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 15px;
}

.slide-content p {
	color: #6E583F;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 15px;
}

.sdk-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.sdk-table th,
.sdk-table td {
	border: 1px solid #ccc;
	padding: 10px;
}

.highlights {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.highlights li {
	margin: 10px 0;
	font-size: 1.1rem;
}

.cta-btn-slide {
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	overflow: hidden;
	background: linear-gradient(0deg, rgba(148, 217, 251, 0.08), rgba(148, 217, 251, 0.08)), linear-gradient(0deg, #0C1328, #0C1328);
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 40px;
	border: none;
	box-shadow: 0 -1px 4px rgba(148, 217, 251, 1), 0 2px 6px rgba(255, 255, 255, 0);
	border-image-slice: 1;
	border-image-source: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
	transition: 0.3s ease;
}

.cta-btn-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	/* border thickness */
	background: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}

.cta-btn-slide:hover {
	background: #044586;
}

.cta-btn-slide-ANTARIX {
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	overflow: hidden;
	background: linear-gradient(0deg, rgba(148, 217, 251, 0.08), rgba(148, 217, 251, 0.08)), linear-gradient(0deg, #0C1328, #0C1328);
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 40px;
	border: none;
	box-shadow: 0 -1px 4px rgba(148, 217, 251, 1), 0 2px 6px rgba(255, 255, 255, 0);
	border-image-slice: 1;
	border-image-source: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
	transition: 0.3s ease;
}

.cta-btn-slide-ANTARIX::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	/* border thickness */
	background: linear-gradient(to right, #94D9FB, rgba(255, 255, 255, 0));
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}

.cta-btn-slide-ANTARIX:hover {
	background: #044586;
}

/* Backgrounds */
.section-blue {
	height: 700px;
	/* background: linear-gradient(rgba(11, 20, 103, 0.38) 0%, rgba(15, 15, 15, 0.71) 100%); */
	background: white;

	/* box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 30px 70px 41px; */
}

.section-purple {
	height: 700px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(25, 25, 50, 0.5) 100%), url("./assets/img/gal2.jpg") center/cover no-repeat;
	/* background: linear-gradient(180deg, #660044 0%, #220011 100%); */
}


.sdk-visual {
	margin-bottom: 40px;
	perspective: 1000px;
}

.sdk-visual img {
	width: 100%;
	max-width: 800px;
	transform: rotateY(-15deg) rotateX(5deg);
	object-fit: contain;
	/* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); */
	transition: transform 0.6s ease;
}

.sdk-visual img:hover {
	transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

@media (min-width: 1200px) {
	.layout-container {
		max-width: 1100px;
		gap: 70px;
	}

	.img1 {
		/*display: flex;
				align-items: center;
				width: 660px;
				height: 514px;
				 left: 267px; 
				top: 33%;*/



		display: flex;
		align-items: center;
		width: 41%;
		height: 66%;
		/* left: 267px; */
		top: 34%;

	}


}

/* @media (max-width: 1200px) {

			.img1 {
				left: 317px;
				width: 546px;
				height: 440px;
			}


		} */

@media (max-width: 1100px) {

	/* All images stop being absolute */
	.img,
	.img1 {
		position: relative !important;
		width: 130% !important;
		height: auto !important;
		top: -85px !important;
		left: -80px !important;
		right: 0 !important;
		bottom: 0 !important;
		transform: none !important;
		margin-bottom: 20px;
	}

	/* Image inside remain full */
	.img img {
		object-fit: contain !important;
		width: 100% !important;
		height: auto !important;
	}

	/* Layout becomes vertical */
	.layout-container {
		display: flex;
		flex-direction: column;
		gap: 25px;
		width: 100%;
		max-width: 500px;
		margin: auto;
	}

	.slide-section {
		height: auto !important;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}


@media (max-width: 1024px) {
	.slide-content-ANTARIX h1 {
		font-size: 2.2rem;
	}

	.slide-content h1 {
		font-size: 2.2rem;
	}

	.slide-section {
		height: auto;
		padding: 3rem 1.5rem;
	}

	.img {
		position: relative;
		width: 77% !important;
		height: auto !important;
		transform: none !important;
		left: 82px !important;
		right: 0 !important;
		top: -35px !important;
		bottom: 0 !important;
		margin-bottom: 20px;
	}

	.layout-container {
		display: flex;
		flex-direction: column;
		gap: 25px;
		max-width: 90%;
	}
}

@media (max-width: 768px) {
	.slide-content-ANTARIX h1 {
		font-size: 2.2rem;
	}

	.slide-content h1 {
		font-size: 2.2rem;
	}

	.slide-content-ANTARIX p {
		font-size: 1rem;
	}

	.slide-content p {
		font-size: 1rem;
	}

	.slide-section {
		padding: 2rem 1rem;
		height: auto !important;
	}

	.layout-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: 100%;
		margin: auto;
	}

	.img {
		width: 100% !important;
		height: auto !important;
		position: relative !important;
	}

	.img img {
		object-fit: contain;
		border-radius: 10px;
	}

	.img1 {
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		top: -20px !important;
		left: 0 !important;
		right: 0 !important;
		transform: none !important;
	}

	/* Content text center */
	.slide-content,
	.slide-content-ANTARIX {
		text-align: center;
		margin-top: 20px;
	}
}

@media (max-width: 480px) {

	.img {
		width: 100% !important;
		height: auto !important;
		position: relative !important;
	}

	.img img {
		object-fit: contain;
		border-radius: 10px;
	}

	.img1 {
		position: relative !important;
		width: 126% !important;
		height: auto !important;
		top: -10px !important;
		left: -40px !important;
		right: 0 !important;
		transform: none !important;
	}

	.slide-content h1,
	.slide-content-ANTARIX h1 {
		font-size: 1.8rem;
	}

	.slide-content p,
	.slide-content-ANTARIX p {
		font-size: 1rem;
	}

	.cta-btn-slide,
	.cta-btn-slide-ANTARIX {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
}



/*    paternship     */


.infinity-section {
	width: 100%;
	padding: 30px 0;
	background: #0d0d0d;
	overflow: hidden;
	position: relative;
}

.infinity-title {
	text-align: center;
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 30px;
	color: #fff;
}

/* each row wrapper */
.infinity-row {
	width: 100%;
	overflow: hidden;
	margin: 20px 0;
}

/* sliding track */
.infinity-track {
	display: flex;
	gap: 175px;
	animation: slide-left 35s linear infinite;
}

/* second row reverse */
.row-2 .infinity-track {
	animation: slide-right 35s linear infinite;
}

/* make images same size circle */
.infinity-track img {
	width: auto;
	height: 85px;
	object-fit: cover;
	border-radius: 50%;
	transition: 0.3s ease;
	/* filter: brightness(0) saturate(0) invert(0.6); */


}

/* hover color effect */
.infinity-track img:hover {
	filter: grayscale(0%);
	transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes slide-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes slide-right {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0%);
	}
}


@media (max-width: 1200px) {
	.infinity-track img {
		height: 55px;
		gap: 50px;
	}
}

@media (max-width: 992px) {
	.infinity-track {
		gap: 40px;
		animation-duration: 20s;
	}

	.infinity-track img {
		height: 50px;
	}
}

@media (max-width: 768px) {
	.infinity-title {
		font-size: 2.2rem;
	}

	.infinity-track {
		gap: 30px;
	}

	.infinity-track img {
		height: 45px;
	}
}

@media (max-width: 576px) {
	.infinity-title {
		font-size: 1.6rem;
	}

	.infinity-track {
		gap: 25px;
		animation-duration: 16s;
	}

	.infinity-track img {
		height: 40px;
	}
}

@media (max-width: 400px) {
	.infinity-title {
		font-size: 1.6rem;
	}

	.infinity-track img {
		height: 35px;
	}
}

/*******************pop pop ************/

.contact-popup {
	overflow-x: hidden;
	width: 100%;
	height: 100vh;
	position: fixed;
	position: fixed;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(25, 25, 50, 0.8) 100%), url('../Image/home/camera2.webp') center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s ease;
	z-index: 9999;
	overflow-y: auto;
	/* popup scroll only */
}

.contact-popup.show {
	visibility: visible;
	opacity: 1;
}

body.popup-open {
	overflow: hidden;
	/* background page scroll lock */
}

.popup-content {
	max-height: 95vh;
	padding-right: 3px;
	/* prevent scrollbar overlap */
}

.two-col-popup {
	display: grid;
	grid-template-columns: 0.9fr 1.6fr;
	border-radius: 18px;
	background: #ffffff24;
	padding: 40px;
	width: 90%;
	max-width: 1150px;
	gap: 40px;
}

.popup-left {
	color: #fff;
}

.popup-left h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.popup-left p {
	line-height: 1.5;
	margin-bottom: 25px;
}

.contact-animate-box {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 25px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	animation: fadeBounce 2s infinite ease-in-out;
}

.contact-animate-icon {
	font-size: 140px;
	animation: ring 1.3s infinite;
}

@keyframes fadeBounce {

	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(-6px);
		opacity: 0.8;
	}
}

@keyframes ring {
	0% {
		transform: rotate(0);
	}

	20% {
		transform: rotate(-15deg);
	}

	40% {
		transform: rotate(15deg);
	}

	60% {
		transform: rotate(-15deg);
	}

	80% {
		transform: rotate(15deg);
	}

	100% {
		transform: rotate(0);
	}
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	color: #ffffff;
	font-weight: 600;
	border-radius: 40px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: 0.3s;
}

.contact-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-numbers p {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	margin: 10px 0;
}

.flag-icon {
	width: 35px;
	height: 24px;
	object-fit: cover;
	border-radius: 3px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.contact-numbers p:hover {
	transform: translateX(3px);
	transition: 0.3s ease;
	cursor: pointer;
}

.contact-icons {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.icon-circle {
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #0b3243, #172d9d);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: 0.3s ease;
}

.icon-circle:hover {
	transform: scale(1.15);
	background: linear-gradient(135deg, #172d9d, #094b68);
}

.popup-right {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
}

.form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.form-group.full {
	grid-column: 1 / 3;
}

.popup-form input,
.popup-form textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 10px;
	border: 1px solid #ccc;
	font-size: 15px;
}

.popup-form textarea {
	min-height: 130px;
	resize: vertical;
}

.success-message {
	display: none;
	background: #e5ffe9;
	color: #0b7a1b;
	padding: 12px 18px;
	border-radius: 8px;
	margin-top: 12px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	border-left: 4px solid #1f9d32;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.4s ease;
}

.success-message.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.success-message i {
	margin-right: 6px;
	font-size: 18px;
	color: #1f9d32;
}

.submit-btn {
	background: #3f2e15a6;
	padding: 12px 20px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 15px;
	margin-top: 10px;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background: #192cff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(21, 29, 114, 0.35);
}

.close-popup {
	position: absolute;
	right: 40px;
	top: 40px;
	font-size: 28px;
	color: white;
	cursor: pointer;
}

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
	.two-col-popup {
		/* display: flex; */
		flex-direction: column;
		width: 95%;
		padding: 25px;
		gap: 25px;
	}

	.popup-left h2 {
		font-size: 28px;
	}

	.popup-left p {
		font-size: 15px;
	}

	.contact-animate-icon {
		font-size: 110px;
	}

	.contact-animate-box {
		font-size: 16px;
		gap: 10px;
	}

	.popup-right {
		padding: 25px;
	}

	.form-row {
		/* flex-direction: column; */
		gap: 10px;
	}

	.close-popup {
		right: 30px;
		top: 30px;
		font-size: 30px;
	}

	.contact-numbers p {
		font-size: 16px;
	}

	.flag-icon {
		width: 30px;
		height: 20px;
	}

	.icon-circle {
		width: 38px;
		height: 38px;
		font-size: 17px;
	}

	.submit-btn {
		font-size: 14px;
		padding: 10px 18px;
	}
}

/* ---------- MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
	.two-col-popup {
		display: flex;
		padding: 20px;
		border-radius: 14px;
		width: 95%;
		gap: 18px;
	}

	/* .popup-left{
	padding: 55px;
  } */

	.popup-left h2 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.popup-left p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.contact-animate-icon {
		font-size: 85px;
	}

	.contact-animate-box {
		font-size: 15px;
		gap: 10px;
	}

	.contact-numbers p {
		font-size: 14px;
		gap: 8px;
	}

	.flag-icon {
		width: 28px;
		height: 18px;
	}

	.icon-circle {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.popup-right {
		padding: 18px;
		border-radius: 12px;
	}

	.popup-form input,
	.popup-form textarea {
		padding: 12px 14px;
		font-size: 14px;
	}

	.submit-btn {
		padding: 10px 16px;
		font-size: 14px;
	}

	.close-popup {
		right: 22px;
		top: 40px;
		font-size: 26px;
	}
}


/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
	.two-col-popup {
		padding: 18px;
		gap: 15px;
	}

	.popup-left h2 {
		font-size: 20px;
	}

	.popup-left p {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.contact-animate-icon {
		font-size: 65px;
	}

	.contact-animate-box {
		font-size: 14px;
		gap: 8px;
	}

	.contact-numbers p {
		font-size: 13px;
		gap: 6px;
	}

	.flag-icon {
		width: 26px;
		height: 16px;
	}

	.icon-circle {
		width: 32px;
		height: 32px;
		font-size: 15px;
	}

	.popup-right {
		padding: 15px;
	}

	.popup-form input,
	.popup-form textarea {
		padding: 10px 12px;
		font-size: 13px;
	}

	.submit-btn {
		padding: 9px 14px;
		font-size: 13px;
	}

	.close-popup {
		right: 18px;
		top: 18px;
		font-size: 24px;
	}
}

/* ---------- VERY SMALL MOBILE (max-width: 400px) ---------- */
@media (max-width: 400px) {
	.two-col-popup {
		padding: 15px;
		gap: 12px;
	}

	.popup-left h2 {
		font-size: 18px;
	}

	.popup-left p {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.contact-animate-icon {
		font-size: 60px;
	}

	.contact-animate-box {
		font-size: 13px;
		gap: 6px;
	}

	.contact-numbers p {
		font-size: 12px;
		gap: 5px;
	}

	.flag-icon {
		width: 24px;
		height: 15px;
	}

	.icon-circle {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}

	.popup-right {
		padding: 12px;
	}

	.popup-form input,
	.popup-form textarea {
		padding: 9px 11px;
		font-size: 12px;
	}

	.submit-btn {
		padding: 8px 12px;
		font-size: 12px;
	}

	.close-popup {
		right: 15px;
		top: 15px;
		font-size: 22px;
	}
}


/* ---------- VERY SMALL MOBILE (max-width: 380px) ---------- */
@media (max-width: 380px) {
	.two-col-popup {
		display: flex;
		padding: 20px;
		border-radius: 14px;
		width: 95%;
		gap: 18px;
	}

	.popup-right {
		padding: 15px;
	}

	.form-row {
		margin-bottom: 0px;
	}

	.popup-left h2 {
		font-size: 20px;
	}

	.popup-form textarea {
		padding: 12px 14px;
		font-size: 14px;
	}

	.contact-animate-icon {
		font-size: 70px;
	}

	.icon-circle {
		width: 34px;
		height: 34px;
	}
}

/* ---------- EXTRA SMALL MOBILE (max-width: 375px) ---------- */
@media (max-width: 375px) {
	.two-col-popup {
		padding: 12px;
		gap: 10px;
	}

	.popup-left h2 {
		font-size: 16px;
	}

	.popup-left p {
		font-size: 11px;
		margin-bottom: 8px;
	}

	.contact-animate-icon {
		font-size: 55px;
	}

	.contact-animate-box {
		font-size: 12px;
		gap: 5px;
	}

	.contact-numbers p {
		font-size: 11px;
		gap: 4px;
	}

	.flag-icon {
		width: 22px;
		height: 14px;
	}

	.icon-circle {
		width: 28px;
		height: 28px;
		font-size: 13px;
	}

	.popup-right {
		padding: 10px;
	}

	.popup-form input,
	.popup-form textarea {
		padding: 8px 10px;
		font-size: 11px;
	}

	.submit-btn {
		padding: 7px 10px;
		font-size: 11px;
	}

	.close-popup {
		right: 12px;
		top: 12px;
		font-size: 20px;
	}
}




.snap-section {
	min-height: 100vh;
}






/*************************about page *******************************/

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-lg-6,
.col-md-6,
.col-xl-3,
.col-sm-6,
.col-12 {
	padding: 0 15px;
}

@media (min-width: 992px) {
	.col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 768px) {
	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 576px) {
	.col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 1200px) {
	.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

/* Section Styles */
.section {
	padding: 60px 0;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-100 {
	/* background-image: url("./Image/mission-bg5.jpg"); */
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(25, 25, 50, 0.5) 100%), url("../Image/about/choosebg2.jpg") center/cover no-repeat;
	;
	/* margin-bottom: 100px; */
}

.mt-60 {
	margin-top: 60px;
}

/* Typography */
h2 {
	/* text-align: center; */
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 20px;
}

h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

h5 {
	font-family: "DM Sans", sans-serif;
	text-align: center;
	font-size: 35px;
	margin-bottom: 10px;
}

/* p {
            font-family: "DM Sans", sans-serif;
            margin-bottom: 30px;
        } */

.white-text {
	margin-left: -260px;
	left: 50px;
	/* margin-right: -28px; */
	font-size: 50px;
	color: #ffffff;
}

.white-text-1 {
	font-family: "DM Sans", sans-serif;
	opacity: 20%;
	margin-left: -260px;
	left: 50px;
	/* margin-right: -28px; */
	font-size: 50px;
	color: #ffffff;
}

.lightBlue {
	color: rgba(30, 144, 255, 1);


}

.yellowPurpelGradient {
	background: linear-gradient(90deg, #0EA5E9, #0012b1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.divider {
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #efd625, #978921);
	margin: 0 auto 2rem;
	border-radius: 2px;
	animation: expandWidth 1.2s ease-out 0.6s both;
}

@keyframes expandWidth {
	from {
		width: 0;
	}

	to {
		width: 100px;
	}
}

/* Hero Section */
.aboutpage-hero {
	height: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.aboutpage-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.aboutpage-hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../image/contect.jpg');
	background-size: cover;
	background-position: center;
	filter: brightness(0.7);
	z-index: 1;
}

.aboutpage-network-lines {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.23) 0%, rgba(25, 25, 50, 0.5) 100%);
	/* background-image: 
                radial-gradient(circle at 20% 50%, rgba(74, 107, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%); */
	/* animation: pulse 8s infinite alternate; */
	z-index: 2;
}

/* @keyframes pulse {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.05); }
        } */

.aboutpage-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 800px;
	padding: 0 20px;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.aboutpage-hero h1 {
	    font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	background: white;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: none;
}

.aboutpage-hero h2 {
	color: white;
}

.aboutpage-hero p {
	font-family: "DM Sans", sans-serif;
	font-size: 1.25rem;
	color: #ffffff;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}


@media (min-width: 1600px) {
	.aboutpage-hero {
		height: 100vh;
	}

	.aboutpage-hero h1 {
		font-size: 3rem;
	}

	.aboutpage-hero p {
		font-size: 1.4rem;
	}
}



@media (max-width: 1400px) {

	.aboutpage-hero {
		height: 100vh;
	}

	.aboutpage-hero h1 {
		font-size: 3rem;
	}

	.aboutpage-hero p {
		font-size: 1.2rem;
	}
}


@media (max-width: 1024px) {

	.aboutpage-hero {
		height: 100vh;
	}

	h2 {
		font-size: 1.7rem;
	}

	.aboutpage-hero h1 {
		font-size: 3rem;
	}

	.white-text,
	.white-text-1 {
		margin-left: 0;
		text-align: center;
	}
}



@media (max-width: 768px) {



	h2 {
		font-size: 1.6rem;
	}

	.white-text,
	.white-text-1 {
		margin-left: 0;
		font-size: 40px;
		text-align: center;
	}

	.aboutpage-hero {
		height: 100vh;
	}

	.aboutpage-hero h1 {
		font-size: 2.8rem;
	}

	.aboutpage-hero p {
		font-size: 1.1rem;
	}

	.section {
		padding: 40px 0;
	}
}



@media (max-width: 576px) {


	h2 {
		font-size: 1.4rem;
	}

	h5 {
		font-size: 26px;
	}

	.white-text,
	.white-text-1 {
		margin-left: 0;
		font-size: 30px;
		text-align: center;
	}

	.aboutpage-hero {
		height: 100vh;
		padding: 20px;
	}

	.aboutpage-hero h1 {
		font-size: 2.2rem;
	}

	.aboutpage-hero p {
		font-size: 1rem;
		padding: 0 10px;
	}

	.section {
		padding: 30px 0;
	}
}



@media (max-width: 400px) {


	/* Headings */
	h2 {
		font-size: 1.2rem;
		text-align: center;
	}

	h5 {
		font-size: 22px;
	}

	/* White background large text */
	.white-text,
	.white-text-1 {
		margin-left: 0;
		font-size: 24px;
		text-align: center;
	}

	/* Section spacing */
	.section {
		padding: 20px 0;
	}

	/* Hero Section */
	.aboutpage-hero {
		height: 100vh;
		padding: 10px;
	}

	.aboutpage-hero h1 {
		font-size: 1.8rem;
		line-height: 1.2;
	}

	.aboutpage-hero p {
		font-size: 0.9rem;
		max-width: 90%;
	}

	/* Reduce divider width */
	.divider {
		width: 60px;
	}

	/* Optional: reduce padding inside content areas */
	.content-wrapper {
		padding: 15px;
	}
}





/* === Base Styles (Desktop) === */
.container-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1590px;
	margin: 0 auto;
	padding: 80px 40px;
	align-items: center;
}

.left-section {
	position: relative;
}

.right-section {
	color: white;
	padding-left: 40px;
}

.about-tag {
	color: #3f2e15;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-tag::after {
	content: '';
	width: 60px;
	height: 2px;
	background: #3f2e15;
}

h1 {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 30px;
	background: #ceb798;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.description {
	font-size: 22px;
	line-height: 1.8;
	color: #6e583f;
	margin-bottom: 50px;
}

.feature {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.feature-icon img {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 24px;
}

.feature h3 {
	color: #ceb798;
	font-size: 1.5rem;
	margin-bottom: 12px;
	font-weight: 500;
}

.feature p {
	font-size: 1.1rem;
	color: #6e583f;
	line-height: 1.7;
}

.cta-button {
	position: absolute;
	overflow: hidden;
	font-size: 1.1rem;
	padding: 12px 28px;
	border-radius: 40px;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, var(--saffron-blue), var(--saffron-purple));
	animation: fadeInUp 1s ease 0.4s both;
	opacity: 0;
	transform: translateY(50px);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
	cursor: pointer;
	transition: 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.cta-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.12);
	border-radius: inherit;
	transform: translateX(-100%);
	transition: 0.6s ease;
	z-index: 0;
}

.cta-button:hover::before {
	transform: translateX(0);
}

.cta-button::after {
	content: 'â†’';
	font-size: 20px;
	margin-left: 8px;
}

/* Image Grid */
.image-grid {
	margin-bottom: 90px;
	position: relative;
	width: 100%;
	animation: floatGrid 4s ease-in-out infinite;
}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	position: relative;
}

.image-box {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	aspect-ratio: 1;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-box:hover {
	transform: scale(1.05) rotate(2deg);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.image-box:hover img {
	transform: scale(1.1);
}

.image-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ceb798, #ceb79870);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.image-box:hover::before {
	opacity: 1;
}

/* Decorative elements */
.star-decoration {
	position: absolute;
	color: #6e583f;
	font-size: 30px;
	z-index: 10;
	animation: twinkle 2s ease-in-out infinite;
}

/* Decorative elements */
.star-decoration {
	position: absolute;
	color: #6e583f;
	font-size: 30px;
	z-index: 10;
	animation: twinkle 2s ease-in-out infinite;

}

@keyframes twinkle {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}

.star-1 {
	bottom: 40px;
	left: -40px;
	animation-delay: 0s;

}

.star-2 {
	bottom: 10px;
	left: -20px;
	font-size: 20px;
	animation-delay: 0.5s;

}

.star-3 {
	bottom: -10px;
	left: -50px;
	font-size: 25px;
	animation-delay: 1s;

}

/* Center badge */
.center-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, #6e583f, #ceb798);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	box-shadow: 0 8px 25px rgba(65, 105, 225, 0.5);
	border: 4px solid white;
}

.center-badge::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px dashed rgba(255, 255, 255, 0.5);
	animation: rotateBadge 15s linear infinite;
}

.badge-icon {
	color: white;
	font-size: 32px;
	z-index: 1;
	animation: spin 3s ease-in-out infinite;
}


/*****************vision-mission-core*********************/

.scroll-stack {

	background-size: cover;
	position: relative;
	height: 300vh;
	padding: 20vh 0;
	/* ADD THIS â€“ spacing for cards */

	/* enough scroll space */
}

.about-card {
	margin-bottom: 70vh;
	position: sticky;
	top: 20vh;
	width: 60%;
	margin: 0 auto;
	height: 70vh;
	padding: 2rem;
	border-radius: 20px;
	font-size: 2rem;
	color: white;
	text-align: center;
	transform: scale(0.9);
	backdrop-filter: blur(8px);
	transition: all 0.5s ease;
	opacity: 0.35;
	/* blur look improves */
	filter: brightness(0.6);
	z-index: 2;
	/* dark + blur = muted card */
}

/* WHEN ACTIVE */
.about-card.active {
	transform: scale(1.05);
	backdrop-filter: none;
	opacity: 1;
	filter: brightness(1);
	/* remove darkness */
	z-index: 10;
	margin-bottom: 3vh;
}




.about-card-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.about-card-image img {
	width: 100%;
	max-width: 341px;

	border-radius: 12px;
}

.about-card-image-mission img {
	width: 100%;
	max-width: 460px;
	border-radius: 12px;
}

.about-card-image-goal img {
	width: 100%;
	max-width: 316px;
	border-radius: 12px;
}

.goals-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 2fr 1fr;
	/* Row 1 layout */
}

/* Top row â€” large + square */
.cardlarge {
	border-radius: 12px;
	background: linear-gradient(#0a114c 0%, rgba(15, 15, 15, 0.71) 100%);

	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 15px 60px 15px;
	height: 180px;
}

.square {
	border-radius: 12px;
	background: linear-gradient(#0a114c 0%, rgba(15, 15, 15, 0.71) 100%);

	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 15px 60px 15px;
	height: 180px;
}

/* Row 2 â€” 3 equal squares */
.goals-grid>.square:nth-child(3),
.goals-grid>.square:nth-child(4),
.goals-grid>.square:nth-child(5) {
	grid-column: span 1;
}

/* REWRITE GRID AFTER FIRST ROW */
.goals-grid>.square:nth-child(3) {
	grid-column: 1;
	/* Square 1 â†’ start new row */
}

.goals-grid>.square:nth-child(4) {
	grid-column: 2;
	/* Square 2 */
}

.goals-grid>.square:nth-child(5) {
	grid-column: 3;
	/* Square 3 */
}

/* Create 3 columns only for 2nd row */
.goals-grid {
	grid-auto-flow: row;
}

.goals-grid {
	grid-template-columns: 1fr 1fr 1fr;
	/* 3 columns */
}

/* Make row 1 perfect: large should span 2 columns */
.cardlarge {
	grid-column: 1 / span 2;
}



.about-card-text {
	background: linear-gradient(rgba(28, 28, 28, 0.52) 0%, rgba(15, 15, 15, 0.71) 100%);
	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 15px 60px 15px;
	padding: 1.5rem;
	border-radius: 12px;
	color: white;
	max-width: 496px;
	font-size: 1.2rem;
	margin-top: -49px;
}

.about-card-text h2 {
	font-size: 1.9rem;
	font-weight: 400;
	margin-bottom: 20px;
}

.about-card-text-mission {
	background: linear-gradient(rgba(28, 28, 28, 0.52) 0%, rgba(15, 15, 15, 0.71) 100%);
	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 15px 60px 15px;
	padding: 1.5rem;
	border-radius: 12px;
	color: white;
	max-width: 480px;
	font-size: 1.2rem;
	margin-top: 55px;
}

.about-card-text-mission h2 {
	font-size: 1.9rem;
	font-weight: 400;
	margin-bottom: 20px;
}

.about-card-text-goal {
	background: linear-gradient(rgba(28, 28, 28, 0.52) 0%, rgba(15, 15, 15, 0.71) 100%);
	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 15px 60px 15px;
	padding: 1.5rem;
	border-radius: 12px;
	color: white;
	max-width: 533px;
	font-size: 1.2rem;
	margin-top: -10px;
}

.about-card-text-goal h2 {
	font-size: 1.9rem;
	font-weight: 400;
	margin-bottom: 20px;
}



/* Alternate layout */
.about-card-content .left {
	order: 1;
}

.about-card-content .right {
	order: 2;
}

.about-card.vision .about-card-content .left {
	order: 1;
}

.about-card.vision .about-card-content .right {
	order: 1;
}


/* Unique colors */
.about-card.mission {
	background: linear-gradient(to right, rgb(58 56 60 / 97%),
			/* blue with transparency */
			rgb(0 70 126));
	z-index: 3;
}

.about-card.vision {
	background: linear-gradient(to right, rgb(0 70 126),
			/* green with transparency */
			rgb(58 56 60 / 97%));
	z-index: 10;
}

.about-card.goals {
	background: linear-gradient(to right, rgb(58 56 60 / 97%),
			/* blue with transparency */
			rgb(0 70 126));
	z-index: 10;
}



/* Icon */
.cardlarge .core-icon {
	width: 39px;
	height: 39px;
	margin-top: 10px;
}

/* Title */
.cardlarge h3 {
	font-weight: 400;
	font-size: 1.3rem;
	color: white;
	margin-bottom: 8px;
}

/* Sub text */
.cardlarge p {
	font-size: 0.8rem;
	color: #b9b9b9;
	line-height: 1.3;
}

/* Icon */
.square .core-icon {
	width: 39px;
	height: 39px;
	margin-top: 10px;
}

/* Title */
.square h3 {
	font-weight: 400;
	font-size: 1.2rem;
	color: white;
	margin-bottom: 8px;
}

/* Sub text */
.square p {
	font-size: 0.8rem;
	color: #b9b9b9;
	line-height: 1.3;
}


@media (max-width: 1200px) {

	.about-card {
		width: 75%;
		height: 75vh;
	}

	.about-card-text,
	.about-card-text-mission,
	.about-card-text-goal {
		max-width: 420px;
		font-size: 1.05rem;
	}

	.about-card-content {
		gap: 1.5rem;
	}

	.about-card-image img {
		max-width: 280px;
	}
}




@media (max-width: 1024px) {

	/* ABOUT MAIN GRID */
	.container-2 {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 60px 20px;
		gap: 40px;
	}

	.right-section {
		padding-left: 0;
	}

	h1 {
		font-size: 2.4rem;
	}

	.description {
		font-size: 18px;
	}

	/* FEATURES */
	.feature {
		flex-direction: column;
		text-align: center;
	}

	.feature-icon img {
		margin: 0 auto;
	}

	/* IMAGE GRID */
	.image-grid {
		max-width: 420px;
		margin: 0 auto 60px;
	}

	.grid-container {
		gap: 15px;
	}

	.image-box {
		border-radius: 25px;
	}

	.about-tag {
		font-size: 12px;
		letter-spacing: 1.5px;
		justify-content: center;
		margin-bottom: 18px;
	}

	.about-tag::after {
		width: 45px;
	}

	.cta-button {
		font-size: 1rem;
		padding: 10px 24px;
		border-radius: 35px;
	}

	.cta-button::after {
		font-size: 18px;
		margin-left: 6px;
	}

	/* SCROLL CARDS */
	.about-card {
		width: 85%;
		height: auto;
		padding: 1.5rem;
	}

	.about-card-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.about-card-image img {
		max-width: 260px;
	}

	.about-card-text,
	.about-card-text-mission,
	.about-card-text-goal {
		margin-top: 10px !important;
		max-width: 100%;
		text-align: center;
	}

	/* GOALS GRID â€“ TABLET */
	.goals-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.cardlarge {
		grid-column: span 2;
		height: auto;
		padding: 20px;
		text-align: center;
	}

	.square {
		height: auto;
		padding: 20px;
		text-align: center;
	}
}


@media (max-width: 992px) {

	.scroll-stack {
		height: 260vh;
		padding: 15vh 0;
	}

	.about-card {
		width: 85%;
		height: auto;
		padding: 2rem;
		top: 15vh;
	}

	.about-card-content {
		flex-direction: column;
		text-align: center;
	}

	.about-card-image,
	.about-card-image-mission,
	.about-card-image-goal {
		margin: 0 auto;
		text-align: center;
	}

	.about-card-image img,
	.about-card-image-mission img,
	.about-card-image-goal img {
		max-width: 70%;
	}

	.about-card-text,
	.about-card-text-mission,
	.about-card-text-goal {
		margin: 20px auto 0;
		max-width: 100%;
	}

}


@media (max-width: 768px) {

	.scroll-stack {
		height: 325vh;
	}

	.about-card {
		width: 90%;
		height: auto;
		padding: 1.5rem;
		top: 12vh;
		transform: scale(0.95);
	}

	.about-card.active {
		transform: scale(1);
	}

	.about-card-content {
		gap: 1.2rem;
	}

	.about-card h2 {
		font-size: 1.6rem;
	}

	.about-card-text,
	.about-card-text-mission,
	.about-card-text-goal {
		font-size: 1rem;
	}

	.goals-grid {

		display: flex !important;
		flex-direction: column !important;
		gap: 15px !important;

		/* remove grid behavior completely */
		grid-template-columns: none !important;
		grid-template-rows: none !important;
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.cardlarge {
		grid-column: span 2;
	}
}



@media (max-width: 700px) {

	/* ABOUT SECTION */
	.container-2 {
		padding: 40px 15px;
		gap: 20px;
	}

	h1 {
		font-size: 2rem;
	}

	.description {
		font-size: 16px;
		line-height: 1.6;
	}

	/* FEATURES */
	.feature {
		flex-direction: column;
		gap: 10px;
	}

	.feature h3 {
		font-size: 1.2rem;
	}

	.feature p {
		font-size: 1rem;
	}


	.about-tag {
		font-size: 11px;
		gap: 8px;
		letter-spacing: 1px;
		justify-content: center;
		margin-bottom: 15px;
	}

	.about-tag::after {
		width: 35px;
		height: 2px;
	}


	.cta-button {
		position: relative;
		font-size: 0.95rem;
		padding: 10px 22px;
		border-radius: 32px;
		margin: 0 auto;
		transform: none !important;
		/* remove fade translate issue */
	}

	.cta-button::after {
		font-size: 16px;
	}

	/* CTA Button */
	.cta-button {
		position: relative;
		font-size: 1rem;
		padding: 10px 22px;
		margin-top: 20px;
		transform: none !important;
	}

	/* IMAGE GRID MOBILE */
	.image-grid {
		max-width: 90%;
		margin-bottom: 40px;
	}

	.grid-container {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.image-box {
		border-radius: 18px;
		aspect-ratio: 1;
	}

	.image-box img {
		object-fit: cover;
	}


}


@media (max-width: 480px) {

	h1 {
		font-size: 1.7rem;
	}

	.description {
		font-size: 14px;
	}

	.about-tag {
		font-size: 10px;
		gap: 6px;
		letter-spacing: 0.8px;
		margin-bottom: 12px;
	}

	.about-tag::after {
		width: 28px;
	}

	.cta-button {
		font-size: 0.9rem;
		padding: 9px 20px;
		border-radius: 30px;
	}

	.cta-button::after {
		font-size: 15px;
	}

	.image-box {
		border-radius: 14px;
	}


}










/*********************why choose us *************************/


.container-why {

	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.homeContentWrapper {
	text-align: center;
	margin-bottom: 100px;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.sub-title {
	font-size: 13px;
	color: #a37f55;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
}



.h2-why {
	font-size: 3rem;
	font-weight: 500;
	color: #ffffff;
	max-width: 1140px;
	margin: 0 auto;
	line-height: 1.3;

}

.descr {
	color: gray;
	font-size: 0.9rem;
	text-align: center;
	margin-bottom: 20px;
}

.circular-layout {
	position: relative;
	width: 800px;
	height: 640px;
	margin: 0 auto;
	opacity: 0;
	animation: fadeIn 1s ease 0.6s forwards;
}

.central-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: rgb(17, 9, 110);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 500;
	box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
	z-index: 10;
	animation: pulse 2s infinite alternate;
	text-align: center;
	padding: 20px;
}

.crm-module {
	/* backdrop-filter: blur(15px); */
	background: linear-gradient(rgb(17 26 113 / 52%) 0%, rgb(79 79 79 / 71%) 100%);
	position: absolute;
	width: 160px;
	height: 160px;
	/* background: #ffffff33; */
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 29px -18px inset, rgba(0, 0, 0, 0.55) 0px 30px 70px 41px;
	transition: all 0.3s ease;
	opacity: 0;
	animation: fadeInScale 0.8s ease forwards;
	cursor: pointer;
}

.crm-module:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crm-module .icon {
	margin-top: 20px;

	font-size: 2rem;
	color: #4a6cf7;
	margin-bottom: -5px;
}

.crm-module .title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #fdfdfd;
	margin-bottom: 8px;
	text-align: center;
}



/* Positioning modules in a circle */
.module-1 {
	padding: 20px;
	width: 400px;
	top: -15px;
	left: 61%;
	transform: translateX(-50%);
	animation-delay: 0.8s;
}


.module-2 {
	width: 400px;
	top: 37%;
	right: -230px;
	animation-delay: 1.0s;
}

.module-3 {
	width: 400px;
	bottom: -6%;
	right: -67px;
	animation-delay: 1.2s;
}

.module-4 {
	width: 400px;
	bottom: -34px;
	left: -6%;
	transform: translateX(-50%);
	animation-delay: 1.4s;
}

.module-5 {
	width: 400px;
	bottom: 36%;
	left: -230px;
	animation-delay: 1.6s;
}

.module-6 {
	width: 400px;
	top: -2%;
	left: -79px;
	animation-delay: 1.8s;
}

/* Connecting lines */
.connector {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	border: 2px dashed rgb(255 255 255 / 50%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulse {
	from {
		box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
	}

	to {
		box-shadow: 0 15px 40px rgba(74, 108, 247, 0.5);
	}
}

/* ======== TABLET (max-width: 992px) ======== */
@media (max-width: 992px) {


	.h2-why {
		font-size: 2.3rem;
		line-height: 1.3;
	}

	.sub-title {
		font-size: 12px;
		letter-spacing: 0.5px;
	}

	.descr {
		font-size: 0.9rem;
		max-width: 600px;
		margin: 0 auto 20px;
	}

	.homeContentWrapper {
		margin-bottom: 60px;
	}

	.circular-layout {
		width: 100%;
		height: auto;
		padding-top: 150px;
	}

	.central-circle {
		width: 160px;
		height: 160px;
		font-size: 1.2rem;
		padding: 15px;
	}

	.crm-module {
		width: 220px !important;
		height: auto;
		padding: 15px;
	}

	/* Re-position modules for tablet */
	/* 2 Column Effect (3 modules left + 3 right) */
	.module-1 {
		top: 0%;
		left: 50%;
		transform: translateX(-50%);
	}

	.module-2 {
		top: 25%;
		right: 10%;
		left: auto;
	}

	.module-3 {
		top: 55%;
		right: 10%;
	}

	.module-4 {
		top: 80%;
		left: 50%;
		transform: translateX(-50%);
	}

	.module-5 {
		top: 55%;
		left: 10%;
	}

	.module-6 {
		top: 25%;
		left: 10%;
	}

	.crm-module {
		width: 230px !important;
		height: auto;
	}



	.connector {
		width: 240px;
		height: 240px;
	}
}

/* ======== MOBILE (max-width: 768px) ======== */
@media (max-width: 768px) {


	.h2-why {
		font-size: 1.8rem;
		padding: 0 10px;
	}

	.sub-title {
		margin-top: 800px;
		font-size: 11px;
	}

	.descr {
		font-size: 0.85rem;
		padding: 0 15px;
	}

	.homeContentWrapper {
		margin-bottom: 40px;
	}

	.circular-layout {
		height: auto;
		padding-top: 0px;
	}

	.central-circle {
		display: none;
		width: 140px;
		height: 140px;
		font-size: 1rem;
		padding: 10px;
	}

	/* Convert all modules into vertical layout */
	.crm-module {
		position: relative;
		width: 100% !important;
		max-width: 330px;
		margin: 20px auto;
		left: 0 !important;
		right: 0 !important;
		top: unset !important;
		bottom: unset !important;
		transform: none !important;
	}

	/* Remove all absolute positions */
	.module-1,
	.module-2,
	.module-3,
	.module-4,
	.module-5,
	.module-6 {
		position: relative !important;
	}

	.connector {
		display: none;
		/* dotted circle hide on mobile */
	}

}

/* ======== VERY SMALL MOBILE (max-width: 480px) ======== */
@media (max-width: 480px) {

	.h2-why {
		font-size: 1.5rem;
		line-height: 1.2;
	}

	.sub-title {
		font-size: 10px;
	}

	.descr {
		font-size: 0.8rem;
	}

	.central-circle {
		display: none;
		width: 120px;
		height: 120px;
		font-size: 0.9rem;
	}

	.homeContentWrapper h2 {
		font-size: 1.8rem;
	}
}



/* Tablet styles (768px and up) */
/* @media (min-width: 768px) {
  .section-padding-small {
    padding: 60px 0;
  }
  
  .mb-100 {
    margin-bottom: 80px;
  }
  
  .h2-why {
    font-size: 28px;
  }
  
  .circular-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 77px;
    min-height: auto;
  }
  .central-circle {
    display: none;
  }
  .connector {
    display: none;
  }

  .crm-module {
    margin-bottom: 0;
  }
} */

/* Desktop styles (1024px and up) */
/* @media (min-width: 1024px) {
  .section-padding-small {
    padding: 80px 0;
  }
  
  .mb-100 {
    margin-bottom: 100px;
  }
  
  .h2-why {
    font-size: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .circular-layout {
    display: block;
    position: relative;
    max-width: 800px;
    min-height: 600px;
  }
  
  .connector {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border: 2px dashed rgba(74, 108, 247, 0.3);
    border-radius: 50%;
    z-index: 1;
  }
  
  .central-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #4a6cf7;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
  }
  
  .crm-module {
    position: absolute;
    width: 180px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .crm-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  } */

/* Position modules in a circle */
/* .module-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .module-2 {
    top: 25%;
    right: 0;
    transform: translateY(-50%);
  }
  
  .module-3 {
    bottom: 25%;
    right: 0;
    transform: translateY(50%);
  }
  
  .module-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .module-5 {
    bottom: 25%;
    left: 0;
    transform: translateY(50%);
  }
  
  .module-6 {
    top: 25%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .crm-module .icon {
    font-size: 36px;
  }
  
  .crm-module .title {
    font-size: 16px;
  }
  
  .crm-module .descr {
    font-size: 13px;
  }
} */

/* Large desktop styles (1200px and up) */
/* @media (min-width: 1200px) {
  .circular-layout {
    max-width: 900px;
    min-height: 700px;
  }
  
  .connector {
    width: 550px;
    height: 550px;
  }
  
  .central-circle {
    width: 180px;
    height: 180px;
    font-size: 20px;
  }
  
  .crm-module {
    width: 200px;
  }
  
  .crm-module .icon {
    font-size: 40px;
  }
  
  .crm-module .title {
    font-size: 18px;
  }
  
  .crm-module .descr {
    font-size: 14px;
  }
} */









/* @keyframes spin {

            0%,
            100% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(180deg);
            }
        } */



/**********************cradibility*************************/

/* ===== MAIN SECTION ===== */
.new-stats-section {
	padding: 120px 40px;
	max-width: 1800px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	align-items: center;
	gap: 40px;
}

/* LEFT CONTENT */
.stats-left h4 {
	display: inline-block;
	padding: 8px 20px;
	/* border: 1px solid #ff6a00; */
	color: #4a6cf7;
	letter-spacing: 2px;
	border-radius: 25px;
	font-size: 12px;
	margin-bottom: 20px;
}

.stats-left h1 {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 20px;
}

.stats-left p {
	font-size: 17px;
	line-height: 1.8;
	color: #cbd5e1;
	max-width: 650px;
}

/* RIGHT PRICE CARDS (looks same as screenshot) */
.stats-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.price-box {
	background: linear-gradient(145deg, rgb(27 46 117 / 80%), rgba(15, 10, 6, 0.9));
	border-radius: 20px;
	padding: 50px 20px;
	text-align: center;
	backdrop-filter: blur(5px);
	/* border: 1px solid rgba(255, 255, 255, 0.05); */
	transition: 0.3s ease-in-out;
	cursor: pointer;
}

.price-box:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.2);
}

.price-box h2 {
	color: #04abff;
	font-size: 45px;
	margin: 0 0 10px 0;
}

.price-box span {
	font-size: 16px;
	color: #d1d5db;
}

/* Make the top card bigger like screenshot */
.price-box.large {
	margin-left: 210px;
	align-content: center;
	justify-content: center;
	align-items: center;
	width: 300px;
	/* height: 206px; */
	grid-column: span 2;
	padding: 60px 20px;
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* --- Large Laptops (max-width: 1280px) --- */
@media (max-width: 1280px) {
	.new-stats-section {
		padding: 100px 30px;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.stats-left h1 {
		font-size: 48px;
	}

	.price-box.large {
		margin-left: 140px;
		width: 220px;
	}
}

/* --- Tablets (max-width: 1024px) --- */
@media (max-width: 1024px) {
	.new-stats-section {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.stats-left p {
		margin: auto;
	}

	.stats-right {
		justify-content: center;
		max-width: 420px;
		margin: 40px auto 0;
	}

	.price-box.large {
		margin-left: 0;
		width: 100%;
		grid-column: span 2;
	}

	.stats-left h1 {
		font-size: 44px;
	}
}

/* --- Medium Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
	.new-stats-section {
		padding: 80px 20px;
	}

	.stats-left h1 {
		font-size: 38px;
	}

	.price-box {
		padding: 35px 20px;
	}

	.price-box h2 {
		font-size: 38px;
	}
}

/* --- Mobile Devices (max-width: 600px) --- */
@media (max-width: 600px) {
	.stats-right {
		grid-template-columns: 1fr;
		gap: 18px;
		max-width: 100%;
	}

	.price-box,
	.price-box.large {
		width: 100%;
		margin-left: 0;
		grid-column: span 1;
	}

	.stats-left h1 {
		font-size: 32px;
	}

	.stats-left p {
		font-size: 16px;
		line-height: 1.7;
	}
}

/* --- Small Phones (max-width: 400px) --- */
@media (max-width: 400px) {
	.stats-left h1 {
		font-size: 28px;
	}

	.stats-left h4 {
		font-size: 10px;
		padding: 6px 14px;
	}

	.price-box h2 {
		font-size: 32px;
	}

	.price-box {
		padding: 30px 15px;
	}
}


/***************************team section**********************/

.section-team {
	background-image: url("../Image/about/team-bg7.jpg");
	background-size: cover;
	/* ðŸ”¹ makes image cover the whole area */
	background-position: center;
	/*   ðŸ”¹ keeps image centered */
	background-repeat: no-repeat;
	/* ðŸ”¹ prevents image from repeating */
	background-color: var(--saffron-darker);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}


.container-team {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.homeContentWrapper {
	text-align: center;
	margin-bottom: 60px;
}

.team-h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 15px;
	color: #fff;
}

.yellowPurpelGradient {
	background: linear-gradient(90deg, #0EA5E9, #0012b1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline;
}

.team-subtitle {
	font-size: 1.2rem;
	color: #b8b9c0;
	max-width: 600px;
	margin: 0 auto;
}

.team-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.team-row-top {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.team-row-bottom {
	display: flex;
	justify-content: center;
}

.team-member {
	/* background: rgba(255, 255, 255, 0.1); */

	/* background-color: #1e1e1e; */
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
	display: flex;
	align-items: center;
	padding: 20px;
	width: 100%;
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-row-top .team-member {
	flex: 1;
	max-width: 48%;
}

.team-row-bottom .team-member {
	max-width: 600px;
}

.member-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 25px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	/* border: 3px solid #333; */
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
	transform: scale(1.05);
}

.member-details {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.member-info {
	margin-bottom: 15px;
}

.member-name {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 5px;
	color: #ffffff;
	display: flex;
	align-items: center;
}

.member-position {
	font-size: 1.1rem;
	color: #0EA5E9;
	font-weight: 500;
}

.member-bio {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #e0e0e0;
	margin-bottom: 15px;
}

.member-bio p {
	margin-bottom: 10px;
}

.member-bio p:last-child {
	margin-bottom: 0;
}

.member-social {
	display: flex;
	gap: 15px;
}

.member-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	transition: all 0.3s ease;
}

.member-social a:hover {
	background-color: #0EA5E9;
	color: #121212;
	transform: translateY(-3px);
}

.member-social i {
	font-size: 1rem;
}



/* ============ TABLET (max-width: 992px) ============ */
@media (max-width: 992px) {

	.section-team {
		padding: 80px 0;
		background-position: center;
	}

	.team-h2 {
		font-size: 2rem;
	}

	.team-subtitle {
		font-size: 1rem;
		max-width: 500px;
	}

	.team-row-top {
		flex-direction: column;
		gap: 25px;
	}

	.team-row-top .team-member {
		max-width: 100%;
	}

	.team-row-bottom .team-member {
		max-width: 100%;
	}

	.team-member {
		padding: 18px;
		flex-direction: row;
	}

	.member-image {
		width: 110px;
		height: 110px;
	}

	.member-name {
		font-size: 1.4rem;
	}

	.member-position {
		font-size: 1rem;
	}
}


/* ============ MOBILE (max-width: 768px) ============ */
@media (max-width: 768px) {

	.section-team {
		padding: 70px 0;
	}

	.team-h2 {
		font-size: 1.8rem;
	}

	.team-subtitle {
		font-size: 0.95rem;
		padding: 0 15px;
	}

	.team-member {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.member-image {
		margin: 0 auto 20px auto;
		width: 100px;
		height: 100px;
	}

	.member-details {
		align-items: center;
	}

	.member-name {
		font-size: 1.3rem;
	}

	.member-bio {
		font-size: 0.9rem;
		padding: 0 10px;
	}

	.member-social {
		justify-content: center;
	}
}


/* ============ VERY SMALL MOBILE (max-width: 480px) ============ */
@media (max-width: 480px) {

	.section-team {
		padding: 60px 0;
	}

	.team-h2 {
		font-size: 1.6rem;
	}

	.team-subtitle {
		font-size: 0.9rem;
	}

	.team-member {
		padding: 15px;
	}

	.member-image {
		width: 90px;
		height: 90px;
	}

	.member-name {
		font-size: 1.2rem;
	}

	.member-position {
		font-size: 0.95rem;
	}

	.member-bio {
		font-size: 0.85rem;
	}
}