
/* Main site styles moved here from inline <style> in index.html */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
	--primary-color: #E49E08;
	--primary-dark: #c08507;
	--secondary-color: #1e40af;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--gray-color: #64748b;
	--transition: all 0.3s ease;
}

html, body {
	overflow-x: hidden;
	width: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
	color: #333;
	background-color: var(--light-color);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header & Navigation */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	font-size: 28px;
	color: var(--dark-color);
	font-weight: 700;
}

.logo span {
	color: var(--primary-color);
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	text-decoration: none;
	color: var(--dark-color);
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
}

nav ul li a:hover {
	color: var(--primary-color);
}

/* Active nav link */
/* Minimal underline style for active nav link */
nav ul li a.active {
	color: var(--primary-color);
	font-weight: 700;
	position: relative;
	padding-bottom: 6px; /* space for underline */
}

nav ul li a.active::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	transition: width 220ms ease;
}

/* Expand underline fully when active or hovered */
nav ul li a.active::after,
nav ul li a:hover::after {
	width: 28px;
}

/* Keep a subtle accessible focus ring for keyboard users */
nav ul li a:focus-visible {
	outline: 3px solid rgba(228,158,8,0.12);
	outline-offset: 4px;
}

/* Option 3: Badge + icon (prominent) */
/* Option 3 (badge+icon) removed — keeping minimal underline (Option 1) */

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--primary-color);
	cursor: pointer;
}

/* FULL WIDTH HERO SLIDER - FIXED */
.hero-slider-wrapper {
	margin-top: 70px;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
	height: 85vh;
	min-height: 600px;
	max-height: 800px;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0; /* keep inactive hero slides hidden to prevent overlap */
	transition: opacity 1s ease;
	overflow: hidden;
}

.hero-slider  .slide.active {
	opacity: 1;
}

/* Ensure inactive hero slides don't block interactions */
.hero-slider .slide:not(.active) { pointer-events: none; }

/* Testimonials: ensure carousel area and controls are visible and not clipped */
#testimonialsCarousel {
	overflow: visible !important; /* prevent clipping of controls */
	position: relative; /* allow z-indexing */
	z-index: 10;
}
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
	width: 44px;
	height: 44px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.45);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 11;
}
#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
	filter: none;
	background-size: 18px 18px;
}

/* Make indicators and controls visible on light backgrounds */
#testimonialsCarousel .carousel-indicators button {
	background-color: rgba(0,0,0,0.35);
}

.slide-image-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	color: white;
	width: 90%;
	max-width: 1200px;
}

.slide-content h2 {
	font-size: 52px;
	margin-bottom: 25px;
	line-height: 1.2;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
	font-weight: 700;
}

.slide-content p {
	font-size: 20px;
	margin-bottom: 35px;
	opacity: 0.95;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
	line-height: 1.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Slider Controls */
.slider-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 3;
}

.slider-dots {
	display: flex;
	gap: 12px;
}

.slider-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
}

.slider-dot.active {
	background-color: var(--primary-color);
	transform: scale(1.2);
	border-color: white;
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	z-index: 3;
}

.slider-nav-btn {
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	backdrop-filter: blur(5px);
}

.slider-nav-btn:hover {
	background-color: var(--primary-color);
	transform: scale(1.1);
}

/* Buttons */
.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	height: 50px;
	line-height: 22px;
}

.btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 38px;
	color: var(--dark-color);
	margin-bottom: 18px;
	font-weight: 700;
}

.section-title p {
	color: var(--gray-color);
	max-width: 700px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
}

.services {
	padding: 100px 0;
	background-color: white;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
}

.service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	height: 100%;
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.service-img {
	height: 220px;
	width: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card:hover .service-img {
	transform: scale(1.05);
}

.service-content {
	padding: 30px;
}

.service-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--dark-color);
	font-weight: 700;
}

.service-content p {
	color: var(--gray-color);
	margin-bottom: 20px;
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 100px 0;
	background-color: #f1f5f9;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 38px;
	color: var(--dark-color);
	margin-bottom: 25px;
	font-weight: 700;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--gray-color);
	line-height: 1.7;
	font-size: 17px;
}

