/*==========================================================================
  DESIGN SYSTEM — Remote IT Solutions
  Based on DESIGN.md (Starbucks-inspired system)
  Philosophy: Warm cream canvas · Four-tier green · Full-pill buttons ·
              Whisper-soft layered shadows · Color-block page rhythm
==========================================================================*/

/* --------------------------------------------------------------------------
   0. Fonts — Manrope as SoDoSans substitute (closest open-source match)
-------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. Design Tokens — four-tier green + warm neutrals
-------------------------------------------------------------------------- */
:root {
  /* === Four-Tier Green System === */
  --green-brand:    #006241;   /* Primary brand: headings, brand signal */
  --green-accent:   #00754A;   /* CTAs, interactive fill */
  --green-house:    #1E3932;   /* Feature bands, footer, dark surfaces */
  --green-uplift:   #2b5148;   /* Decorative accents, gradient moments */
  --green-light:    #d4e9e2;   /* Form valid-state tints */

  /* === Surface Palette — warm neutral canvas === */
  --surface-warm:   #f2f0eb;   /* Primary page canvas (Neutral Warm) */
  --surface-ceramic: #edebe9;  /* Zone separators, section washes (Ceramic) */
  --surface-white:  #ffffff;   /* Cards, modals (White) */
  --surface-cool:   #f9f9f9;   /* Dropdowns, utility containers (Neutral Cool) */
  --surface-black:  #000000;   /* Join-now strip, top-nav high-contrast */

  /* === Text Colors === */
  --text-black:     rgba(0,0,0,0.87);   /* Primary heading/body on light */
  --text-black-soft: rgba(0,0,0,0.58); /* Secondary/metadata on light */
  --text-white:     rgba(255,255,255,1);          /* On dark green */
  --text-white-soft: rgba(255,255,255,0.70);      /* Secondary on dark */

  /* === Semantic === */
  --color-error:    #c82014;
  --color-warning:  #fbbc05;

  /* === Shadows — layered, whisper-soft === */
  --shadow-card: 0 0 0.5px rgba(0,0,0,0.14), 0 1px 1px rgba(0,0,0,0.24);
  --shadow-nav:  0 1px 3px rgba(0,0,0,0.10), 0 2px 2px rgba(0,0,0,0.06), 0 0 2px rgba(0,0,0,0.07);
  --shadow-float: 0 4px 20px rgba(0,59,67,0.10), 0 1px 4px rgba(0,0,0,0.08);

  /* === Radius === */
  --radius-card:   12px;
  --radius-btn:    50px;   /* Full-pill — universal */
  --radius-input:  4px;
  --radius-chip:   100px;

  /* === Spacing (rem anchored to 1rem = 16px browser default) === */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 1rem;      /* 16px — default inner */
  --space-4: 1.5rem;    /* 24px */
  --space-5: 2rem;      /* 32px */
  --space-6: 2.5rem;    /* 40px */
  --space-7: 3rem;      /* 48px */
  --space-8: 3.5rem;    /* 56px */
  --space-9: 4rem;      /* 64px */

  /* === Typography === */
  --font-primary: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:   'Lora', 'Iowan Old Style', Georgia, serif;
  --tracking-tight:   -0.02em;
  --tracking-normal:  -0.01em;
  --tracking-loose:    0.08em;
  --lh-display:  1.10;
  --lh-heading:  1.20;
  --lh-body:     1.75;
}

/* --------------------------------------------------------------------------
   1b. Override main.css theme variable — kills all legacy orange
-------------------------------------------------------------------------- */
:root {
  --theme:        #00754A !important; /* Was #F94D00 — replaced with Green Accent */
  --theme-2:      #1E3932 !important;
  --theme-3:      #006241 !important;
}

/* --------------------------------------------------------------------------
   2. Base — font + canvas
-------------------------------------------------------------------------- */
body {
  font-family: var(--font-primary) !important;
  background-color: var(--surface-warm) !important;
  color: var(--text-black) !important;
  line-height: var(--lh-body) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary) !important;
  color: var(--text-black) !important;
}

h1 {
  letter-spacing: -0.03em !important;
  line-height: var(--lh-display) !important;
  font-weight: 800 !important;
}

h2 {
  letter-spacing: -0.025em !important;
  line-height: var(--lh-heading) !important;
  font-weight: 700 !important;
}

h3 { letter-spacing: var(--tracking-normal) !important; font-weight: 700 !important; }
h4 { letter-spacing: var(--tracking-normal) !important; font-weight: 600 !important; }
h5, h6 { letter-spacing: var(--tracking-tight) !important; font-weight: 600 !important; }

p {
  font-family: var(--font-primary) !important;
  color: var(--text-black-soft) !important;
  line-height: var(--lh-body) !important;
}

a { font-family: var(--font-primary) !important; }

/* --------------------------------------------------------------------------
   3. Navigation / Header — transparent overlay on hero photo
-------------------------------------------------------------------------- */

/* Top info bar — compact dark strip */
.header-top-section {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 1001 !important;
}

