:root {
 --gold: #c2a875;
 --gold-light: #d4ae6a;
 --sage: #8a9e8c;
 --sage-light: #c8d8c8;
 --sage-bg: #e8ede8;
 --dark: #2a2a2a;
 --text: #444;
 --white: #fff;
 --cream: #f7f4ef;
 --tan: #c8a97a;
}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
  user-select: none;
}
body {
	font-family: "Google Sans", sans-serif;
	color: var(--text);
	background: var(--white); font-size:15px;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}
.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
.logo-icon img {
	width: 100%;
}
.logo-text {
	width: 170px; margin-top:-2px;
}
.logo-text img {
	width: 100%;
}
.logo-text span {
	color: #d18500;
}
.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 32px;
	margin: 0;
}
.nav-menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	position: relative;
	transition: 0.3s;
}
.nav-menu li a:hover, .nav-menu li a.active {
	color: #d18500;
}
.nav-menu li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background: #d18500;
	transition: 0.3s;
}
.nav-menu li a:hover::after, .nav-menu li a.active::after {
	width: 100%;
}
.form-message.success{    text-align: center;padding: 0; color:green !important;}
.form-message.error{color:red !important; text-align: center;padding: 0;}
.nav-btn {
	background: #d18500;
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s;
}
.nav-btn:hover {
	background: #e79300;
}
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 34px;
	cursor: pointer;
	line-height: 1;
}
 @media (max-width: 991px) {
.nav-btn {
	display: none;
}
.menu-toggle {
	display: block;
	z-index: 1001;
}
.nav-menu {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	height: calc(100vh - 80px);
	background: #000;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
	padding: 30px 0 40px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}
.nav-menu.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-menu li {
	width: 100%;
	text-align: center;
}
.nav-menu li a {
	display: block;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 11px 20px;
	color: #fff;
}
.nav-menu li a::after {
	display: none;
}
.nav-menu li a.active,  .nav-menu li a:hover {
	color: #d18500;
}
}
.hero-section {
	position: relative;
	min-height:60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	overflow: hidden;
	padding: 120px 0 100px;
	margin-top: -120px;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.10), rgba(0, 0, 0, 0.55));
	z-index: 1;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transform: scale(1.03);
}
.hero-section .container {
	position: relative;
	z-index: 2;
}
.hero-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
.hero-content h1 {font-size: 50px;line-height: 1.3;font-weight: 700;color: #fff;margin-bottom: 20px; padding-top:20px;}
.hero-content h1 span {
	color: #d18500;
	display: inline-block;
}
.hero-content p {
	max-width: 690px;
    margin: 0 auto 32px;
    font-size: 20px;
	line-height: 1.6;
	color: #e5e7eb;
}
.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
}
.btn-primary {
	background: #d18500;
	color: #fff;
}
.btn-primary:hover {
	background: #e79300;
	transform: translateY(-2px);
}
.btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	z-index: 2;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.mouse {
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}
.wheel {
	width: 4px;
	height: 10px;
	background: #d18500;
	border-radius: 10px;
	animation: scrollWheel 1.5s infinite;
}
.scroll-down span {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
}
 @keyframes scrollWheel {
 0% {
 transform: translateY(0);
 opacity: 1;
}
 100% {
 transform: translateY(12px);
 opacity: 0;
}
}
 @media (max-width: 991px) {
.hero-content h1 {
	font-size: 42px;
}
.hero-content p {
	font-size: 18px;
}
.hero-bg img {
	opacity: 0.6;
}
}
 @media (max-width: 575px) {
.hero-section {
	padding: 110px 0 90px;
}
.hero-content h1 {
	font-size: 32px;
}
.hero-content p {
	font-size: 16px;
}
.btn {
	width: 100%;
	padding: 14px 20px;
}
.hero-buttons {
	flex-direction: column;
}
.scroll-down {
	bottom: 20px;
}
}
/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee {
	background: #111111;
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
	padding: 16px 0;
	overflow: hidden;
}
.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track {
	animation-play-state: paused;
}
@keyframes marquee {
from {
transform:translateX(0);
}
to {
	transform: translateX(-50%);
}
}
.m-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 40px;
font-size:.72rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255,255,255,.25);
	white-space: nowrap;
	font-weight: 500;
}
.m-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #d18500;
	opacity: .6;
	flex-shrink: 0;
}
.m-item:hover {
	color: #d18500;
}
.stats-section {
	background: #d18500;
	padding: 35px 0;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.stat-item {
	text-align: center;
}
.stat-number {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
	line-height: 1.2;
}
.stat-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}
 @media (max-width: 991px) {
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.stat-number {
	font-size: 42px;
}
}
 @media (max-width: 767px) {
.stats-section {
	padding: 50px 0;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.stat-number {
	font-size: 32px;
}
.stat-text {
	font-size: 15px;
}
}
.services-section {padding: 80px 0;background: #ffffff;}
.section-title {text-align: center;margin-bottom: 60px;}
.section-title h2 {font-size: 42px;line-height: 1.2;font-weight: 700;color:#6b7280;margin-bottom:10px;}
.section-title h2 span {color: #d18500;}
.section-title p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 18px;
	color: #6b7280;
	line-height: 1.7;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 28px;
}
.service-card {
	background: #fff;
	border: 2px solid #f3f4f6;
	border-radius: 16px;
	padding:40px 25px;
	transition: all 0.3s ease;
}
.service-card:hover {
	border-color: #d18500;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
}
.service-icon {
	width: 64px;
	height: 64px;
	background: #ffedd5;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d18500;
	font-size: 28px;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}
.service-card:hover .service-icon {
	background: #d18500;
	color: #fff;
}
.service-card h3 {
	font-size:18px;
	font-weight: 700;
	color:#6b7280;
	margin-bottom: 15px;
	line-height: 1.4;
}
.service-card p {
	font-size: 16px;
	line-height: 1.7;
	color: #6b7280;
	margin: 0;
}
.services-btn-wrap {
	text-align: center;
	margin-top: 50px;
}
.services-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background:#d18500;
	color: #fff;
	text-decoration: none;
	padding: 16px 32px;
	border-radius:30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
}
.services-btn:hover {background: #a36800;}
@media (max-width: 991px) {
.section-title h2 {font-size: 38px;}
.section-title p {font-size: 18px;}
.services-grid {grid-template-columns: repeat(2, 1fr);}
}
 @media (max-width: 767px) {
.services-section {
	padding: 60px 0;
}
.section-title {
	margin-bottom: 40px;
}
.section-title h2 {
	font-size: 30px;
}
.section-title p {
	font-size: 16px;
}
.services-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
.service-card {
	padding: 25px 20px;
}
.service-card h3 {
	font-size: 20px;
}
.service-icon {
	width: 58px;
	height: 58px;
	font-size: 24px;
	margin-bottom: 20px;
}
.services-btn {
	padding: 14px 24px;
	font-size: 15px;
}
}
.why-choose-section {
	padding: 80px 0;
	background: #fff;
	color: #000;
}
.why_choose_list_top {
	align-items: center;
	padding-top: 20px;
}
/* Left content */
.why_choose_list_top > div:first-child {
	width: 100%;
}
.why_choose_list_top p {
	color: #000;
	font-size: 16px;
	text-align: center;
	line-height: 1.7;
}
/* Right content (list section) */
.why-choose-image {width: 100%; padding-top:15px;}

/* Mobile Responsive */
@media (max-width: 768px) {
.why_choose_list_top {
	grid-template-columns: 1fr; /* 1 column */
	gap: 30px;
}
}
.why-choose-content h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	text-align: center;color: #6b7280;
}
.why-choose-content h2 span {
	color: #d18500;
}
.why-choose-content p {
	font-size:15px;
	line-height: 1.7;
	color:#6b7280;
	margin-bottom: 20px;
}
.why-choose-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:40px;
}
.why-choose-list li {display: flex;align-items: center;gap: 12px;font-size:18px;margin-bottom: 18px;color:#6b7280;}
.why-choose-list li i {color: #d18500;font-size: 22px;flex-shrink: 0;}
.why-choose-image img {width: 100%;display: block;border-radius: 16px;box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);}
@media (max-width: 991px) {
.why-choose-content h2 {
	font-size: 38px;
}
.why-choose-content p {
	font-size: 18px;
}
.why-choose-list li {
	font-size: 17px;
}
}
 @media (max-width: 767px) {
.why-choose-section {
	padding: 60px 0;
}
.why-choose-list {
	grid-template-columns: 1fr;
	gap: 30px;
}
.why-choose-wrapper {
	flex-direction: column;
	gap: 35px;
}
.why-choose-content,  .why-choose-image {
	flex: 1 1 100%;
	max-width: 100%;
}
.why-choose-content h2 {
	font-size: 30px;
}
.why-choose-content p {
	font-size: 16px;
}
.why-choose-list li {
	font-size: 16px;
	align-items: flex-start;
}
.why-choose-list li i {
	margin-top: 3px;
}
}
.testimonial-section {
	padding: 0 0 80px 0;
	background: #fff;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.section-heading h2 {
	font-size: 42px;
	font-weight: 700;
	color:#6b7280;
	margin-bottom: 15px;
	line-height: 1.2;
}
.section-heading h2 span {
	color: #d18500;
}
.section-heading p {
	font-size:18px;
	color: #6b7280;
	margin: 0;
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 27px;
}
.testimonial-item {
	background: #f0f0f0;
	border-radius: 16px;
	padding: 35px 30px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	margin: 0;
	min-height: 280px;
}
.stars {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}
.stars i {
	color: #d18500;
	font-size: 18px;
}
.testimonial-text {
	font-size: 15px;
	line-height: 1.7;
	color: #4b5563;
	font-style: italic;
	margin-bottom: 25px;
}
.testimonial-footer {
	border-top: 1px solid #e5e7eb;
	padding-top: 18px;
}
.testimonial-footer h4 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 6px;
}
.testimonial-footer span {
	display: block;
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 4px;
}
.testimonial-footer small {
	font-size: 14px;
	color: #d18500;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 30px;
	margin-top: 40px;
}
.contact-card01 {
	background: transparent !important;
	border-radius: 20px;
	padding: 40px;
	box-shadow: none !important;
}
.contact-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.contact-card h3 {
	font-size: 28px;
	margin-bottom: 20px;
}
.contact-card p {
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 25px;
}
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}
.contact-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #4b5563;
	margin-bottom: 18px;
	font-size: 16px;
}
.contact-list li i {
	color: #d18500;
	min-width: 22px;
}
.contact-form-card .form-group {
	margin-bottom: 20px;
}
.contact-form-card label {
	display: block;
	margin-bottom: 10px;
	color: #111827;
	font-weight: 600;
}
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
	width: 100%;
	padding: 16px 18px;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	background: #f9fafb;
	font-size: 16px;
	color: #1f2937;
}
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
	outline: none;
	border-color: #d18500;
	box-shadow: 0 0 0 4px rgba(209, 133, 0, 0.12);
}
.contact-form-card .btn-primary {
	padding: 16px 36px;
	border-radius: 12px;
}
 @media (max-width: 991px) {
.section-heading h2 {
	font-size: 36px;
}
.section-heading p {
	font-size: 18px;
}
}
 @media (max-width: 767px) {
.testimonial-section {
	padding: 60px 0;
}
.section-heading h2 {
	font-size: 30px;
}
.section-heading p {
	font-size: 16px;
}
.testimonial-item {
	padding: 25px 20px;
	min-height: auto;
}
.testimonial-text {
	font-size: 16px;
}
}
.cta-section {
	padding: 80px 0;
	background: linear-gradient(to right, #d18500, #e79300);
}
.cta-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	text-align: center;
}
.cta-content h2 {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
	line-height: 1.2;
}
.cta-content p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #000;
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.cta-btn:hover {
	background: #111827;
}
.cta-btn svg {
	width: 20px;
	height: 20px;
}
 @media (max-width: 768px) {
.cta-content h2 {
	font-size: 32px;
}
.cta-content p {
	font-size: 18px;
}
}
.site-footer {
	color: #fff;
	padding: 70px 0 0;
}
.footer-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.logo-text span {
	color: #d18500;
}
.footer-description {
	color: #bdbdbd;
	line-height: 1.7;
	margin-bottom: 25px; font-size:15px;
}
.social-links {
	display: flex;
	gap: 12px;
}
.social-links a {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
.social-links a:hover {
	background: #d18500;
	border-color: #d18500;
	transform: translateY(-3px);
}
.footer-col h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #fff;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col ul li {
	margin-bottom: 12px;
	color: #bdbdbd; font-size:15px;
}
.footer-col ul li a {
	color: #bdbdbd;
	text-decoration: none;
	transition: 0.3s;
}
.footer-col ul li a:hover {
	color: #d18500;
	padding-left: 4px;
}
.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
}
.contact-list li i {
	color: #d18500;
	font-size: 18px;
	margin-top: 3px;
	min-width: 18px;
}
.contact-list li {
	color: #000;
	text-decoration: none;
}
.contact-list li a {
	color: #000;
	text-decoration: none;
}
.contact-list li a:hover {
	color: #d18500;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	margin-top: 50px;
	padding: 20px 0 0 0;
	text-align: center;
}
.footer-bottom p.foundation{ padding-top:15px; font-size:10px;color:#fff;}
.footer-bottom p.foundation a{ color:#fff;}

.footer-bottom p {
	margin: 0;
	color: #fff;
	font-size: 15px;
}
 @media (max-width: 991px) {
.footer-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 575px) {
.footer-grid {
	grid-template-columns: 1fr;
}
}
.about-section {
	background: #000;
	color: #fff;
	padding:160px 20px 90px 20px;
	margin-top: -120px;
}
.about-container {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}
.about-content {
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}
.about-content h1 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom:16px;
}
.about-content h1 span {
	color: #d18500;
}
.about-content p {
	font-size: 20px;
	line-height: 1.7;
	color: #d1d5db;
	margin: 0;
}

/* Large tablets */
@media (max-width: 991px) {
.about-section {
	padding: 70px 20px;
}
.about-content h1 {
	font-size: 46px;
}
.about-content p {
	font-size: 18px;
}
}

/* Tablets */
@media (max-width: 767px) {
.about-section {
	padding: 60px 16px;
}
.about-content h1 {
	font-size: 38px;
	margin-bottom: 20px;
}
.about-content p {
	font-size: 17px;
	line-height: 1.6;
}
}

/* Mobile */
@media (max-width: 480px) {
.about-section {
	padding: 50px 15px;
}
.about-content h1 {
	font-size: 30px;
}
.about-content p {
	font-size: 15px;
}
}
.mission-vision-section {
	padding: 80px 0;
	background: #ffffff;
}
.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}
.info-card {background: #fff;border: 2px solid #f3f4f6;border-radius: 16px;padding: 40px 25px;transition: all 0.3s ease;}
.info-card:hover {border-color: #d18500;box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);transform: translateY(-5px);}
.mission-card {}
.vision-card {}
.icon-box {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}
.light-icon {
	background: rgba(255, 255, 255, 0.2);
}
.orange-icon {
	background: #d18500;
}
.icon-box i {
	font-size: 32px;
	line-height: 1;
}
.info-card h2 {font-size: 32px;font-weight: 700;margin-bottom: 16px;line-height: 1.2;color: #d18500;}
.info-card p {font-size:15px;line-height:1.6;color:#6b7280;margin:0;}
.mission-card p {color:#6b7280;}
.vision-card p {color:#6b7280;}

/* Large Tablet */
@media (max-width: 991px) {
.mission-vision-section {
	padding: 70px 0;
}
.mission-vision-grid {
	gap: 30px;
}
.info-card {
	padding: 36px;
}
.info-card h2 {
	font-size: 28px;
}
.info-card p {
	font-size: 17px;
	line-height: 1.7;
}
}

/* Tablet */
@media (max-width: 767px) {
.mission-vision-grid {
	grid-template-columns: 1fr;
}
.mission-vision-section {
	padding: 60px 0;
}
.info-card {
	padding: 30px 24px;
}
.icon-box {
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
}
.icon-box i {
	font-size: 28px;
}
.info-card h2 {
	font-size: 24px;
	margin-bottom: 14px;
}
.info-card p {
	font-size: 16px;
	line-height: 1.6;
}
}

/* Mobile */
@media (max-width: 480px) {
.mission-vision-section {
	padding: 50px 0;
}
.info-card {
	padding: 24px 18px;
	border-radius: 14px;
}
.icon-box {
	width: 52px;
	height: 52px;
	border-radius: 10px;
}
.icon-box i {
	font-size: 24px;
}
.info-card h2 {
	font-size: 22px;
}
.info-card p {
	font-size: 15px;
}
}
.core-values-section {
	padding: 80px 0;
	background: #f9fafb;
}
.section-heading {
	text-align: center;
	margin-bottom: 60px;
}

.section-heading h2 span {
	color: #d18500;
}
.section-heading p {
	max-width: 750px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.7;
	color: #6b7280;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.value-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;border: 2px solid #f3f4f6;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.value-card:hover {
	transform: translateY(-6px);border-color: #d18500;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.value-icon {
	width: 64px;
	height: 64px;
	background: #ffedd5;
	color: #d18500;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.value-icon i {
	font-size: 28px;
	line-height: 1;
}
.value-card h3 {
	font-size: 22px;
	font-weight: 700;
	color:#6b7280;
	margin-bottom: 14px;
}
.value-card p {
	font-size: 15px;
    line-height: 1.6;
	color: #6b7280;
	margin: 0;
}

/* Large devices */
@media (max-width: 1199px) {
.values-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

/* Tablet */
@media (max-width: 767px) {
.core-values-section {
	padding: 60px 0;
}
.section-heading {
	margin-bottom: 40px;
}
.section-heading h2 {
	font-size: 36px;
}
.section-heading p {
	font-size: 17px;
}
.values-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}
.value-card {
	padding: 28px 20px;
}
}

/* Mobile */
@media (max-width: 480px) {
.core-values-section {
	padding: 50px 0;
}
.section-heading h2 {
	font-size: 30px;
}
.section-heading p {
	font-size: 15px;
}
.value-icon {
	width: 56px;
	height: 56px;
}
.value-icon i {
	font-size: 24px;
}
.value-card h3 {
	font-size: 20px;
}
.value-card p {
	font-size: 15px;
}
}
.journey-section {
	padding: 80px 0;
	background: #ffffff;
}
.journey-grid {
	display: grid;
	gap: 48px;
	align-items: center;
}
.journey-content h2 {
	font-size: 42px;
	font-weight: 700;
	color:#6b7280;
	line-height: 1.2;
	margin-bottom: 24px;
}
.journey-content h2 span {
	color: #d18500;
}
.journey-content p {
	font-size: 15px;
	line-height: 1.8;
	color:#6b7280;
	margin-bottom: 24px;
}
.journey-content p:last-of-type {
	margin-bottom: 32px;
}
.journey-location {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #d18500;
}
.journey-location i {
	font-size: 22px;
}
.journey-location span {
	font-size: 18px;
	font-weight: 600;
}
.journey-image img {
	width: 100%;
	display: block;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Large tablet */
@media (max-width: 991px) {
.journey-section {
	padding: 70px 0;
}
.journey-grid {
	gap: 36px;
}
.journey-content h2 {
	font-size: 40px;
}
.journey-content p {
	font-size: 17px;
	line-height: 1.7;
}
}

/* Tablet */
@media (max-width: 767px) {
.journey-section {
	padding: 60px 0;
}
.journey-grid {
	grid-template-columns: 1fr;
	gap: 30px;
}
.journey-content h2 {
	font-size: 34px;
	margin-bottom: 20px;
}
.journey-content p {
	font-size: 16px;
	margin-bottom: 20px;
}
.journey-content p:last-of-type {
	margin-bottom: 24px;
}
.journey-location span {
	font-size: 16px;
}
.journey-location i {
	font-size: 20px;
}
}

/* Mobile */
@media (max-width: 480px) {
.journey-section {
	padding: 50px 0;
}
.journey-content h2 {
	font-size: 30px;
}
.journey-content p {
	font-size: 15px;
	line-height: 1.6;
}
.journey-location {
	gap: 8px;
}
.journey-location span {
	font-size: 15px;
}
.journey-location i {
	font-size: 18px;
}
.journey-image img {
	border-radius: 14px;
}
}
/* Section */
.process-section {
	background: #000;
	color: #fff;
	padding: 80px 20px;margin-bottom: -24px;
}
/* Header */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}
.section-header h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}
.section-header h2 span {
	color: #d18500; /* orange */
}
.section-header p {
	font-size: 18px;
	color: #ccc;
	max-width: 700px;
	margin: 0 auto;
}
/* Grid */
.process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}
/* Item */
.process-item {
	text-align: center;
}
/* Circle */
.circle {
	width: 80px;
	height: 80px;
	background: #d18500;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 24px;
	font-weight: bold;
}
/* Text */
.process-item h3 {
	font-size:20px;
	margin-bottom: 10px; 
}
.process-item p {
	font-size: 15px;
	color: #aaa;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
.process-grid {
	grid-template-columns: repeat(3, 1fr);
}
}
 @media (max-width: 768px) {
.process-grid {
	grid-template-columns: repeat(2, 1fr);
}
.section-header h2 {
	font-size: 32px;
}
}
 @media (max-width: 480px) {
.process-grid {
	grid-template-columns: 1fr;
}
.section-header h2 {
	font-size: 26px;
}
.circle {
	width: 60px;
	height: 60px;
	font-size: 18px;
}
}
.icon-box {
	width: 80px;
	height: 80px;
	background: #ffedd5; /* orange-100 */
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.icon-box i {
	font-size: 40px;
	color: #d18500; /* orange-500 */
}
.services_image {
	margin-top: 65px;
}
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.feature-list li {
	margin: 0 0 10px 0;
}
.feature-list li i {
	color: #d18500;
	font-size: 18px;
	flex-shrink: 0;
	padding-right: 6px;
}
/* Text */
.feature-list li span {
	color: #4b5563;
	font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
.feature-list li span {
	font-size: 14px;
}
}
/* Section */
.service-section {
	padding: 80px 0 40px 0;
}
/* Layout */
.service-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}
/* Image */
.service-image img {
	width: 100%;
	max-width: 720px;
	border-radius: 15px;
	display: block;
}
/* Reverse layout (content left, image right) */
.service-wrapper.reverse {
	flex-direction: row;
}
/* Content */
.service-content {
	max-width: 500px;
}
/* Icon Box */
.icon-box {
	width: 70px;
	height: 70px;
	background: #ffedd5;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.icon-box i {
	font-size: 32px;
	color: #d18500;
}
/* Heading */
.service-content h2 {
	font-size: 38px;
	font-weight: 700;
	color:#6b7280;
	margin-bottom: 15px;
}
/* Subtitle */
.subtitle {
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.6;
}
/* List */
.feature-list {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}
.feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color:#6b7280;
}
.feature-list i {
	color: #d18500;
}


/* Responsive */
@media (max-width: 992px) {
.service-wrapper {
	flex-direction: column;
	text-align: center;
}
.service-content {
	max-width: 100%;
}
.feature-list li {
	justify-content: center;
}
}
 @media (max-width: 600px) {
.service-content h2 {
	font-size: 28px;
}
.icon-box {
	width: 60px;
	height: 60px;
}
.icon-box i {
	font-size: 26px;
}
}
/* Tabs */
.portfolio .tabs {
	text-align: center;
}
.portfolio .tab-btn {
	border: none;
	padding: 10px 18px;
	margin: 5px;
	border-radius: 20px;
	cursor: pointer;
	background: #e0e0e0;
	transition: 0.3s;
}
.portfolio .tab-btn.active {
	background: #ff6a00;
	color: white;
}
/* Grid */
.portfolio .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
/* Card */
.portfolio .card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: 0.3s;
}
.portfolio .card:hover {
	transform: translateY(-5px);
}
/* Image */
.portfolio .card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
/* Badge */
.portfolio .badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ff6a00;
	color: #fff;
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 12px;
}
/* Image wrapper */
.portfolio .img-wrap {
	position: relative;
}
/* Content */
.portfolio .card-content {
	padding: 15px;
}
.portfolio .card h3 {
	font-size: 18px;
	margin-bottom: 8px;
}
.portfolio .card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}
/* Tags */
.portfolio .tags span {
	display: inline-block;
	background: #eee;
	padding: 5px 10px;
	margin: 3px;
	border-radius: 12px;
	font-size: 12px;
}

