@charset "UTF-8";
/* CSS Document */


:root {
  --g1:#1b5e20; --g2:#2e7d32; --g3:#388e3c; --g4:#4caf50; --g5:#a5d6a7; --g6:#e8f5e9; --g7:#f1f8e9;
  --n1:#0f172a; --n2:#1e293b; --n3:#334155; --n4:#64748b; --n5:#94a3b8; --n6:#e2e8f0; --n7:#f8fafc;
  --amber:#f59e0b; --amber-lt:#fffbeb;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--n3); }

/* TOPBAR */
.topbar { background: var(--n2); font-size: 12px; color: #94a3b8; }
.topbar a { color: #94a3b8; text-decoration: none; transition: .15s; }
.topbar a:hover { color: var(--g5); }
.tsoc a {
  width: 24px; height: 24px; border-radius: 4px;
  background: rgba(255,255,255,.08); display: inline-flex; align-items: center;
  justify-content: center; color: #94a3b8; font-size: 10px; font-weight: 700;
  text-decoration: none; transition: .2s;
}
.tsoc a:hover { background: var(--g2); color: #fff; }

/* NAV */
.navbar-brand .lmark {
  width: 46px; height: 46px; border-radius: 10px; background: var(--g2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
}
.lname { font-size: 17px; font-weight: 800; color: var(--n1); line-height: 1.1; }
.ltag { font-size: 10px; color: var(--n5); font-weight: 400; }
.navbar .nav-link { color: var(--n3) !important;     font-size: 15px;
 font-weight: 500; border-radius: 6px; padding: 7px 14px !important; transition: .2s; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--g2) !important; background: var(--g6); }
.navcta { background: var(--g2) !important; color: #fff !important; border-radius: 7px !important; font-weight: 600 !important; }
.navcta:hover { background: var(--g1) !important; }

/* EYEBROW */
.eyebrow { font-size: 11px; font-weight: 700; color: var(--g2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--g6); color: var(--g2); border: 1px solid var(--g5);
  border-radius: 20px; padding: 5px 13px; font-size: 11px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--g4); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }

/* HEADINGS */
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 700;
  color: var(--n1); line-height: 1.2; margin-bottom: 12px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 50px); font-weight: 800;
  line-height: 1.13; color: var(--n1); margin-bottom: 12px;
}
.hero-h1 em { font-style: normal; color: var(--g2); }
.sec-p { font-size: 16px; color: var(--n4); line-height: 1.75; }

/* HERO SLIDER */
.stat-n { font-size: 28px; font-weight: 800; color: var(--g2); line-height: 1; }
.stat-l { font-size: 11px; color: var(--n5); margin-top: 3px; text-transform: uppercase; letter-spacing: .4px; }
.hero-slide-img {
  height: 580px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
}
.hero-overlay-inner {
  max-width: 700px;
  padding: 0 48px;
}
.hero-overlay .eyebrow-pill {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.hero-overlay .eyebrow-pill::before { background: #a5d6a7; }
.hero-overlay .hero-h1 { color: #fff; }
.hero-overlay .hero-h1 em { color: var(--g5); }
.hero-overlay .sec-p { color: rgba(255,255,255,0.85); }
.carousel-item { position: relative; }
.carousel-indicators [data-bs-target] {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.4); border: none;
}
.carousel-indicators .active { background: var(--g4); }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem; height: 2.5rem;
  background-color: rgba(0,0,0,.35);
  border-radius: 50%;
  background-size: 50%;
}
.carousel-control-next, .carousel-control-prev {
 
    z-index: 9999;
}
@media (max-width: 768px) {
  .hero-slide-img { height: 420px; }
  .hero-overlay-inner { padding: 0 24px; }
  .hero-overlay .hero-h1 { font-size: 28px; }
}
@media (max-width: 480px) {
  .hero-slide-img { height: 320px; }
  .hero-overlay .hero-h1 { font-size: 22px; }
  .hero-overlay .sec-p { font-size: 13px; }
}

/* BUTTONS */
.btn-green {
  background: var(--g2); color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 26px; border-radius: 8px; border: 2px solid var(--g2);
  text-decoration: none; display: inline-block; transition: .2s;
}
.btn-green:hover { background: var(--g1); border-color: var(--g1); color: #fff; transform: translateY(-1px); }
.btn-outline-neutral {
  background: #fff; color: var(--n2); font-weight: 600; font-size: 14px;
  padding: 12px 26px; border-radius: 8px; border: 2px solid var(--n6);
  text-decoration: none; display: inline-block; transition: .2s;
}
.btn-outline-neutral:hover { border-color: var(--g4); color: var(--g2); }

/* FORM CARD */
.fcard { background: #fff; border: 1px solid var(--n6); border-radius: 16px; padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.fcard h3 { font-size: 16px; font-weight: 700; color: var(--n1); margin-bottom: 3px; }
.fcard .sub { font-size: 12px; color: var(--n5); margin-bottom: 18px; }
.fg label { display: block; font-size: 14px; font-weight: 600; color: var(--n3); margin-bottom: 4px; letter-spacing: .4px; }
.fg input, .fg select {
  width: 100%; border: 1.5px solid var(--n6); border-radius: 7px;
  padding: 10px 12px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--n1); outline: none; transition: .2s; background: #fff;
}
.fg input:focus, .fg select:focus { border-color: var(--g4); box-shadow: 0 0 0 3px rgba(76,175,80,.1); }
/*.btn-form {*/
/*  width: 100%; background: var(--g2); color: #fff; border: none; border-radius: 8px;*/
/*  padding: 12px; font-size: 14px; font-weight: 700; cursor: pointer;*/
/*  font-family: 'Inter', sans-serif; transition: .2s; margin-top: 4px;*/
/*}*/
/*.btn-form:hover { background: var(--g1); }*/

.btn-form {
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--g2);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* TRUST BAR */
.trust-bar { background: var(--g6); border-top: 2px solid var(--g5); border-bottom: 1px solid var(--g5); }
.ti-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; }
.tdiv { width: 1px; height: 22px; background: var(--g5); }

/* FEATURE CARDS */
.feat-card {
  background: #fff; border: 1px solid var(--n6); border-radius: 12px;
  padding: 26px 22px; transition: .25s; position: relative; overflow: hidden; height: 100%;
}
.feat-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--g4); transform: scaleY(0); transform-origin: bottom; transition: .3s;
}
.feat-card:hover { box-shadow: 0 6px 28px rgba(46,125,50,.1); transform: translateY(-3px); }
.feat-card:hover::after { transform: scaleY(1); }
.fico {
  width: 46px; height: 46px; border-radius: 10px; background: var(--g6);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 14px; border: 1px solid var(--g5);
}
.ftitle { font-size: 18px; font-weight: 700; color: var(--n1) }
.fdesc { font-size: 16px; color: var(--n4); line-height: 1.65; }

/* ABOUT */
.about-section { background: var(--amber-lt); border-top: 1px solid #fcd34d; border-bottom: 1px solid #fcd34d; }
.imgbox { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.imgbox img { width: 100%; object-fit: cover; display: block; }
.img-badge {
  position: absolute; bottom: 20px; left: 20px; background: #fff;
  border: 1px solid var(--n6); border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.ibn { font-size: 26px; font-weight: 800; color: var(--g2); line-height: 1; }
.ibt { font-size: 11px; color: #fff; margin-top: 2px; }
.chk-list { list-style: none; padding: 0; margin: 20px 0; }
.chk-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--n3); margin-bottom: 11px; line-height: 1.6; }
.chk-list li::before {
  content: '✓'; min-width: 20px; height: 20px; background: var(--g2); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* SERVICE CARDS */
.svc-card { background: #fff; border: 1px solid var(--n6); border-radius: 12px; overflow: hidden; transition: .25s; height: 100%; }
.svc-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.svc-img { width: 100%; height: 285px; object-fit: cover; display: block; }
.svc-body { padding: 18px 20px; }
.svc-name { font-size: 18px; font-weight: 700; color: var(--n1); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: var(--n4); line-height: 1.6; margin-bottom: 11px; }
.svc-lnk { font-size: 13px; font-weight: 600; color: var(--g2); text-decoration: none; }
.svc-lnk:hover { color: var(--g1); }

/* QUALITY */
.qual-section { background: var(--n2); }
.qual-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,40px); font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 12px; }
.qual-section .lead-text { font-size: 16px; color: #94a3b8; line-height: 1.8; margin-bottom: 20px; }
.qlist { list-style: none; padding: 0; }
.qlist li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #94a3b8; margin-bottom: 10px; line-height: 1.55; }
.qlist li::before { content: '✓'; min-width: 20px; height: 20px; background: var(--g2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.qimgs img { border-radius: 10px; width: 100%; height: 170px; object-fit: cover; opacity: .85; }

/* PROPERTY TYPES */
.prop-section { background: var(--n7); }
.prop-card { background: #fff; border: 1px solid var(--n6); border-radius: 12px; padding: 22px 20px; transition: .2s; height: 100%; }
.prop-card:hover { border-color: var(--g5); box-shadow: 0 5px 20px rgba(46,125,50,.09); }
.prop-tag { font-size: 10px; font-weight: 700; color: var(--g2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.prop-title { font-size: 14px; font-weight: 700; color: var(--n1); margin-bottom: 6px; }
.prop-desc { font-size: 13px; color: var(--n4); line-height: 1.6; }

/* CHECKLIST (form section) */
.plist { list-style: none; padding: 0; }
.plist li { display: flex; align-items: center; gap: 9px; font-size: 16px; color: var(--n3); margin-bottom: 10px; font-weight: 500; }
.plist li::before { content: '✔'; color: var(--g2); font-weight: 700; font-size: 13px; }

/* PRICING */
.price-section { background: var(--amber-lt); border-top: 1px solid #fcd34d; }
.pcard { background: #fff; border: 1px solid var(--n6); border-radius: 12px; overflow: hidden; height: 100%; }
.phead { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--n6); background: #fafafa; }
.phead img { width: 58px; height: 58px; border-radius: 8px; object-fit: cover; }
.phead h3 { font-size: 15px; font-weight: 700; color: var(--n1); margin: 0 0 2px; }
.phead p { font-size: 12px; color: var(--n5); margin: 0; }
.prows { padding: 4px 22px 18px; }
.prow { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.prow:last-child { border: none; }
.pname { color: var(--n4); }
.pprice { font-weight: 700; color: var(--g2); white-space: nowrap; }

/* NEWSLETTER */
.nl-section { background: var(--g2); }
.nl-section h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.nl-section p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; }
.nlform input { flex: 1; border: none; border-radius: 8px; padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; min-width: 0; }
.nlform button { background: var(--n2); color: #fff; border: none; border-radius: 8px; padding: 12px 20px; font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s; white-space: nowrap; }
.nlform button:hover { background: var(--n1); }

/* FOOTER */
footer { background: var(--n1); color: #94a3b8; }
.fcol h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: .8px; }
.fcol ul { list-style: none; padding: 0; }
.fcol ul li { margin-bottom: 8px; }
.fcol ul li a { color: #94a3b8; text-decoration: none; font-size: 16px; transition: .15s; }
.fcol ul li a:hover { color: #fff; }
.fbrand p { font-size: 13px; line-height: 1.7; color: #94a3b8; max-width: 240px; margin: 12px 0 14px; }
.fsoc a {
  width: 30px; height: 30px; border-radius: 6px; background: rgba(255,255,255,.07);
  color: #94a3b8; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-decoration: none; transition: .2s;
}
.fsoc a:hover { background: var(--g2); color: #fff; }
.fhrs { font-size: 13px; }
.fhrs span { color: var(--g5); font-weight: 600; }
.fbot { border-top: 1px solid rgba(255,255,255,.07); }
.fbot p, .fbot a { font-size: 16px; color: #64748b; text-decoration: none; }
.fbot a:hover { color: #fff; }
.navbar-brand .logo{
	    width: 349px;
}
/* FLOATING BUTTONS */
.floats { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; }
.fb { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 14px rgba(0,0,0,.2); text-decoration: none; transition: .2s; }
.fb:hover { transform: scale(1.08); }

/* ── PRICING v2 ── */
.price2-section { background: #f0f4ff; }
.price2-section .sec-h { color: var(--n1); }

/* Tab pills */
.ptabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.ptab {
  padding: 9px 22px; border-radius: 30px; font-size: 13px; font-weight: 600;
  border: 2px solid var(--n6); background: #fff; color: var(--n4);
  cursor: pointer; transition: .2s;
}
.ptab.active, .ptab:hover { background: var(--g2); border-color: var(--g2); color: #fff; }

/* Left image card */
.pimg-card {
  border-radius: 18px; overflow: hidden; position: relative;
  height: 100%; min-height: 420px;
}
.pimg-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.pimg-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
}
.pimg-overlay h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.pimg-overlay p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 18px; line-height: 1.6; }
.pimg-overlay .btn-seemore {
  display: inline-block; background: #fff; color: var(--g2);
  font-weight: 700; font-size: 13px; border-radius: 30px; padding: 10px 24px;
  text-decoration: none; transition: .2s; width: fit-content;
}
.pimg-overlay .btn-seemore:hover { background: var(--g4); color: #fff; }

/* Service list card */
.psvc-card {
  background: #fff; border-radius: 18px; padding: 28px 26px;
  border: 1px solid var(--n6); height: 100%;
}
.psvc-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid #f1f5f9; gap: 12px;
}
.psvc-item:last-child { border: none; padding-bottom: 0; }
.psvc-info h4 { font-size: 16px; font-weight: 700; color: var(--n1); margin-bottom: 4px; }
.psvc-info p { font-size: 14px; color: var(--n5); margin: 0; line-height: 1.5; }
.psvc-price {
  font-size: 14px; font-weight: 800; color: var(--g2);
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}

/* Highlight card (amber) */
.phighlight {
  border-radius: 18px; padding: 28px 26px; height: 100%;
  background: linear-gradient(145deg, #f59e0b 0%, #fbbf24 100%);
  display: flex; flex-direction: column;
}
.phighlight h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.phighlight p { font-size: 13px; color: rgba(255,255,255,.9); line-height: 1.65; flex: 1; }
.phighlight .btn-seemore2 {
  display: inline-block; background: #fff; color: #b45309;
  font-weight: 700; font-size: 13px; border-radius: 30px;
  padding: 10px 26px; text-decoration: none; margin-top: 20px;
  width: fit-content; transition: .2s;
}
.phighlight .btn-seemore2:hover { background: var(--n1); color: #fff; }

/* Quick list card (light blue) */
.pquick-card {
  background: #eef2ff; border-radius: 18px; padding: 28px 26px;
  border: 1px solid #c7d2fe; height: 100%;
}
.pquick-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(99,102,241,.1); gap: 10px;
}
.pquick-item:last-child { border: none; padding-bottom: 0; }
.pquick-name { font-size: 14px; font-weight: 700; color: var(--n1); }
.pquick-sub { font-size: 12px; color: var(--n5); margin-top: 2px; }
.pquick-price { font-size: 14px; font-weight: 800; color: #4f46e5; white-space: nowrap; flex-shrink: 0; }


/* --- Global Section Typography --- */
.eyebrow {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: inline-block;
}

.eyebrow-pill {
    background: rgba(40, 167, 69, 0.2);
    color: #49e16b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.sec-h {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-neutral);
}

.sec-p {
    color: var(--text-muted);
    font-size: 1.05rem;
    /*max-width: 800px;*/
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
}

/* ==========================================================================
   Home Hero Slider Components
   ========================================================================== */

#home .hero-slide-img {
    height: 600px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
}

.hero-overlay-inner {
    max-width: 650px;
    padding-left: 10%;
    color: var(--white);
}

.hero-h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-h1 em {
    color: var(--primary-green);
    font-style: normal;
}

/* ==========================================================================
   Interactive Components & Buttons
   ========================================================================== */

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-green);
    display: inline-block;
    transition: var(--transition-fast);
}

.btn-green:hover {
    background-color: var(--hover-green);
    border-color: var(--hover-green);
    color: var(--white);
}

.btn-outline-neutral {
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    display: inline-block;
    transition: var(--transition-fast);
}

.btn-outline-neutral:hover {
    background: var(--white) !important;
    color: var(--dark-neutral) !important;
    border-color: var(--white);
}

/* --- Trust Info Bar --- */
.trust-bar {
    background-color: #1a1e21;
    color: rgba(255, 255, 255, 0.85);
}

.ti-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.tdiv {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Cards (Feature, Services, Sectors)
   ========================================================================== */

/* --- Core Feature Cards --- */
.feat-card {
    padding: 35px 25px;
    background: var(--light-neutral);
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}

.feat-card:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.fico {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.ftitle {
    font-size: 1.25rem;
    font-weight: 700;
    /*margin-bottom: 8px;*/
    color: var(--dark-neutral);
}

.fdesc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Core Service Grid Cards --- */
.svc-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
    transition: var(--transition-fast);
}

.svc-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.svc-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.svc-body {
    padding: 20px;
}

.svc-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-neutral);
}

.svc-lnk {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 10px;
}

/* --- Sector Specific Sector Cards --- */
.prop-card {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    height: 100%;
}

.inner-banner {
    position: relative;
    background: linear-gradient(rgb(26 35 28 / 30%)), url('../images/inner-banner.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding: 100px 0;
    color: var(--white);
    border-bottom: 4px solid var(--primary-green);
}


/* --- About Media Grid Box --- */
.imgbox {
    position: relative;
}

.imgbox img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.img-badge {
    position: absolute;
    bottom: 10px;
    right: -20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(40,167,69,0.3);
    max-width: 160px;
    text-align: center;
}

.ibn {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.ibt {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
}

.chk-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.chk-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #495057;
}

.chk-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ==========================================================================
   Contact Booking Form Layout Component
   ========================================================================== */

.fcard {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.fcard h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.fg label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
    display: block;
}

.fg input, 
.fg select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.fg input:focus, 
.fg select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.btn-form {
    width: 100%;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 15px;
    transition: var(--transition-fast);
}

.btn-form:hover {
    background: var(--hover-green);
}

/* ==========================================================================
   Pricing Component Module
   ========================================================================== */

.ptabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.ptab {
    padding: 10px 20px;
    background: var(--light-neutral);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #dee2e6;
    transition: var(--transition-fast);
}

.ptab.active, .ptab:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* ==========================================================================
   Responsive Modifiers
   ========================================================================== */

@media (max-width: 991.98px) {
    #home .hero-slide-img {
        height: 480px;
    }
    .hero-h1 {
        font-size: 2.5rem;
    }
    .img-badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    #home .hero-slide-img {
        height: 400px;
    }
    .hero-h1 {
        font-size: 2rem;
    }
    .hero-overlay-inner {
        padding-left: 5%;
        padding-right: 5%;
    }
    .sec-h {
        font-size: 1.75rem;
    }
    .fcard {
        padding: 20px;
    }
}