/* Show the top bar at all screen sizes */
@media (max-width: 1399px) {
  .header-top-section {
    display: flex !important;
  }
}

.header-top-wrapper {
  padding: 7px 0 !important;
}

.header-top-wrapper .header-left .list li,
.header-top-wrapper .header-left .list li a,
.header-top-wrapper .header-left span,
.header-top-wrapper .header-right span {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em !important;
}

.header-top-wrapper .header-right .social-icon a {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
  font-size: 13px !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.header-top-wrapper .header-right .social-icon a:hover {
  background: rgba(255,255,255,0.30) !important;
  border-color: rgba(255,255,255,0.55) !important;
  color: #ffffff !important;
}

/* Inner pages — solid branded navigation bands. Home keeps the transparent hero overlay. */
body:not([data-page="home"]) .header-top-section {
  background: var(--green-house) !important;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08) !important;
}

body:not([data-page="home"]) header,
body:not([data-page="home"]) .header-1,
body:not([data-page="home"]) .main-header,
body:not([data-page="home"]) nav.navbar,
body:not([data-page="home"]) .sticky-header {
  background: var(--green-brand) !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 10px 30px rgba(0, 59, 67, 0.18) !important;
}

body:not([data-page="home"]) .header-main .main-menu ul li a {
  color: rgba(255,255,255,0.92) !important;
}

body:not([data-page="home"]) .header-main .main-menu ul li a:hover,
body:not([data-page="home"]) .header-main .main-menu ul li.active > a,
body:not([data-page="home"]) .header-main .main-menu ul li a.active {
  color: var(--green-light) !important;
}

body:not([data-page="home"]) .header-main .header-right .theme-btn {
  background-color: var(--surface-white) !important;
  border-color: var(--surface-white) !important;
  color: var(--green-brand) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
}

body:not([data-page="home"]) .header-main .header-right .theme-btn:hover {
  background-color: var(--green-light) !important;
  border-color: var(--green-light) !important;
  color: var(--green-house) !important;
}

/* Main nav — transparent, positioned below the top bar */
header,
.header-1,
.main-header,
nav.navbar,
.sticky-header {
  background: rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
  margin-top: 42px !important;
}

/* Sticky state — solid dark, fixed at top, no gap, no transition bleed */
.sticky,
.sticky.header-1,
header.sticky-header,
.header-1.sticky-header {
  background: #0d1f17 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.40) !important;
  margin-top: 0 !important;
  top: 0 !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

/* Sticky — keep nav links white and readable */
.sticky .main-menu ul li a,
.sticky.header-1 .main-menu ul li a {
  color: rgba(255,255,255,0.90) !important;
}
.sticky .main-menu ul li a:hover,
.sticky.header-1 .main-menu ul li a:hover {
  color: #ffffff !important;
}

/* Sticky — use white logo, not dark */
.sticky.header-1 .header-main .header-left .header-logo {
  display: block !important;
}
.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: none !important;
}

/* Sticky — hamburger stays white */
.sticky .header__hamburger .sidebar__toggle i,
.sticky .header__hamburger i {
  color: #ffffff !important;
}

