/* ============ ROOT / THEME ============ */
:root {
  --navy: #0f4168;
  --navy-dark: #0a2f4d;
  --navy-light: #1a5f92;
  --green: #366a3d;
  --green-dark: #2a5330;
  --green-light: #4f9159;
  --dark: #12212e;
  --text: #3a4a57;
  --muted: #6b7c88;
  --light: #f4f7f8;
  --light-2: #e9f0f2;
  --white: #ffffff;
  --border: #e1e8ec;
  --shadow-sm: 0 4px 16px rgba(15, 65, 104, 0.08);
  --shadow-md: 0 16px 42px rgba(15, 65, 104, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.22; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.section { padding: 90px 0; }
.section-alt { background: var(--light); }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); background: rgba(54, 106, 61, 0.1);
  padding: 6px 15px; border-radius: 40px; margin-bottom: 16px;
}
.eyebrow-light { color: #bfe3c6; background: rgba(255, 255, 255, 0.14); }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn-primary-c {
  background: var(--green); color: var(--white); font-family: var(--font-head);
  font-weight: 600; border: none; border-radius: 40px; padding: 11px 26px;
  box-shadow: 0 8px 22px rgba(54, 106, 61, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary-c:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(54, 106, 61, 0.38); }
.btn-outline-c {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7);
  font-family: var(--font-head); font-weight: 600; border-radius: 40px; padding: 10px 26px;
  transition: all 0.2s ease;
}
.btn-outline-c:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============ TOP BAR ============ */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,0.85); font-size: 0.86rem; padding: 8px 0; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s ease; }
.top-bar a:hover { color: #fff; }
.top-bar i { color: var(--green-light); margin-right: 4px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 1030; background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar { padding-top: 10px; padding-bottom: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.brand-sub { font-size: 0.74rem; color: var(--green); font-weight: 600; letter-spacing: 0.04em; }
.navbar-nav .nav-link { font-family: var(--font-head); font-weight: 500; color: var(--navy); padding: 8px 14px; border-radius: 8px; position: relative; }
.navbar-nav .nav-link:hover { color: var(--green); }
.navbar-toggler { border: none; font-size: 1.7rem; color: var(--navy); padding: 2px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ============ HERO ============ */
.hero { position: relative; padding-bottom: 110px; }
.hero .carousel-item { position: relative; }
.hero-img { height: 620px; object-fit: cover; }
.hero-caption {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(10,47,77,0.9) 0%, rgba(10,47,77,0.55) 55%, rgba(10,47,77,0.2) 100%);
}
.hero-caption-inner { max-width: 620px; color: var(--white); }
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  padding: 6px 16px; border-radius: 40px; font-weight: 600; font-size: 0.85rem; margin-bottom: 18px;
}
.hero-caption h1 { color: var(--white); font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.hero-caption p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 26px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.carousel-indicators { margin-bottom: 26px; }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 0.7; }

/* Special creativity: overlapping highlight cards */
.highlight-wrap { position: relative; margin-top: -80px; z-index: 20; }
.highlight-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px; height: 100%;
  box-shadow: var(--shadow-md); border-bottom: 4px solid var(--green);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:hover { transform: translateY(-8px); }
.hc-icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white);
  font-size: 1.5rem; margin-bottom: 16px;
}
.highlight-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.highlight-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ============ RUNNING SERVICE STRIP ============ */
.service-strip { background: var(--navy); overflow: hidden; padding: 16px 0; }
.strip-track { display: flex; gap: 48px; width: max-content; will-change: transform; }
.strip-track span {
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  white-space: nowrap; display: inline-flex; align-items: center;
}
.strip-track i { color: var(--green-light); margin-right: 10px; font-size: 1.2rem; }

/* ============ ABOUT ============ */
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; right: -10px; bottom: -22px; background: var(--green); color: var(--white);
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-md); text-align: center;
}
.ab-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.ab-txt { font-size: 0.82rem; opacity: 0.95; }
.about-point { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--navy); }
.about-point i { color: var(--green); font-size: 1.1rem; }

/* ============ SERVICES ============ */
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.sc-img { overflow: hidden; }
.sc-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .sc-img img { transform: scale(1.07); }
.sc-body { padding: 24px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.sc-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.sc-body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; flex-grow: 1; }
.btn-sc {
  align-self: flex-start; background: var(--navy); color: var(--white); font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; border-radius: 40px; padding: 9px 20px; transition: all 0.2s ease;
}
.btn-sc:hover { background: var(--green); color: var(--white); }

/* ============ WHY CHOOSE US ============ */
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; height: 100%; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px;
  background: var(--light-2); color: var(--navy); font-size: 1.7rem; margin-bottom: 18px; transition: all 0.25s ease;
}
.why-card:hover .why-icon { background: var(--green); color: var(--white); }
.why-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ============ COUNTER ============ */
.counter-section { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); padding: 64px 0; }
.counter { color: var(--white); }
.count { font-family: var(--font-head); font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; }
.plus { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--green-light); }
.counter p { margin: 6px 0 0; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; }

/* ============ HOW IT WORKS ============ */
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; height: 100%; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px;
  background: var(--green); color: var(--white); font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ============ GALLERY ============ */