/* Responsive */
@media(max-width: 992px) {
.portfolio .grid {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media(max-width: 600px) {
.portfolio .grid {
	grid-template-columns: 1fr;
}
}
/* Section */
.portfolio-section {
	padding: 80px 20px;
	background: #f9fafb;
}
/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
}
/* Grid */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
/* Card */
.portfolio-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.3s;
}
.portfolio-card:hover {
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Image */
.card-image {
	position: relative;
	overflow: hidden;
}
.card-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: 0.5s;
}
.portfolio-card:hover img {
	transform: scale(1.1);
}
/* Overlay */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.3s;
}
.portfolio-card:hover .overlay {
	opacity: 1;
}
/* Icon */
.overlay .icon {
	width: 50px;
	height: 50px;
	background: #d18500;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.overlay i {
	color: #fff;
	font-size: 18px;
}
/* Badge */
.badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #d18500;
	color: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
}
/* Content */
.card-content {
	padding: 20px;
}
.card-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
.card-content p {
	color: #6b7280;
	font-size:15px;
	margin-bottom: 15px;
}
/* Tags */
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.tags span {
	background: #f3f4f6;
	color: #374151;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
.portfolio-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 600px) {
.portfolio-grid {
	grid-template-columns: 1fr;
}
}
/* Section */
.filter-section {
	padding: 20px;
}
/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
}
/* Buttons Wrapper */
.filter-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
/* Button */
.tab-btn {
	padding: 10px 22px;
	border-radius: 8px;
	border: none;
	background: #f3f4f6;
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}
/* Hover */
.tab-btn:hover {
	background: #e5e7eb;
}
/* Active Button */
.tab-btn.active {
	background: #d18500;
	color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
.tab-btn {
	font-size: 13px;
	padding: 8px 16px;
}
}
/* HEADER WRAPPER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	padding-block: 20px;
	animation-timeline: scroll();
	animation-name: header-scroll;
	animation-range: 150px 650px;
	animation-fill-mode: forwards;
	margin: 0 auto;
}
/* PILL CONTAINER */
.inside-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 999px;
	backdrop-filter: blur(16px);
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(0, 0, 0, 0.28);
	transition: all 0.3s ease;
}
/* LOGO */
.logo {
	font-weight: 600;
	font-size: 18px;
}
/* NAV */
.nav {
	display: flex;
	gap:55px;
}
.nav a {
	color: #fff;
	text-decoration: none;
	font-size:18px;
	transition: 0.2s;
}
.nav a:hover {
	color: #d18500;
}
/* BUTTONS */
.actions {
	display: flex;
	gap: 10px;
}
.btn {
	border-radius: 999px;
	padding: 8px 20px;
	font-size: 15px;
	cursor: pointer;
	border: none;
}
.btn.ghost {
	background: transparent;
	color: #aaa;
}
.btn.primary {
	background:#d18500;
	color: #fff;
}