/* Dropdown menu — dark themed to match header */
.header-main .main-menu ul li .submenu {
  background: rgba(10, 28, 20, 0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-top: 2px solid var(--green-accent) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
}

.header-main .main-menu ul li .submenu li a {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Nav links — white on dark */
.main-menu ul li a,
.nav-menu ul li a,
.navbar-nav .nav-link {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.90) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.main-menu ul li a:hover,
.nav-menu ul li a:hover,
.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

/* Logo — ensure white logo visible on dark */
.header-logo-2 { display: none !important; }
.header-logo   { display: block !important; }

/* Nav CTA button */
.header-btn .theme-btn,
header .theme-btn {
  background: var(--green-accent) !important;
  color: #ffffff !important;
  border: 1px solid var(--green-accent) !important;
  border-radius: var(--radius-btn) !important;
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  padding: 8px 22px !important;
  box-shadow: 0 2px 12px rgba(0,117,74,0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.header-btn .theme-btn:hover,
header .theme-btn:hover {
  background: #005a38 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0,117,74,0.45) !important;
}

/* Hamburger icon — white on dark */
.header__hamburger .sidebar__toggle i,
.header__hamburger i {
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   4. Buttons — full-pill, scale(0.95) active, universal
-------------------------------------------------------------------------- */

/* Primary filled — Green Accent */
.theme-btn {
  background: var(--green-accent) !important;
  color: var(--text-white) !important;
  border: 1px solid var(--green-accent) !important;
  border-radius: var(--radius-btn) !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  letter-spacing: var(--tracking-normal) !important;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: none !important;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.18s ease !important;
}

.theme-btn::before,
.theme-btn::after {
  display: none !important;
}

.theme-btn:hover {
  color: var(--text-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,117,74,0.30) !important;
}

.theme-btn:active {
  transform: scale(0.95) !important;
  box-shadow: none !important;
}

/* Style-2 — Primary outlined */
.theme-btn.style-2 {
  background: transparent !important;
  color: var(--green-accent) !important;
  border: 1px solid var(--green-accent) !important;
  box-shadow: none !important;
}

.theme-btn.style-2:hover {
  background: rgba(0,117,74,0.06) !important;
  color: var(--green-accent) !important;
  box-shadow: none !important;
}

/* White-on-dark — used on House Green bands */
.theme-btn.style-white,
.feature-top-item .theme-btn,
.counter-section .theme-btn {
  background: var(--surface-white) !important;
  color: var(--green-accent) !important;
  border: 1px solid var(--surface-white) !important;
}

.theme-btn.style-white:hover {
  background: var(--surface-white) !important;
  box-shadow: 0 6px 20px rgba(255,255,255,0.25) !important;
}

/* Outlined on dark */
.theme-btn.style-outline-dark {
  background: transparent !important;
  color: var(--text-white) !important;
  border: 1px solid var(--text-white) !important;
}

.theme-btn.style-outline-dark:hover {
  background: rgba(255,255,255,0.10) !important;
}

/* Nav array buttons */
.array-button button {
  background: var(--surface-white) !important;
  color: var(--green-brand) !important;
  border: 1px solid rgba(0,98,65,0.20) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-card) !important;
  width: 44px !important;
  height: 44px !important;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34,1.56,0.64,1) !important;
}

.array-button button:hover {
  background: var(--green-accent) !important;
  color: var(--text-white) !important;
  border-color: transparent !important;
  transform: scale(1.06) !important;
}

/* --------------------------------------------------------------------------
   5. Section labels / chips
-------------------------------------------------------------------------- */
.sub-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-primary) !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: var(--tracking-loose) !important;
  text-transform: uppercase !important;
  color: var(--green-brand) !important;
  background: rgba(0,98,65,0.08) !important;
  border: none !important;
  border-radius: var(--radius-chip) !important;
  padding: 5px 14px !important;
}

.sub-title.style-2,
.sub-title.style-3 {
  color: var(--green-light) !important;
  background: rgba(212,233,226,0.12) !important;
}

/* --------------------------------------------------------------------------
   6. Page canvas — warm cream color-block rhythm
-------------------------------------------------------------------------- */

/* Base page surface */
.about-section,
.project-section,
.news-section {
  background: var(--surface-warm) !important;
}

/* Alternate zone — ceramic */
.brand-section,
.service-section,
.testimonial-section {
  background: var(--surface-ceramic) !important;
}

/* --------------------------------------------------------------------------
   7. Hero Section — warm cream + atmospheric green bloom
-------------------------------------------------------------------------- */
.hero-section.hero-1 {
  background-color: #1a1a1a;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
}

/* Atmospheric pseudo-elements disabled — photo background active */
.hero-section.hero-1::before,
.hero-section.hero-1::after {
  display: none !important;
}

.hero-section.hero-1 .container {
  position: relative !important;
  z-index: 1 !important;
}

/* Hero typography — white on photo background */
.hero-section.hero-1 .hero-content h1,
.hero-section.hero-1 h1 {
  color: #ffffff !important;
  font-size: 3.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: var(--lh-display) !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

.hero-section.hero-1 .hero-content h6 {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: var(--tracking-loose) !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}

.hero-section.hero-1 .hero-content > p {
  color: rgba(255,255,255,0.92) !important;
  font-size: 1.0625rem !important;
  line-height: var(--lh-body) !important;
  max-width: 540px !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4) !important;
}

@media (max-width: 991px) {
  .hero-section.hero-1 .hero-content h1 { font-size: 2.8rem !important; }
}
@media (max-width: 575px) {
  .hero-section.hero-1 .hero-content h1 { font-size: 2.2rem !important; }
}

/* Hero buttons on photo background */
.hero-section.hero-1 .theme-btn.style-2 {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(8px) !important;
}
.hero-section.hero-1 .theme-btn.style-2:hover {
  background: rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
}

/* Hero image */
.hero-image img {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-float) !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease-in !important;
}

/* Floating client box */
.hero-image .box {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  border: 1px solid rgba(0,98,65,0.08) !important;
}

.hero-image .box h4 {
  color: var(--text-black) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
}

/* Video circle */
.video-circle .video-btn {
  background: var(--green-accent) !important;
  box-shadow: 0 0 0 0 rgba(0,117,74,0.4) !important;
  color: var(--text-white) !important;
}

/* --------------------------------------------------------------------------
   8. Brand / Partners Carousel — ceramic surface
-------------------------------------------------------------------------- */
.brand-section {
  padding: 48px 0 56px !important;
}

.brand-section .section-title .sub-title {
  background: rgba(0,98,65,0.08) !important;
  color: var(--green-brand) !important;
}

.brand-section p {
  color: var(--text-black-soft) !important;
}

/* --------------------------------------------------------------------------
   9. About Section
-------------------------------------------------------------------------- */
.about-image img {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-float) !important;
}