.gallery-item {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gi-overlay {
  position: absolute; inset: 0; display: grid; place-items: center; color: var(--white);
  font-size: 1.8rem; background: rgba(15, 65, 104, 0.5); opacity: 0; transition: opacity 0.25s ease;
}
.gallery-item:hover .gi-overlay { opacity: 1; }

/* ============ BOOKING ============ */
.booking-section { padding: 70px 0; }
.booking-inner {
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  border-radius: 24px; padding: 46px 44px; color: var(--white); box-shadow: var(--shadow-md);
}
.booking-inner h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.booking-inner p { color: rgba(255,255,255,0.92); margin: 0; }
.booking-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-book-call, .btn-book-enquire {
  font-family: var(--font-head); font-weight: 700; border-radius: 40px; padding: 13px 24px; transition: all 0.2s ease;
}
.btn-book-call { background: var(--white); color: var(--green-dark); }
.btn-book-call:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-book-enquire { background: rgba(255,255,255,0.14); color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-book-enquire:hover { background: var(--white); color: var(--green-dark); transform: translateY(-2px); }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; height: 100%; box-shadow: var(--shadow-sm);
}
.t-stars { color: #f4b942; margin-bottom: 12px; }
.testimonial-card p { color: var(--text); font-style: italic; margin-bottom: 18px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 800;
}
.t-person strong { display: block; color: var(--navy); font-family: var(--font-head); }
.t-person span { color: var(--muted); font-size: 0.85rem; }

/* Auto-scrolling testimonial marquee */
.testimonial-marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.tm-track { display: flex; gap: 24px; width: max-content; will-change: transform; padding: 6px 12px; }
.tm-track .testimonial-card { width: 360px; flex-shrink: 0; }
@media (max-width: 575px) {
  .tm-track .testimonial-card { width: 82vw; }
}

/* ============ FAQ ============ */
.faq-accordion .accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.faq-accordion .accordion-button { font-family: var(--font-head); font-weight: 600; color: var(--navy); background: var(--white); padding: 18px 22px; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--green); background: var(--light); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { filter: hue-rotate(120deg); }
.faq-accordion .accordion-body { color: var(--muted); padding: 4px 22px 20px; }

/* ============ CONTACT ============ */
.contact-info { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); border-radius: var(--radius); padding: 34px 30px; height: 100%; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-item > i { font-size: 1.2rem; color: var(--white); background: rgba(255,255,255,0.14); width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.ci-item span { display: block; color: rgba(255,255,255,0.65); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 2px; }
.ci-item a, .ci-item p { color: var(--white); margin: 0; font-weight: 500; word-break: break-word; }
.ci-item a:hover { color: var(--green-light); }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card .form-label { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.contact-card .form-control, .contact-card .form-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; }
.contact-card .form-control:focus, .contact-card .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(54, 106, 61, 0.12); }
.form-check-label a { color: var(--green); font-weight: 700; }
.form-note { margin: 12px 0 0; font-size: 0.9rem; font-weight: 600; }
.form-note.ok { color: var(--green); }
.form-note.err { color: #c0392b; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 62px 0 24px; }
.footer-brand .brand-name { font-size: 1.15rem; }
.footer-about { font-size: 0.94rem; margin-top: 6px; }
.footer-heading { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.75); }
.footer-links a:hover, .footer-contact a:hover { color: var(--green-light); }
.footer-contact i { color: var(--green-light); margin-right: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 20px; text-align: center; }
.footer-bottom p { margin: 4px 0; font-size: 0.86rem; }
.footer-legal a { color: rgba(255,255,255,0.8); }
.footer-legal a:hover { color: var(--green-light); }
.footer-disclaimer { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; color: var(--white); font-size: 1.5rem; z-index: 1040; box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.float-wa { left: 22px; background: #25d366; }
.float-call { right: 22px; background: var(--green); }
.float-btn:hover { color: var(--white); transform: scale(1.08); }
.float-wa::before, .float-call::before { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: fbPulse 2s ease-out infinite; }
.float-wa::before { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
.float-call::before { box-shadow: 0 0 0 0 rgba(54,106,61,0.6); }
@keyframes fbPulse { 70% { box-shadow: 0 0 0 16px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  #mainNav { background: var(--white); border-radius: var(--radius-sm); padding: 14px; margin-top: 12px; box-shadow: var(--shadow-sm); }
  .navbar-nav .nav-link { padding: 10px 6px; }
  .navbar-nav .btn-primary-c { margin-top: 8px; display: inline-block; }
  .hero-img { height: 520px; }
  .hero-caption { background: linear-gradient(90deg, rgba(10,47,77,0.92) 0%, rgba(10,47,77,0.7) 100%); }
  .highlight-wrap { margin-top: -60px; }
  .about-badge { position: static; display: inline-block; margin-top: 18px; }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .hero { padding-bottom: 80px; }
  .hero-img { height: 460px; }
  .hero-caption h1 { font-size: 1.7rem; }
  .booking-inner { padding: 34px 24px; text-align: center; }
  .booking-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 575px) {
  .hero-btns .btn { width: 100%; }
  .hero-img { height: 420px; }
  .float-btn { width: 52px; height: 52px; font-size: 1.35rem; bottom: 18px; }
  .float-wa { left: 16px; }
  .float-call { right: 16px; }
  .sc-img img { height: 170px; }
  .gallery-item img { height: 150px; }
}

/* ============ LEGAL PAGES ============ */
.legal-hero { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); padding: 62px 0; color: var(--white); }
.legal-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin: 0; }
.legal-hero p { color: rgba(255,255,255,0.85); margin: 8px 0 0; }
.legal-body { padding: 60px 0; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 30px 0 12px; color: var(--navy); }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); }
.legal-body ul { padding-left: 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-style: italic; font-size: 0.9rem; }
.cu-lg-wdth{
	width:130px;
}
@media(max-width:424px)
{
	.cu-d-n-424{
		display:none!important
	}
}