/* SCROLL ANIMATION */
@keyframes header-scroll {
 to {
 max-width:1020px;
 padding: 10px 18px;
 transform: translateY(10px) scale(0.92);
}
}
/* CONTENT */
.content {
	padding: 40px;
}
.hero {
	text-align: center;
	margin-top: 100px;
}
.hero h1 {
	font-size: 40px;
}
.hero p {
	margin-top: 10px;
	color: #aaa;
}
/* SCROLL AREA */
.dummy {
	height: 2000px;
}
/* EXISTING STYLES SAME AS BEFORE... */
/* HAMBURGER BUTTON */
.menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
}
.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
}
/* MOBILE MENU */
.mobile-menu {
	display: none; /* ✅ keep hidden by default */
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	width: 90%;
	max-width: 400px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px;
	flex-direction: column;
	gap: 16px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}
/* SHOW MENU */
.mobile-menu.active {
	opacity: 1;
	transform: translateX(-50%) translateY(10px);
	pointer-events: auto;
}
/* MOBILE LINKS */

.mobile-menu {
	list-style-type: none;
}
.mobile-menu a {
	text-decoration: none;
	color: #d7d7df;
	font-size: 15px;
	padding: 10px 12px;
	border-radius: 12px;
	background: transparent;
	transition: 0.2s ease;
	list-style-type: none;
}
.mobile-menu a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}
/* MOBILE ACTIONS */
.mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.nav,  .actions {
	display: none;
}
.menu-toggle {
	display: flex;
}
.inside-header {
	justify-content: space-between;
}
.mobile-menu {
	display: flex;
}
}