.about-content .count-item h2 {
  color: var(--green-brand) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.about-content .count-item sup {
  color: var(--green-brand) !important;
}

.about-content .content-box p b {
  color: var(--green-brand) !important;
  font-weight: 700 !important;
}

body[data-page="home"] .about-wrapper .row > .col-lg-6:first-child {
  display: flex;
}

body[data-page="home"] .about-wrapper .about-image {
  width: 100%;
}

body[data-page="home"] .about-wrapper .about-image img {
  min-height: 0 !important;
  height: 100% !important;
}

body[data-page="home"] .service-section > .container > .section-title-area {
  justify-content: center !important;
  text-align: center;
}

body[data-page="home"] .service-section > .container > .section-title-area .section-title {
  width: 100%;
}

body[data-page="home"] .service-section > .container > .section-title-area .sub-title.style-3 {
  color: var(--green-brand) !important;
  background: rgba(0,98,65,0.10) !important;
  box-shadow: inset 0 0 0 1px rgba(0,98,65,0.08) !important;
}

body[data-page="home"] .service-section > .container > .section-title-area h2 {
  white-space: nowrap;
}

@media (max-width: 991px) {
  body[data-page="home"] .service-section > .container > .section-title-area h2 {
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   10. Service Section — card system
-------------------------------------------------------------------------- */
.service-section {
  padding-bottom: 80px !important;
}


/* Allow swiper overflow so cards lift cleanly */
.service-slider,
.service-slider .swiper-wrapper,
.service-section .swiper,
.service-section .swiper-wrapper,
.swiper.service-slider {
  overflow: visible !important;
}

.service-section .swiper-wrapper {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Service card — white on ceramic bg */
.service-box-item {
  background: var(--surface-white) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  border: none !important;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease !important;
}

/* Hover color fill */
.service-box-item::before {
  border-radius: var(--radius-card) !important;
  background-color: var(--green-house) !important;
}

.service-box-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-float) !important;
}

.service-box-item:hover .icon {
  background-color: rgba(255,255,255,0.15) !important;
}

.service-box-item .icon {
  background-color: var(--green-accent) !important;
}

.service-box-item .content h3 a {
  color: var(--text-black) !important;
  font-weight: 700 !important;
  letter-spacing: var(--tracking-normal) !important;
}

.service-box-item .content h3 a:hover {
  color: var(--green-accent) !important;
}

.service-box-item .content p {
  color: var(--text-black-soft) !important;
  line-height: var(--lh-body) !important;
}

.service-box-item:hover .content h3 a {
  color: var(--text-white) !important;
}

.service-box-item:hover .content p {
  color: var(--text-white-soft) !important;
}

/* --------------------------------------------------------------------------
   11. Project / Partners Accordion — warm canvas
-------------------------------------------------------------------------- */
.project-card-items {
  border-top: none !important;
  border-bottom: 1px solid rgba(0,98,65,0.08) !important;
  padding: 28px 5px 28px 55px !important;
  transition: background 0.2s ease !important;
}

/* GSAP pin stacking is intentional — no overrides here */


.project-card-items h4 {
  color: var(--green-light) !important;
  font-weight: 800 !important;
  font-size: 0.875rem !important;
  letter-spacing: var(--tracking-loose) !important;
}

/* But on warm canvas the counter is unreadable with light green */
.project-section .project-card-items h4 {
  color: var(--green-brand) !important;
  opacity: 0.45 !important;
}

.project-card-items .project-content h3 a {
  color: var(--text-black) !important;
  font-weight: 700 !important;
}

.project-card-items .project-content h3 a:hover {
  color: var(--green-accent) !important;
}

.project-card-items .project-content p {
  color: var(--text-black-soft) !important;
  line-height: var(--lh-body) !important;
}

.project-thumb img {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  transition: opacity 0.3s ease-in !important;
}

/* --------------------------------------------------------------------------
   12. Counter / Stats — House Green feature band
-------------------------------------------------------------------------- */
.counter-section {
  background: var(--green-house) !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Atmospheric bloom on dark bg */
.counter-section::before {
  content: '' !important;
  position: absolute !important;
  top: -80px !important;
  left: -80px !important;
  width: 500px !important;
  height: 500px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(212,233,226,0.08) 0%, transparent 70%) !important;
  filter: blur(100px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.counter-section .container,
.counter-section .counter-wrapper {
  position: relative !important;
  z-index: 1 !important;
}

/* Stat cards on dark bg */
.counter-box-item {
  background: rgba(255,255,255,0.05) !important;
  border-radius: var(--radius-card) !important;
  padding: 28px 24px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: background 0.2s ease !important;
}

.counter-box-item:hover {
  background: rgba(255,255,255,0.09) !important;
}

.counter-box-item h2,
.counter-section .counter-box-item h2,
.counter-box-item h2 .count,
.counter-section .counter-box-item h2 .count {
  color: var(--green-light) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.counter-box-item h4 {
  color: var(--text-white-soft) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
}

.counter-content .section-title h2.text-white,
.counter-section h2.text-white {
  color: var(--text-white) !important;
  font-weight: 700 !important;
}

.counter-content .section-title .sub-title.text-white,
.counter-content .sub-title {
  background: rgba(212,233,226,0.12) !important;
  color: var(--green-light) !important;
  border: 1px solid rgba(212,233,226,0.20) !important;
}

.counter-content .text,
.counter-section > .container p {
  color: var(--text-white-soft) !important;
  line-height: var(--lh-body) !important;
}

/* Feature-top sub-band — slightly darker within House Green */
.feature-top-item {
  background: rgba(0,0,0,0.12) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding-top: 40px !important;
  position: relative !important;
  z-index: 1 !important;
}

.feature-top-item .section-title .sub-title.text-white,
.feature-top-item .sub-title {
  background: rgba(212,233,226,0.10) !important;
  color: var(--green-light) !important;
  border: 1px solid rgba(212,233,226,0.18) !important;
}

.feature-top-item h2.text-white,
.feature-top-item h2 {
  color: var(--text-white) !important;
  font-weight: 700 !important;
}

.feature-top-item p {
  color: var(--text-white-soft) !important;
}

/* Feature icon tiles in integration strip */
.feature-icon-item {
  background: rgba(255,255,255,0.06) !important;
  border-radius: var(--radius-card) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34,1.56,0.64,1) !important;
}

.feature-icon-item:hover {
  background: rgba(255,255,255,0.13) !important;
  transform: scale(1.04) !important;
}

/* --------------------------------------------------------------------------
   13. Testimonial Section — ceramic canvas
-------------------------------------------------------------------------- */
.testimonial-section {
  background: var(--surface-ceramic) !important;
}

.testimonial-section .array-button button {
  width: 56px !important;
  height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.92) !important;
  color: var(--green-brand) !important;
  border: 1px solid rgba(0,98,65,0.18) !important;
  box-shadow: 0 14px 34px rgba(0,59,67,0.14) !important;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease !important;
}

.testimonial-section .array-button button i {
  font-size: 1.05rem !important;
  line-height: 1 !important;
}

.testimonial-section .array-button button:hover {
  background: var(--green-accent) !important;
  color: var(--text-white) !important;
  border-color: var(--green-accent) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.testimonial-section .array-button button:focus-visible {
  outline: 3px solid rgba(0,98,65,0.24) !important;
  outline-offset: 4px !important;
}

.testimonial-box-item {
  background: var(--surface-white) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  border: none !important;
  padding: 36px 32px !important;
}

.testimonial-box-item .star i {
  color: var(--green-accent) !important;
}

.testimonial-box-item > p {
  color: var(--text-black) !important;
  font-size: 1rem !important;
  line-height: 1.80 !important;
  font-style: italic !important;
}

.testimonial-box-item .client-info-item .content h4 {
  color: var(--text-black) !important;
  font-weight: 700 !important;
}

.testimonial-box-item .client-info-item .content span {
  color: var(--text-black-soft) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em !important;
}

.testimonial-box-item .info-item img {
  border-radius: 50% !important;
  box-shadow: 0 0 0 3px rgba(0,98,65,0.14) !important;
}

/* --------------------------------------------------------------------------
   14. Marquee Section — uplift green band
-------------------------------------------------------------------------- */
.marquee-section {
  background: var(--green-uplift) !important;
}
.marquee-section .marquee {
  margin-bottom: 0 !important;
}

.marquee-section .text {
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}

/* --------------------------------------------------------------------------
   14b. Counter Image Grid
-------------------------------------------------------------------------- */
.counter-img-item {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
}
.counter-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   15. News / Blog Section
-------------------------------------------------------------------------- */
.news-section {
  background: var(--surface-warm) !important;
}

.news-card-items {
  background: var(--surface-white) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  border: none !important;
  overflow: hidden !important;
  transition: box-shadow 0.22s ease !important;
}

.news-card-items:hover {
  transform: none !important;
  box-shadow: var(--shadow-float) !important;
}

/* Kill image crossfade swap animation — show first image only */
.news-card-items .news-image img {
  transition: none !important;
}

.news-card-items .news-image img:first-child {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: auto !important;
  display: block !important;
}

.news-card-items .news-image img:nth-child(2) {
  display: none !important;
}

.news-image img {
  border-radius: 0 !important;
}

.news-content h3 a {
  color: var(--text-black) !important;
  font-weight: 700 !important;
  line-height: 1.40 !important;
  letter-spacing: var(--tracking-normal) !important;
}

.news-content h3 a:hover {
  color: var(--green-accent) !important;
}

.news-content span {
  color: var(--text-black-soft) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: var(--tracking-loose) !important;
  text-transform: uppercase !important;
}

.link-btn {
  color: var(--green-accent) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: var(--tracking-normal) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: gap 0.18s cubic-bezier(0.34,1.56,0.64,1), color 0.18s ease !important;
}

.link-btn:hover {
  color: var(--green-brand) !important;
  gap: 10px !important;
}

/* --------------------------------------------------------------------------
   16. Footer — House Green bookend
-------------------------------------------------------------------------- */
footer,
.footer-section,
.footer-area {
  background-color: var(--green-house) !important;
  background-image: none !important;
}

.footer-area::before,
.footer-section::before {
  display: none !important;
}

footer h3, footer h4, footer h5, footer h6,
.footer-section h3, .footer-section h4, .footer-section h5 {
  color: var(--text-white) !important;
  font-weight: 700 !important;
}

footer p, footer span,
.footer-section p, .footer-section span {
  color: var(--text-white-soft) !important;
  line-height: var(--lh-body) !important;
}

footer a,
.footer-section a {
  color: var(--text-white-soft) !important;
  transition: color 0.18s ease !important;
}

footer a:hover,
.footer-section a:hover {
  color: var(--green-light) !important;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a {
  color: #ffffff !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.30) !important;
  border-color: rgba(255,255,255,0.55) !important;
}

/* Footer bottom bar */
.footer-bottom,
.copyright-wrapper {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-bottom p, .footer-bottom a,
.copyright-wrapper p, .copyright-wrapper a {
  color: var(--text-white-soft) !important;
}

.footer-bottom a:hover,
.copyright-wrapper a:hover {
  color: var(--green-light) !important;
}

/* --------------------------------------------------------------------------
   17. Breadcrumb pages — warm canvas, no dark overlay
-------------------------------------------------------------------------- */
.breadcrumb-wrapper {
  background-color: var(--surface-warm) !important;
  background-image: none !important;
}

.breadcrumb-wrapper::before,
.breadcrumb-wrapper::after {
  display: none !important;
}

.breadcrumb-wrapper .page-heading h1,
.breadcrumb-wrapper .page-heading h2,
.breadcrumb-wrapper .breadcrumb-sub-title {
  color: var(--text-black) !important;
  text-shadow: none !important;
}

.breadcrumb-wrapper .breadcrumb-items li,
.breadcrumb-wrapper .breadcrumb-items li a,
.breadcrumb-wrapper .breadcrumb-items li i {
  color: var(--text-black-soft) !important;
}

.breadcrumb-wrapper .breadcrumb-items li a:hover {
  color: var(--green-accent) !important;
}

/* --------------------------------------------------------------------------
   18. Swiper pagination dots
-------------------------------------------------------------------------- */
.swiper-pagination-bullet {
  background: rgba(0,98,65,0.25) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--green-accent) !important;
}

/* Pagination bullet dots */
.swiper-dot .swiper-pagination-bullet {
  background: rgba(0,98,65,0.25) !important;
  opacity: 1 !important;
}

.swiper-dot .swiper-pagination-bullet-active {
  background: var(--green-accent) !important;
  width: 24px !important;
  border-radius: 10px !important;
}

/* --------------------------------------------------------------------------
   19. Preloader — warm canvas
-------------------------------------------------------------------------- */
.preloader {
  background-color: var(--surface-warm) !important;
}

.animation-preloader .spinner {
  border-color: var(--green-light) !important;
  border-top-color: var(--green-accent) !important;
}

.animation-preloader .letters-loading,
.animation-preloader .txt-loading {
  color: var(--green-house) !important;
  -webkit-text-stroke-color: var(--green-house) !important;
}

.loader .section-left .bg,
.loader .section-right .bg {
  background: var(--surface-warm) !important;
}

/* --------------------------------------------------------------------------
   20. Misc UI — back-to-top, cursor, scrollbar
-------------------------------------------------------------------------- */
.back-to-top {
  background: var(--green-accent) !important;
  color: var(--text-white) !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0,117,74,0.30) !important;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s ease !important;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 8px 24px rgba(0,117,74,0.40) !important;
}

/* Custom cursor tint */
.cursor-outer {
  border-color: var(--green-accent) !important;
}

.cursor-inner {
  background: var(--green-accent) !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-ceramic); }
::-webkit-scrollbar-thumb {
  background: rgba(0,98,65,0.35);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-accent);
}

/* --------------------------------------------------------------------------
   21. Floating Theme Switcher — standard position
-------------------------------------------------------------------------- */
#theme-switcher {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
}

#theme-toggle-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: var(--green-accent) !important;
  color: var(--text-white) !important;
  box-shadow: 0 4px 16px rgba(0,117,74,0.35) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1) !important;
}