.about-img {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

.about-img:hover img {
	transform: scale(1.03);
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: white;
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 60px;
}

.contact-info h3 {
	font-size: 28px;
	margin-bottom: 25px;
	color: var(--dark-color);
	font-weight: 700;
}

.contact-info p {
	margin-bottom: 25px;
	color: var(--gray-color);
	line-height: 1.7;
	font-size: 17px;
}

.contact-details {
	margin-top: 35px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-item i {
	background-color: var(--primary-color);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 18px;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 18px;
	margin-bottom: 22px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(228, 158, 8, 0.1);
}

.contact-form textarea {
	height: 160px;
	resize: vertical;
}

/* Footer */
footer {
	background-color: var(--dark-color);
	color: white;
	padding: 70px 0 30px;
}

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

.footer-column h3 {
	font-size: 22px;
	margin-bottom: 25px;
	color: white;
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background-color: var(--primary-color);
}

.footer-column p {
	opacity: 0.8;
	margin-bottom: 25px;
	line-height: 1.7;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #ddd;
	text-decoration: none;
	transition: var(--transition);
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary-color);
	transform: translateX(5px);
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: var(--transition);
	font-size: 18px;
}

.social-icons a:hover {
	background-color: var(--primary-color);
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 35px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.7;
	font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hero-slider-wrapper {
		height: 80vh;
	}
}

@media (max-width: 992px) {
	.hero-slider-wrapper {
		height: 70vh;
		min-height: 550px;
	}
    
	.slide-content h2 {
		font-size: 44px;
	}
    
	.slide-content p {
		font-size: 18px;
	}
    
	.about-content {
		flex-direction: column;
		gap: 40px;
	}
    
	.about-img {
		order: -1;
	}
    
	.slider-nav-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	nav ul {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: white;
		flex-direction: column;
		padding: 80px 40px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		z-index: 1100; /* ensure menu overlays header/hero */
		align-items: center;
		justify-content: flex-start;
		overflow-y: auto; /* allow scrolling when menu items overflow */
	}

	nav ul.active {
		display: flex;
	}

	nav ul li {
		margin: 15px 0;
	}

	nav ul li a {
		font-size: 20px;
	}

	.mobile-menu-btn {
		display: block;
		z-index: 1200; /* keep toggle button above the menu */
	}

	/* Position toggle button to the right on mobile so it doesn't appear centered */
	.header-container {
		position: relative;
		padding-right: 20px; /* make space for absolute button */
	}

	.mobile-menu-btn {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.hero-slider-wrapper {
		height: 65vh;
		min-height: 500px;
		margin-top: 60px;
	}

	.slide-content h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}
    
	.slide-content p {
		font-size: 17px;
		margin-bottom: 25px;
	}
    
	.slider-nav {
		padding: 0 20px;
	}
    
	.slider-controls {
		bottom: 30px;
	}
    
	.section-title h2 {
		font-size: 32px;
	}
}

@media (max-width: 576px) {
	.hero-slider-wrapper {
		height: 60vh;
		min-height: 450px;
	}
    
	.slide-content h2 {
		font-size: 30px;
	}
    
	.slide-content {
		width: 95%;
	}
    
	.slide-content p {
		font-size: 16px;
	}
    
	.btn {
		padding: 12px 28px;
		height: 48px;
		font-size: 15px;
	}
    
	.section-title h2 {
		font-size: 28px;
	}
    
	.services, .about, .contact {
		padding: 70px 0;
	}
    
	.services-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
    
	.footer-content {
		grid-template-columns: 1fr;
		gap: 35px;
	}
    
	.slider-nav-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
}

/* Testimonials styles removed per user's request (debug styles previously here) */

/* Heading utility styles (reusable) */
.heading-classic {
	font-size: 32px;
	font-weight: 800;
	color: var(--dark-color);
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}
@media (max-width: 768px){ .heading-classic{ font-size:26px } }

.heading-underline {
	font-size: 30px;
	font-weight:700;
	position:relative;
	margin: 0 0 18px;
	padding-bottom:8px;
}
.heading-underline::after{
	content:"";
	position:absolute; left:50%; bottom:0;
	transform:translateX(-50%); width:0; height:4px;
	background:var(--primary-color); border-radius:2px;
	transition: width .22s ease;
}
.heading-underline:hover::after,
.heading-underline.active::after { width:40px; }

/* Option 2: Thick double-line underline (bold & modern) */
.heading-double {
	position: relative;
	padding-bottom: 14px;
	font-weight: 800;
	margin: 0 0 18px;
}
.heading-double::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 48px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 3px;
}
.heading-double::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -8px;
	width: 32px;
	height: 3px;
	background: rgba(0,0,0,0.06);
	border-radius: 2px;
}
.heading-bar {
	font-size: 28px; font-weight:700;
	padding-left:18px; position:relative; margin:0 0 18px;
}
.heading-bar::before{
	content:""; position:absolute; left:0; top:8px;
	width:6px; height:calc(100% - 16px);
	background:linear-gradient(180deg,var(--primary-color),var(--primary-dark));
	border-radius:3px;
}

.heading-overline {
	font-size: 18px; text-transform: uppercase; letter-spacing:0.12em;
	color:var(--primary-color); font-weight:700; margin:0 0 8px;
}

.heading-gradient {
	font-size:48px; font-weight:900; background:linear-gradient(90deg,#E49E08,#c08507);
	-webkit-background-clip:text; background-clip:text; color:transparent; margin:0 0 18px;
}
@media (max-width: 768px){ .heading-gradient{ font-size:34px } }

.heading-split { font-size:36px; font-weight:800; color:var(--dark-color); margin:0 0 18px; }
.heading-split .accent { color:var(--primary-color); display:inline-block; padding-left:6px; }

/* Decorative squiggle underline for headings (like the provided screenshot) */
.heading-squiggle {
	position: relative;
	display: inline-block;
	font-weight: 800;
}
.heading-squiggle::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 100px;
	height: 22px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24'><path d='M0 12 Q15 4 30 12 T60 12 T90 12 T120 12' stroke='%23E49E08' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");

	background-repeat: no-repeat;
	background-size: contain;
	transform-origin: left center;
	animation: squiggle 2.6s ease-in-out infinite;
}

@keyframes squiggle {
	0% { transform: translateY(0); }
	50% { transform: translateY(3px); }
	100% { transform: translateY(0); }
}

@media (max-width: 576px) {
	.heading-squiggle::after { width: 80px; height: 16px; bottom: -10px; }
}

@media (max-width: 576px) {
	.testimonial-card {
		padding: 18px !important;
	}
}

/* Prevent background scroll when mobile menu is open */
.no-scroll {
	overflow: hidden;
}


/* Loader styles */
#formLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.loader-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

ul.footer-links {
    padding-left: 0rem;
}