/* RESPONSIVE */
@media (max-width: 768px) {
.inside-header {
	gap: 12px;
	border-radius: 20px;
}
.mobile-menu {
	display: flex; /* ✅ only mobile */
}
.nav {
	gap: 16px;
}
.actions {
	width: 100%;
	justify-content: center;
}
 @keyframes header-scroll {
 to {
 max-width: 95%;
 transform: translateY(6px) scale(0.95);
}
}
}
.slick-track {
	gap: 10px;
	display: flex;
}
.testimonial-item {
	box-shadow: none;
}
.contact {
	padding: 80px 20px;
	background: linear-gradient(135deg, #111, #000, #111);
}
.container {
	max-width: 1200px;
	margin: auto;
}
/* Heading */
.contact .heading {
	text-align: center;
	margin-bottom: 60px;
}
.contact .heading h2 {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.2;
}
.contact .heading span {
	color: #d18500;
}
.contact .heading p {
	color: #bbb;
	margin-top: 10px;
}
/* Layout */
.contact-wrapper {}
.contact_form_inner{    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;}
/* Left Info */
.contact-info h3 {
	margin-bottom: 15px;
	color: #fff;
}
.contact-info h4 {
	color: #fff;
}
.contact-info p {
	color: #fff;
	margin-bottom: 0px;
}
.contact-info p a {
	color: #fff;
	text-decoration: none;
}
.info-box {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	margin-top: 25px;
}
.icon {
	width: 50px;
	height: 50px;
	background: #d18500;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.icon i {
	color: #fff;
}
/* Social */
.social h4 {
	margin-bottom: 10px;
}
.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #444;
	border-radius: 10px;
	margin-right: 10px;
	color: #fff;
	transition: 0.3s;
}
.social-icons a:hover {
	background: #ff7a3d;
	border-color: #ff7a3d;
}
/* Form */
.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 15px;
	background: #111;
	border: 1px solid #333;
	border-radius: 8px;
	color: #fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
 color: #888;
}
.contact-form textarea{ margin-top:20px; margin-bottom:28px;}
.row {
	display: flex;
	gap: 15px;
}
.row input {
	width: 50%;
}
/* Button */
.contact-form button {
	width: 100%;
	padding: 12px;
	border: none;
	background: #d18500;
	color: #fff;
	font-size:18px;
	border-radius:30px;
	cursor: pointer;
	transition: 0.3s;max-width: 200px;
    margin: 0 auto;
    text-align: center;
    display: block;
}
.contact-form button:hover {
	opacity: 0.9;
}
.para p{font-size:15px;line-height:1.5;color:#000;margin-bottom:20px;}
.para h5{color: #d18500; font-size:18px;}
.para ul{ list-style-type:none; padding:0 0 20px 20px; margin:0;}
.para ul li{font-size:15px;line-height:1.5;color:#000;margin-bottom:10px;}
.para ul li i{color: #d18500;}
/* Responsive */
@media (max-width: 992px) {
.contact-wrapper {
	grid-template-columns: 1fr;
}
.row {
	flex-direction: column;
}
.row input {
	width: 100%;
}
}
 @media (max-width: 576px) {
.heading h2 {
	font-size: 30px;
}
.contact .heading h2{font-size: 30px;}
.contact_form_inner {
    display: grid;
    grid-template-columns: inherit;
    gap: 19px;
}
}