#theme-toggle-btn:hover {
  transform: scale(1.08) !important;
}

#theme-panel {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.85) translateY(6px) !important;
  transform-origin: bottom right !important;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1) !important;
  background: var(--surface-white) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-float) !important;
  padding: 12px !important;
}

/* --------------------------------------------------------------------------
   22. Brand logo images
-------------------------------------------------------------------------- */
.brand-logo-img {
  width: 98%;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   23. Section spacing rhythm
-------------------------------------------------------------------------- */
.section-padding {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 991px) {
  .section-padding {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

/* ── Project cards — mobile overhaul ── */
@media (max-width: 767px) {
  .project-box-wrapper .project-card-items {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px !important;
    margin-bottom: 14px !important;
  }

  .project-box-wrapper .project-card-items .project-content {
    flex: 1 1 0;
    min-width: 0;
  }

  .project-box-wrapper .project-card-items .project-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }

  .project-box-wrapper .project-card-items .project-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .project-box-wrapper .project-card-items .project-thumb {
    width: 110px !important;
    height: 110px !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    border-radius: 8px !important;
    overflow: hidden;
  }

  .project-box-wrapper .project-card-items .project-thumb img {
    width: 110px !important;
    height: 110px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  /* Number badge — small top-left inside card */
  .project-box-wrapper .project-card-items h4 {
    display: block !important;
    position: static !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--green-accent) !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.05em;
  }
}

/* ── Global mobile fixes ── */
@media (max-width: 767px) {

  /* About: cap image height so it doesn't dominate */
  .about-wrapper .about-image img {
    min-height: 260px !important;
    max-height: 300px !important;
    object-fit: cover !important;
  }

  /* About: tighten section padding */
  .about-section.section-padding {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* About: heading font size */
  .about-wrapper .about-item .sec_title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }

  /* Service slider: reset negative margins that bleed off screen */
  .service-section .service-slider {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 30px !important;
  }

  /* Service cards: fix overflowing learn more button */
  .service-box-item .content .theme-btn {
    width: auto !important;
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 10px 24px !important;
  }

  /* Service section: tighten heading */
  .service-section .section-title h2 {
    font-size: 26px !important;
  }

  /* Counter section: show images on mobile as a horizontal strip */
  .counter-section .col-xl-6.col-lg-7 {
    display: block !important;
  }

  .counter-section .col-xl-6.col-lg-7 .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .counter-section .col-xl-6.col-lg-7 .row::-webkit-scrollbar {
    display: none;
  }

  .counter-section .col-xl-6.col-lg-7 .row > [class*="col-"] {
    flex: 0 0 auto !important;
    width: 160px !important;
    padding: 0 !important;
  }

  .counter-img-item img {
    width: 160px !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block;
  }

  .counter-wrapper .counter-content .text {
    margin-bottom: 16px !important;
  }

  /* Counter: collapse the massive top margin/padding on feature-top-item */
  .feature-top-item {
    margin-top: 40px !important;
    padding-top: 40px !important;
  }

  /* Counter: shrink icon boxes to fit mobile */
  .feature-icon-item {
    width: 80px !important;
    height: 80px !important;
    padding: 18px !important;
  }

  .feature-icon-item img {
    width: 100% !important;
    height: auto !important;
  }

  /* Testimonial: tighten card padding */
  .testimonial-section .testimonial-card,
  .testimonial-section .swiper-slide > div {
    padding: 24px !important;
  }

  /* Hero: tighten subheadline size */
  .hero-section .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  /* Brand/partner logos row: reduce height */
  .brand-section .brand-logo img,
  .brand-section img {
    max-height: 40px !important;
    width: auto !important;
  }
}

/* ── Home page iPhone polish ── */
@media (max-width: 575px) {
  body[data-page="home"] {
    overflow-x: hidden !important;
  }

  body[data-page="home"] .mouseCursor {
    display: none !important;
  }

  body[data-page="home"] .header-top-section .container-fluid,
  body[data-page="home"] header .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body[data-page="home"] .header-top-wrapper {
    min-height: 34px !important;
    padding: 4px 0 !important;
    gap: 8px !important;
  }

  body[data-page="home"] .header-top-wrapper .header-left span {
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  body[data-page="home"] .header-top-wrapper .header-left span i {
    margin-right: 4px !important;
  }

  body[data-page="home"] .header-top-wrapper .header-right .social-icon {
    gap: 7px !important;
  }

  body[data-page="home"] .header-top-wrapper .header-right .social-icon a {
    width: 26px !important;
    height: 26px !important;
    line-height: 24px !important;
    font-size: 12px !important;
    border-width: 1px !important;
  }

  body[data-page="home"] header,
  body[data-page="home"] .header-1 {
    margin-top: 34px !important;
  }

  body[data-page="home"] .sticky.header-1,
  body[data-page="home"] header.sticky {
    margin-top: 0 !important;
  }

  body[data-page="home"] .header-main {
    min-height: 58px !important;
    padding: 8px 0 !important;
  }

  body[data-page="home"] .header-main .logo img {
    width: 230px !important;
    max-height: 42px !important;
    object-fit: contain !important;
  }

  body[data-page="home"] .header__hamburger .sidebar__toggle {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body[data-page="home"] .header__hamburger .sidebar__toggle i {
    font-size: 24px !important;
  }

  body[data-page="home"] .hero-section.hero-1 {
    min-height: 520px !important;
    padding: 46px 0 52px !important;
    background-position: 58% top !important;
  }

  body[data-page="home"] .hero-section.hero-1 .hero-content h6 {
    max-width: 100% !important;
    margin-bottom: 14px !important;
    padding: 8px 14px !important;
    gap: 6px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
    white-space: normal !important;
  }

  body[data-page="home"] .hero-section.hero-1 .hero-content h6 img,
  body[data-page="home"] .section-title .sub-title img,
  body[data-page="home"] .section-title-area .sub-title img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
  }

  body[data-page="home"] .hero-section.hero-1 .hero-content h1 {
    font-size: 34px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    margin-bottom: 18px !important;
  }

  body[data-page="home"] .hero-section.hero-1 .hero-content > p {
    font-size: 15px !important;
    line-height: 1.58 !important;
    max-width: 335px !important;
    margin-bottom: 24px !important;
  }

  body[data-page="home"] .hero-1 .hero-content .hero-btn {
    width: min(100%, 335px) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body[data-page="home"] .hero-1 .hero-content .hero-btn .theme-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
  }

  body[data-page="home"] .brand-section {
    margin: 0 !important;
    padding: 34px 0 24px !important;
  }

  body[data-page="home"] .brand-section .section-title {
    margin-bottom: 22px !important;
  }

  body[data-page="home"] .brand-section .section-title .sub-title,
  body[data-page="home"] .about-wrapper .about-item .sub-title,
  body[data-page="home"] .service-section .sub-title {
    max-width: 100% !important;
    padding: 9px 14px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
  }

  body[data-page="home"] .brand-section p {
    max-width: 320px !important;
    margin: 14px auto 0 !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  body[data-page="home"] .brand-section .swiper {
    overflow: hidden !important;
    padding: 0 18px !important;
  }

  body[data-page="home"] .brand-box-1 {
    height: 96px !important;
    line-height: 96px !important;
    border-radius: 10px !important;
  }

  body[data-page="home"] .brand-box-1 .brand-img-1 img,
  body[data-page="home"] .brand-logo-img {
    max-width: 74% !important;
    max-height: 34px !important;
  }

  body[data-page="home"] .about-section.section-padding,
  body[data-page="home"] .service-section.section-padding,
  body[data-page="home"] .project-section.section-padding,
  body[data-page="home"] .counter-section.section-padding {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  body[data-page="home"] .about-section.section-padding {
    padding-top: 32px !important;
  }

  body[data-page="home"] .about-wrapper .about-image img {
    min-height: 220px !important;
    max-height: 250px !important;
    border-radius: 12px !important;
  }

  body[data-page="home"] .about-wrapper .about-content {
    margin-top: 24px !important;
  }

  body[data-page="home"] .about-wrapper .about-item .sec_title,
  body[data-page="home"] .about-wrapper .about-item .sec_title * {
    color: var(--text-black) !important;
    opacity: 1 !important;
  }

  body[data-page="home"] .about-wrapper .about-item .sec_title {
    font-size: 26px !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
  }

  body[data-page="home"] .about-wrapper .about-item .content-box p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  body[data-page="home"] .about-wrapper .about-item .content-box .theme-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    margin-top: 18px !important;
  }

  body[data-page="home"] .service-section {
    border-radius: 24px 24px 0 0 !important;
  }

  body[data-page="home"] .section-title-area {
    gap: 16px !important;
  }

  body[data-page="home"] .service-section .section-title h2 {
    font-size: 30px !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
  }

  body[data-page="home"] .sub-title,
  body[data-page="home"] .sub-title *,
  body[data-page="home"] .wow.sub-title {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body[data-page="home"] .service-section .sub-title,
  body[data-page="home"] .service-section .sub-title * {
    color: var(--green-brand) !important;
  }

  body[data-page="home"] .service-section .service-slider {
    margin-top: 24px !important;
    padding: 0 18px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .service-box-item {
    min-height: 0 !important;
    padding: 26px 24px !important;
    border-radius: 14px !important;
  }

  body[data-page="home"] .service-box-item .icon {
    width: 64px !important;
    height: 64px !important;
    line-height: 64px !important;
    margin-bottom: 22px !important;
  }

  body[data-page="home"] .service-box-item .content h3 {
    font-size: 25px !important;
    line-height: 1.18 !important;
  }

  body[data-page="home"] .service-box-item .content p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  body[data-page="home"] .service-box-item .content .theme-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    margin-top: 20px !important;
    border-radius: var(--radius-btn) !important;
  }
}

@media (max-width: 374px) {
  body[data-page="home"] .header-top-wrapper .header-left span {
    font-size: 10px !important;
  }

  body[data-page="home"] .header-top-wrapper .header-right .social-icon {
    gap: 5px !important;
  }

  body[data-page="home"] .header-top-wrapper .header-right .social-icon a {
    width: 24px !important;
    height: 24px !important;
    line-height: 22px !important;
  }

  body[data-page="home"] .header-main .logo img {
    width: min(230px, 68vw) !important;
  }
}

body[data-page="contact"] .contact-info-box:hover .content h4,
body[data-page="contact"] .contact-info-box:hover .content p,
body[data-page="contact"] .contact-info-box:hover .content p a,
body[data-page="contact"] .contact-info-box.active .content h4,
body[data-page="contact"] .contact-info-box.active .content p,
body[data-page="contact"] .contact-info-box.active .content p a,
body[data-page="contact"] .contact-info-box:hover .content p *,
body[data-page="contact"] .contact-info-box.active .content p * {
  color: #ffffff !important;
}
