
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #4A7164;
  --primary-dark: #1f3f36;
  --lime-green: #82c341;
  --accent: #ffe100;
  --badge-bg: #dff0c8;
  --badge-text: #4b8b2b;
  --dark-text: #071f1a;
  --muted-text: #556B64;
  --bg-light: #ffffff;
  --border-color: #e2ede8;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

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

/* Top Marquee Bar */
.top-ticker-bar {
  background: #1f3f36;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 13.5px;
  font-weight: 500;
}

.ticker-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-content { display: flex; gap: 35px; padding-right: 35px; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Header */
.main-header {
  position: sticky; top: 0; z-index: 100; background: #ffffff;
  border-radius: 0 0 38px 38px; box-shadow: 0 14px 28px rgba(0,0,0,0.15); margin-bottom: 20px;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 85px; position: relative; }
.brand-logo-img img { height: 65px; width: auto; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 15px; list-style: none; }
.nav-link {
  font-size: 12px; font-weight: 600; text-transform: uppercase; color: #071f1a;
  padding: 8px 12px; border-radius: 20px; letter-spacing: 0.5px; transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: #e63222; }
.nav-link.active { background: #dff0c8; color: #4b8b2b; padding: 10px 18px; border-radius: 50px; }

.header-enquiry-btn {
  background: #ffe100; color: #1a2e27; border-radius: 50px; padding: 16px 34px;
  font-size: 14px; font-weight: 700; text-transform: uppercase; box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}
.header-enquiry-btn:hover { background: #ffd400; transform: translateY(-2px); }

/* Mega Menu Dropdown (Full Header Width - Logo to Enquiry Form) */
.has-mega-nav { position: static; }
.has-mega-nav::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.mega-menu-exact {
  position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #ffffff;
  border-radius: 22px; box-shadow: 0 25px 60px rgba(0,0,0,0.18); display: none; overflow: hidden; z-index: 500; margin-top: 10px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease; min-height: 460px;
}
.has-mega-nav:hover .mega-menu-exact,
.has-mega-nav.open .mega-menu-exact { display: flex !important; }

.mega-sidebar { width: 250px; background: #82c341; padding: 20px 0; flex-shrink: 0; display: flex; flex-direction: column; }
.mega-tab-btn {
  padding: 16px 26px; color: #ffffff; font-weight: 600; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; transition: all 0.2s ease;
  user-select: none;
}
.mega-tab-btn:hover, .mega-tab-btn.active { background: #ffffff; color: #4b8b2b; font-weight: 700; padding-left: 30px; }
.mega-tab-btn .arrow { font-size: 16px; transition: transform 0.2s ease; }
.mega-tab-btn:hover .arrow, .mega-tab-btn.active .arrow { transform: translateX(3px); color: #82c341; }

.mega-content-area { flex: 1; padding: 30px 40px; background: #fafdfb; min-height: 460px; border-radius: 0 22px 22px 0; overflow-y: auto; }
.mega-tab-pane { display: none; animation: megaPaneFade 0.25s ease; }
.mega-tab-pane.active { display: block; }

@keyframes megaPaneFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 30px; }
.mega-group-col h5 { font-family: 'Playfair Display', serif; font-size: 15px; color: #2b5438; margin-bottom: 14px; font-weight: 700; border-bottom: 2px solid #e2eee8; padding-bottom: 6px; }
.mega-prod-card { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid #eef4f1; border-radius: 14px; background: #ffffff; margin-bottom: 12px; transition: all 0.25s ease; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.mega-prod-card:hover { border-color: #82c341; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(130,195,65,0.18); }
.mega-prod-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; transition: transform 0.2s ease; }
.mega-prod-card:hover img { transform: scale(1.08); }
.mega-prod-info { display: flex; flex-direction: column; }
.mega-prod-info .prod-name { font-size: 13.5px; font-weight: 700; color: #1f3f36; line-height: 1.3; }
.mega-prod-info .prod-sub { font-size: 11.5px; color: #777777; margin-top: 2px; }

.view-all-link { display: inline-block; font-size: 13px; font-weight: 700; color: #4b8b2b; margin-top: 8px; transition: all 0.2s ease; }
.view-all-link:hover { color: #82c341; text-decoration: underline; transform: translateX(3px); }

/* Hero Slider & Banners */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 680px;
  max-height: 85vh;
  overflow: hidden;
  margin-top: -15px;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
}

.hero-slide-contents {
  max-width: 580px;
  color: #ffffff;
  padding-left: 20px;
  animation: heroContentFade 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-slide-contents.text-center {
  margin: 0 auto;
  text-align: center;
  padding-left: 0;
  max-width: 640px;
}

@keyframes heroContentFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand-gold {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #D6A84F;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-brand-white {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 15px;
}

.hero-slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0,0,0,0.5);
  margin-bottom: 12px;
}

.hero-slide-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 25px;
  max-width: 480px;
}

.hero-btn-pilled {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.hero-btn-pilled:hover {
  background: #ffffff;
  color: #1f3f36;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Slider Controls */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-nav-arrow:hover {
  background: rgba(130,195,65,0.85);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-arrow.prev { left: 25px; }
.hero-nav-arrow.next { right: 25px; }

.hero-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #82c341;
  width: 32px;
  border-radius: 10px;
}

/* Category Strip Container & Section below Hero */
.arka-category-section-wrap {
  background: #000000;
  padding: 35px 0 55px;
  margin-top: 0;
}

.arka-category-strip {
  max-width: 1260px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.arka-cat-item {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #222222;
  position: relative;
  transition: all 0.35s ease;
  background: #ffffff;
  padding: 12px 8px;
}

.arka-cat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #e5e5e5;
}

.arka-cat-icon {
  font-size: 26px;
  color: #725b46;
  transition: all 0.35s ease;
}

.arka-cat-item:nth-child(1) .arka-cat-icon,
.arka-cat-item:nth-child(5) .arka-cat-icon {
  color: #7d943e;
}

.arka-cat-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  line-height: 1.2;
}

.arka-cat-item:hover {
  background: #f7fbf9;
  transform: translateY(-3px);
}

.arka-cat-item:hover .arka-cat-icon {
  color: #4A7164;
  transform: scale(1.15);
}

.arka-cat-item:hover .arka-cat-title {
  color: #4A7164;
}

/* Bring Life Section below Category Strip */
.bring-life-grid-container {
  max-width: 1280px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.bring-life-left-image {
  background: url('https://peachpuff-gull-970846.hostingersite.com/wp-content/uploads/2026/06/ChatGPT-Image-Jun-28-2026-04_47_36-PM.png') center/cover no-repeat;
  min-height: 480px;
}

.bring-life-right-box {
  background: linear-gradient(135deg, #050505 0%, #111111 50%, #000000 100%);
  padding: 55px 45px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bring-life-right-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(74,113,100,0.20);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.bring-life-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.bring-life-title span {
  color: #8FC7B7;
}

.bring-life-gold-sub {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  color: #F6D08A;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.bring-life-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: #E8E8E8;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.bring-life-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 34px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.bring-life-view-btn:hover {
  background: #4A7164;
  border-color: #4A7164;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74,113,100,0.35);
}

@media (max-width: 992px) {
  .bring-life-grid-container {
    grid-template-columns: 1fr;
  }
  .arka-category-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .arka-category-strip {
    display: flex;
    overflow-x: auto;
  }
  .arka-cat-item {
    min-width: 125px;
  }
  .hero-slider-section {
    height: 380px;
  }
  .hero-brand-gold { font-size: 24px; }
  .hero-slide-title { font-size: 24px; }
}

/* ARKA Green Paint - Welcome & Leadership Section (Scraped Main Site Exact) */
.agp-home {
  --agp-cream: #FBF8F1;
  --agp-ink: #2B2A25;
  --agp-green-deep: #3F6B1F;
  --agp-green-bright: #8DC63F;
  --agp-clay: #B5651D;
  --agp-clay-soft: #E7D3BE;
  --agp-line: #E4E0D4;

  background: var(--agp-cream);
  color: var(--agp-ink);
  font-family: 'Poppins', 'Work Sans', Arial, sans-serif;
  padding: 60px 0 70px;
  overflow: hidden;
}

.agp-home * { box-sizing: border-box; }

.agp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.agp-eyebrow {
  font-family: 'Poppins', 'Work Sans', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--agp-clay);
  font-weight: 600;
  margin-bottom: 10px;
}

.agp-heading {
  font-family: 'Playfair Display', 'Fraunces', 'Georgia', serif;
  font-weight: 600;
  font-size: 38px;
  color: var(--agp-green-deep);
  margin: 0 0 20px;
  line-height: 1.15;
}

.agp-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: #3C3B34;
  margin-bottom: 18px;
}

.agp-home p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3C3B34;
  margin: 0 0 18px;
}

.agp-home strong { color: var(--agp-green-deep); font-weight: 700; }

/* Strata divider */
.agp-strata {
  display: flex;
  height: 14px;
  margin: 44px 0;
  width: 100%;
}

.agp-strata span {
  flex: 1;
  height: 100%;
}

.agp-strata span:nth-child(1) { background: #8DC63F; }
.agp-strata span:nth-child(2) { background: #6C9A38; }
.agp-strata span:nth-child(3) { background: #B5651D; }
.agp-strata span:nth-child(4) { background: #8C5A2E; }
.agp-strata span:nth-child(5) { background: #3F6B1F; }

/* Facts strip */
.agp-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.agp-fact {
  background: #ffffff;
  border: 1px solid var(--agp-line);
  border-radius: 6px;
  padding: 24px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.agp-fact-num {
  font-family: 'Playfair Display', 'Fraunces', 'Georgia', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--agp-green-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.agp-fact-label {
  font-size: 14px;
  color: #5B5A50;
  font-weight: 500;
}

.agp-fact-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--agp-clay-soft);
  border: none;
  border-radius: 6px;
  padding: 18px 24px;
}

.agp-fact-icon {
  color: var(--agp-clay);
  font-size: 16px;
  flex: none;
}

.agp-fact-wide .agp-fact-label {
  color: #4A3B2A;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

/* Leadership cards */
.agp-people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 15px;
}

.agp-card {
  background: #ffffff;
  border: 1px solid var(--agp-line);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.agp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(63,107,31,.12);
}

.agp-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--agp-green-deep);
  color: #ffffff;
  font-family: 'Playfair Display', 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agp-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--agp-ink);
}

.agp-role {
  font-size: 13px;
  color: var(--agp-clay);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  font-weight: 600;
}

/* Featured Products Section - Animated Auto Slider */
.featured-section-wrap {
  width: 100%;
  padding: 70px 0 60px;
  background: #ffffff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-section-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 35px;
  text-align: left;
}

.featured-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 25px;
}

.featured-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-card-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 15px 22px;
  text-align: center;
  border: 1px solid #f0f4f2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.featured-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(74,113,100,0.15);
  border-color: #82c341;
}

.featured-card-img-wrap {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.featured-card-img-wrap img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.featured-card-item:hover .featured-card-img-wrap img {
  transform: scale(1.06);
}

.featured-prod-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f3f36;
  margin-bottom: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.featured-prod-cat {
  font-size: 11px;
  font-weight: 700;
  color: #888888;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.featured-read-btn {
  display: inline-block;
  background: #82c341;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.featured-read-btn:hover {
  background: #6ea832;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(130,195,65,0.4);
}

/* ARKA Premium Colour Catalogue (Main Site Exact) */
.arka-catalogue-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 35px 20px;
  background: #ffffff;
  overflow: hidden;
}

.catalogue-box {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(-45deg, #f7fbf9, #ffffff, #edf5f1, #f4faf7);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  font-family: 'Playfair Display', serif;
  overflow: hidden;
  position: relative;
}

.catalogue-box::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 350px; height: 350px;
  background: rgba(74,113,100,0.08);
  border-radius: 50%;
  animation: float1 10s ease-in-out infinite;
  pointer-events: none;
}

.catalogue-box::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: rgba(74,113,100,0.05);
  border-radius: 50%;
  animation: float2 12s ease-in-out infinite;
  pointer-events: none;
}

.catalogue-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #2b5438;
  position: relative;
  z-index: 2;
}

.catalogue-subtitle {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Color Swatches Carousel */
.color-buttons {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 8px 22px;
  margin-bottom: 30px;
  scroll-behavior: smooth;
  position: relative;
  z-index: 2;
}

.color-buttons::-webkit-scrollbar {
  height: 8px;
}

.color-buttons::-webkit-scrollbar-thumb {
  background: #4A7164;
  border-radius: 50px;
}

.color-buttons::-webkit-scrollbar-track {
  background: #e8efeb;
  border-radius: 50px;
}

.color-btn {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  position: relative;
}

.color-btn:hover,
.color-btn.active {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  outline: 3.5px solid #4A7164;
  outline-offset: 3px;
}

/* Main Room & Shades Layout */
.main-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.room-image {
  flex: 1.7;
  min-width: 420px;
}

.room-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  background: #f4f4f4;
}

.room-image img:hover {
  transform: scale(1.015);
}

.color-panel {
  flex: 1;
  min-width: 340px;
  background: #ffffff;
  padding: 28px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.selected-colour-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #263f38;
  margin-bottom: 20px;
}

#shades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.shade {
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
  cursor: default;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  user-select: none;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(25px); }
  100% { transform: translateY(0); }
}

@keyframes float2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Design Inspiration Section */
.design-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 20px;
}

.design-header {
  font-family: 'Playfair Display', serif !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.design-header h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #222222;
}

.design-header p {
  margin-top: 6px;
  color: #666666;
  font-size: 15px;
}

.view-btn {
  padding: 10px 22px;
  border: 1px solid #222222;
  border-radius: 8px;
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #222222;
  color: #ffffff;
  transform: translateY(-2px);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.design-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  background: #000000;
  transition: all 0.4s ease;
}

.design-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.design-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.design-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #ffffff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.design-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 5px;
}

.design-content p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

.design-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.design-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.9);
}

.design-card:hover::before {
  opacity: 1;
}

.design-card:hover .design-content {
  opacity: 1;
  transform: translateY(0);
}

.design-full-banner-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 50px;
  overflow: hidden;
}

.design-full-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Products We Offer Showcase */
.arka-products-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 70px 20px;
  background: linear-gradient(135deg, #f7fbf9, #ffffff, #eef7f3);
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  overflow: hidden;
}

.arka-products-inner {
  max-width: 1350px;
  margin: 0 auto;
}

.arka-products-head {
  text-align: center;
  margin-bottom: 42px;
}

.arka-products-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: #263f38;
  margin: 0 0 10px;
}

.arka-products-head h2 span {
  color: #4A7164;
}

.arka-products-head p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.arka-products-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  align-items: stretch;
}

.arka-product-tabs {
  background: #ffffff;
  border: 1px solid rgba(74,113,100,0.16);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.arka-product-tab {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 14px;
  cursor: pointer;
  border-radius: 16px;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.35s ease;
  text-align: left;
}

.arka-product-tab:last-child {
  border-bottom: 0;
}

.arka-product-tab:hover,
.arka-product-tab.active {
  background: linear-gradient(135deg, #eef7f3, #ffffff);
  transform: translateX(6px);
  box-shadow: 0 12px 26px rgba(74,113,100,0.14);
}

.arka-tab-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #8fb7ad;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: 0.35s ease;
}

.arka-product-tab.active .arka-tab-icon,
.arka-product-tab:hover .arka-tab-icon {
  background: #4A7164;
  transform: scale(1.08);
}

.arka-tab-text h4 {
  font-size: 16px;
  color: #1f1f1f;
  margin: 0 0 4px;
  font-weight: 700;
}

.arka-tab-text span {
  font-size: 12.5px;
  color: #777777;
  line-height: 1.4;
}

.arka-product-preview {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
  background: #e8f4ef;
}

.arka-product-preview img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease;
}

.arka-product-preview:hover img {
  transform: scale(1.04);
}

.arka-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.18), rgba(0,0,0,0.05));
  z-index: 2;
}

.arka-preview-content {
  position: absolute;
  left: 38px;
  bottom: 38px;
  z-index: 3;
  max-width: 460px;
}

.arka-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(5px);
}

.arka-preview-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 12px;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.arka-preview-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #f2f2f2;
  margin: 0 0 20px;
}

.arka-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  background: #4A7164;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.35s ease;
}

.arka-preview-btn:hover {
  background: #ffffff;
  color: #4A7164;
  transform: translateY(-3px);
}

.arka-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 6px solid rgba(255,255,255,0.55);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 4;
  animation: pulseDot 2s infinite;
}

.arka-hotspot.one { top: 22%; left: 20%; }
.arka-hotspot.two { top: 48%; right: 28%; }
.arka-hotspot.three { top: 18%; right: 8%; }

@keyframes pulseDot {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Colour Inspiration Section */
.colour-inspiration-wrap {
  max-width: 1400px;
  margin: 70px auto;
  padding: 0 20px;
}

.colour-inspiration-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #1f3f36;
  margin: 0 0 8px;
}

.colour-inspiration-head p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 35px;
}

.colour-inspiration-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  align-items: center;
}

.colour-inspiration-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.colour-inspiration-img-box img:hover {
  transform: scale(1.015);
}

/* FAQ Section */
.arka-faq-section-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 20px;
  background: linear-gradient(-45deg, #4A7164, #5f8f81, #7fb8a7, #5f8f81, #4A7164);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  overflow: hidden;
}

.arka-faq-section {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 45px 35px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  font-family: 'Poppins', sans-serif;
}

.arka-wrap {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.arka-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 20px 24px;
  font-size: 17.5px;
  font-weight: 600;
  cursor: pointer;
  color: #2b5a4e;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 14px;
  font-size: 28px;
  font-weight: bold;
  color: #4A7164;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

/* Paint Calculator & Forms */
.calc-card { background: #ffffff; border-radius: 24px; padding: 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid var(--border-color); }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: #1f3f36; margin-bottom: 8px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid #777; border-radius: 6px; background: #fff9df; padding: 13px 14px; font-size: 14px; margin-bottom: 15px; }

.arka-contact-form { background: #ffffff; padding: 35px; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.arka-contact-form label { display: block; font-size: 14px; font-weight: 600; color: #1f3f36; margin-bottom: 8px; text-transform: uppercase; }
.arka-contact-form label span { color: red; }
.arka-contact-form input, .arka-contact-form textarea, .arka-contact-form select { width: 100%; border: 1px solid #777; border-radius: 6px; background: #fff9df; padding: 13px 14px; font-size: 14px; margin-bottom: 20px; }
.arka-contact-form textarea { height: 130px; }
.arka-submit-btn { background: #4A7164 !important; color: #ffffff !important; border: none !important; padding: 14px 30px !important; border-radius: 10px !important; font-weight: 700 !important; cursor: pointer; }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-content { background: #ffffff; border-radius: 24px; width: 100%; max-width: 600px; padding: 35px; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 20px; right: 20px; background: #f0f4f2; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; }

/* ARKA Final Responsive Footer (Main Site Exact) */
.arka-final-footer,
.arka-final-footer * {
  box-sizing: border-box;
}

.arka-final-footer {
  --arka-black: #000000;
  --arka-black-light: #111111;
  --arka-teal: #118d8b;
  --arka-aqua: #27b8b6;
  --arka-green: #85bd67;
  --arka-white: #ffffff;
  --arka-grey: #c4cbc7;
  --arka-muted: #8e9892;
  --arka-border: rgba(255,255,255,0.11);

  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--arka-grey);
  background: #000000 !important;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  margin-top: 0;
}

.arka-final-footer-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 50px 22px 30px;
}

.arka-footer-lower-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.95fr 1.15fr;
  gap: 22px;
  align-items: start;
}

/* Company Visiting Card */
.arka-footer-company-card {
  position: relative;
  width: 100%;
  padding: 28px 24px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.arka-company-card-grid {
  display: block;
}

.arka-company-card-left {
  text-align: center;
  padding-bottom: 12px;
}

.arka-company-card-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.arka-company-divider {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #24b8b6;
  margin: 0 0 16px;
}

.arka-company-card-right {
  min-width: 0;
}

.arka-company-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.arka-company-title h2 {
  margin: 0;
  color: var(--arka-teal);
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.arka-company-tm {
  position: relative;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--arka-teal);
  border-radius: 50%;
  color: var(--arka-teal);
  font-size: 9px;
  font-weight: 700;
}

.arka-company-subtitle {
  margin: 2px 0 18px;
  color: var(--arka-teal);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.arka-card-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arka-card-contact-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.arka-card-contact-icon {
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #050505;
  font-size: 11px;
}

.arka-card-contact-content {
  color: #282425;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

.arka-card-contact-content a {
  display: block;
  color: #282425 !important;
  text-decoration: none !important;
  transition: .3s ease;
  word-break: break-word;
}

.arka-card-contact-content a:hover {
  color: var(--arka-teal) !important;
}

/* Accordion block */
.arka-footer-block {
  min-width: 0;
  border: 1px solid var(--arka-border);
  border-radius: 17px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
}

.arka-footer-block-heading {
  width: 100%;
  min-height: 60px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  cursor: default;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.arka-footer-heading-text {
  position: relative;
  padding-bottom: 10px;
}

.arka-footer-heading-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 5px;
  background: var(--arka-green);
}

.arka-footer-heading-text::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 0;
  width: 8px;
  height: 3px;
  border-radius: 5px;
  background: var(--arka-aqua);
}

.arka-footer-block-panel {
  padding: 0 20px 22px;
}

.arka-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arka-footer-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.arka-footer-menu li:last-child {
  border-bottom: 0;
}

.arka-footer-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
  transition: .3s ease;
}

.arka-footer-menu a::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--arka-green);
  border-right: 2px solid var(--arka-green);
  transform: rotate(45deg);
}

.arka-footer-menu a:hover {
  padding-left: 7px;
  color: var(--arka-green) !important;
}

.arka-footer-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 13px;
  background: #242624;
}

.arka-footer-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
}

/* Social Icons */
.arka-footer-social {
  display: grid;
  grid-template-columns: repeat(4, 43px);
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin: 30px auto 0;
}

.arka-footer-social a {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  color: #ffffff !important;
  background: var(--arka-black-light);
  text-decoration: none !important;
  font-size: 16px;
  transition: .3s ease;
}

.arka-footer-social a:hover {
  color: #132017 !important;
  border-color: var(--arka-green);
  background: var(--arka-green);
  transform: translateY(-4px);
}

/* Copyright Bar */
.arka-footer-copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.09);
  background: #141414;
  padding: 18px 22px;
  text-align: center;
}

.arka-footer-copyright-bar p {
  margin: 0;
  color: var(--arka-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.arka-footer-copyright-bar strong {
  color: #ffffff;
}

@media (max-width: 1050px) {
  .arka-footer-lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .arka-footer-lower-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US PAGE STYLES (MAIN SITE EXACT)
   ===================================================== */

/* Who We Are Section */
.arka-about-hero {
  padding: 80px 20px 60px;
  background: #ffffff;
}

.arka-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.arka-about-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  display: block;
}

.arka-about-hero-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #4A7164;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.arka-about-hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.25;
  color: #111111;
  font-weight: 800;
  margin-bottom: 24px;
}

.arka-about-hero-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #555555;
  margin-bottom: 18px;
}

/* Compact Services Section */
.arka-services {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef7f1);
}

.arka-container {
  max-width: 1380px;
  margin: auto;
}

.arka-heading {
  font-family: 'Playfair Display', serif !important;
  text-align: center;
  margin-bottom: 45px;
}

.arka-heading span {
  display: inline-block;
  padding: 8px 20px;
  background: #85BD67;
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-heading h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px;
  margin: 15px 0;
  color: #111;
  font-weight: 800;
}

.arka-heading p {
  max-width: 780px;
  margin: auto;
  color: #666;
  line-height: 1.7;
  font-size: 15.5px;
}

.arka-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.arka-card {
  border-radius: 22px;
  padding: 28px 22px;
  min-height: 240px;
  transition: .4s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.card1 { background: linear-gradient(135deg, #4A7164, #6d9b8d); }
.card2 { background: linear-gradient(135deg, #10B981, #34D399); }
.card3 { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.card4 { background: linear-gradient(135deg, #F97316, #FB923C); }
.card5 { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }

.arka-card:hover {
  background: #FEC6A8;
  transform: translateY(-8px);
}

.arka-card:hover h3,
.arka-card:hover p {
  color: #111;
}

.arka-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.arka-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}

.arka-card p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  color: #fff;
}

/* Latest Project Carousel Section */
.arka-latest-projects {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.arka-latest-projects .sub-title {
  color: #4A7164;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-latest-projects h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin: 10px 0 35px;
}

.project-carousel-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
}

.project-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.project-slide {
  min-width: calc(33.333% - 14px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.project-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-slide:hover img {
  transform: scale(1.05);
}

/* Why Choose Us Section */
.arka-why {
  position: relative;
  overflow: hidden;
  padding: 85px 25px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff3ec 30%, #fef6f1 60%, #ffffff 100%);
}

.arka-why::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #FEC6A8;
  border-radius: 50%;
  filter: blur(120px);
  top: -150px;
  left: -120px;
  opacity: .3;
}

.arka-why::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #85BD67;
  border-radius: 50%;
  filter: blur(120px);
  bottom: -120px;
  right: -120px;
  opacity: .25;
}

.arka-why-about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.arka-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #85BD67;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2937;
  margin: 18px 0;
}

.arka-desc {
  color: #666;
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 35px;
}

.arka-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.arka-feature {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 24px;
  padding: 25px;
  transition: .4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.arka-feature:hover {
  background: #FEC6A8;
  transform: translateY(-10px);
}

.arka-feature:hover h4,
.arka-feature:hover p {
  color: #fff;
}

.arka-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #85BD67, #5FA945);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
  transition: .5s ease;
}

.arka-feature:hover .arka-feature-icon {
  background: #fff;
  color: #FEC6A8;
  transform: rotateY(360deg);
}

.arka-feature h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2937;
  font-weight: 700;
}

.arka-feature p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.paint-area {
  position: relative;
  height: 380px;
  max-width: 420px;
  margin: auto;
}

.color-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
}

.blob1 {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #ff4d6d, #ff8b5e);
  top: 20px;
  left: 10px;
  animation: float1 6s ease-in-out infinite;
}

.blob2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #85BD67, #5FA945);
  bottom: 20px;
  right: 10px;
  animation: float2 7s ease-in-out infinite;
}

.blob3 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #00AEEF, #6C63FF);
  top: 110px;
  right: 60px;
  animation: float3 8s ease-in-out infinite;
}

.paint-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(#ff4d6d, #ff8b5e, #ffd166, #85BD67, #00AEEF, #6C63FF, #ff4d6d);
  animation: spin 15s linear infinite;
  box-shadow: 0 25px 70px rgba(0,0,0,.12);
}

.paint-wheel::before {
  content: "";
  position: absolute;
  inset: 32px;
  background: #fff;
  border-radius: 50%;
}

.paint-wheel::after {
  content: "🎨";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 65px;
}

@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

@keyframes float1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-20px);} }
@keyframes float2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(20px);} }
@keyframes float3 { 0%,100%{transform:translateX(0);} 50%{transform:translateX(15px);} }

/* Our History Timeline Section */
.arka-history-v2 {
  --arka-green: #4A7164;
  --arka-dark: #23463C;
  --arka-light: #85BD67;
  --arka-lime: #A4D65E;
  --arka-soft: #EEF6F1;
  --arka-white: #FFFFFF;
  --arka-text: #313C38;
  --arka-muted: #68736F;

  position: relative;
  width: 100%;
  padding: 85px 20px;
  overflow: hidden;
  color: var(--arka-text);
  font-family: 'Poppins', Inter, Arial, sans-serif;
  background: radial-gradient(circle at 8% 10%, rgba(133,189,103,.17), transparent 27%),
              radial-gradient(circle at 95% 70%, rgba(74,113,100,.13), transparent 29%),
              linear-gradient(135deg, #F6FAF7 0%, #FFFFFF 47%, #EEF6F1 100%);
}

.arka-history-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.arka-history-top {
  max-width: 830px;
  margin: 0 auto 60px;
  text-align: center;
}

.arka-history-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 18px;
  border: 1px solid rgba(74,113,100,.14);
  border-radius: 50px;
  color: var(--arka-dark);
  background: rgba(133,189,103,.17);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-history-top h2 {
  margin: 0 0 16px;
  color: #19372E;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
}

.arka-history-top p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--arka-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.arka-history-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.arka-history-intro {
  position: sticky;
  top: 110px;
  padding: 40px 35px;
  border: 1px solid rgba(74,113,100,.11);
  border-radius: 28px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 20px 50px rgba(36,71,61,.10);
  backdrop-filter: blur(12px);
}

.arka-history-intro-label {
  display: block;
  margin-bottom: 12px;
  color: var(--arka-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arka-history-intro h3 {
  margin: 0 0 18px;
  color: #1D3C32;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 34px;
  line-height: 1.25;
}

.arka-history-intro p {
  margin: 0 0 16px;
  color: var(--arka-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

.arka-history-highlight {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--arka-light);
  border-radius: 0 15px 15px 0;
  color: #29483E;
  background: linear-gradient(135deg, rgba(133,189,103,.15), rgba(74,113,100,.06));
  font-size: 13.5px;
  line-height: 1.75;
}

.arka-timeline-v2 {
  position: relative;
  padding-left: 55px;
}

.arka-timeline-v2::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 18px;
  width: 3px;
  border-radius: 20px;
  background: linear-gradient(to bottom, var(--arka-green), var(--arka-light), rgba(133,189,103,.18));
}

.arka-timeline-item {
  position: relative;
  margin-bottom: 22px;
}

.arka-timeline-dot {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: -55px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #F5FAF7;
  border-radius: 50%;
  background: #BFDDAE;
  cursor: pointer;
  transition: all .35s ease;
}

.arka-timeline-item.active .arka-timeline-dot {
  background: var(--arka-green);
  transform: scale(1.08);
}

.arka-timeline-card {
  position: relative;
  border: 1px solid rgba(74,113,100,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(36,71,61,.08);
}

.arka-timeline-trigger {
  width: 100%;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  outline: 0;
  cursor: pointer;
  background: transparent;
}

.arka-timeline-year {
  color: var(--arka-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.arka-timeline-subtitle {
  display: block;
  color: var(--arka-muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.arka-timeline-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}

.arka-timeline-detail-inner {
  padding: 0 26px 24px;
}

.arka-timeline-detail p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  color: #46534E;
  background: linear-gradient(135deg, #F3F8F5, #EDF5F0);
  font-size: 14px;
  line-height: 1.8;
}

.arka-timeline-item.active .arka-timeline-detail {
  max-height: 350px;
  opacity: 1;
}

.arka-history-summary {
  margin-top: 60px;
  padding: 32px 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-radius: 26px;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--arka-dark), var(--arka-green));
}

.arka-summary-item {
  text-align: center;
}

.arka-summary-number {
  display: block;
  color: #B8ED8B;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.arka-summary-text {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

/* Our Commitment Section */
.arka-commitment {
  padding: 85px 20px;
  background: #f5f5f5;
}

.commit-head {
  text-align: center;
  margin-bottom: 50px;
}

.commit-head span {
  display: block;
  color: #E61F23;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.commit-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  color: #000;
  font-weight: 800;
  margin: 0 0 20px;
}

.commit-head p {
  max-width: 880px;
  margin: auto;
  color: #555;
  line-height: 1.8;
  font-size: 16.5px;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.commit-card {
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  transition: .4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.commit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.mission { background: #E61F23; }
.vision { background: #4D9DD1; }
.values { background: #8BC34A; }

.icon-box {
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 34px;
  color: #111;
  transition: .4s ease;
}

.commit-card:hover .icon-box {
  transform: scale(1.08) rotate(8deg);
}

.commit-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}

.commit-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #fff;
  margin: 0;
}

@media (max-width: 1100px) {
  .arka-about-hero-grid,
  .arka-why-grid,
  .arka-history-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .arka-grid { grid-template-columns: repeat(2, 1fr); }
  .commit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .arka-grid { grid-template-columns: 1fr; }
  .arka-features { grid-template-columns: 1fr; }
  .commit-head h2 { font-size: 36px; }
}

/* 2-Level Flyout Services Dropdown (Main Site Exact) */
.has-services-flyout {
  position: relative;
}

.services-flyout-main {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
  pointer-events: none;
}

.has-services-flyout:hover .services-flyout-main {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyout-parent {
  position: relative;
}

.flyout-parent-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: #444444 !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.flyout-parent:hover > .flyout-parent-link {
  color: #4A7164 !important;
  background: #f4f9f6;
}

.flyout-arrow {
  font-size: 16px;
  font-weight: 600;
  color: #888888;
}

.flyout-parent:hover > .flyout-parent-link .flyout-arrow {
  color: #4A7164;
}

/* Child Flyout Sub-Menu (Pops out to the Right) */
.flyout-sub {
  position: absolute;
  top: 0;
  left: 100%;
  width: 290px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
  pointer-events: none;
}

.flyout-parent:hover > .flyout-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyout-sub li a {
  display: block;
  padding: 9px 20px;
  color: #555555 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.flyout-sub li a:hover {
  background: #f4f9f6;
  color: #4A7164 !important;
  padding-left: 24px;
}

/* Service Page Components (Main Site Exact) */
.arka-service-overview {
  width: 100%;
  padding: 50px 18px 30px;
  background: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  text-align: center;
}

.arka-service-overview-inner {
  max-width: 920px;
  margin: 0 auto;
}

.arka-service-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #4A7164;
  margin-bottom: 6px;
}

.arka-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.arka-service-icon span {
  width: 34px;
  height: 1px;
  background: #d8c8a5;
  display: inline-block;
}

.arka-service-icon i {
  color: #D7A84E;
  font-size: 16px;
  font-style: normal;
}

.arka-service-overview h2 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 14px;
}

.arka-service-overview p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #444444;
  margin: 0 auto;
  max-width: 850px;
}

/* Why Choose ARKA Grid */
.arka-why-service {
  width: 100%;
  padding: 25px 15px 45px;
  background: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
}

.arka-why-title {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f6b54;
  margin: 0 0 24px;
}

.arka-why-service-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.arka-why-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 26px 18px 24px;
  text-align: center;
  box-shadow: 0 7px 22px rgba(0,0,0,.06);
  transition: all .35s ease;
}

.arka-why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 35px rgba(74,113,100,.16);
  border-color: #b9d2c9;
}

.arka-why-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f6b54;
  font-size: 32px;
  line-height: 1;
}

.arka-why-card h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: #1d5e4d;
  margin: 0 0 10px;
}

.arka-why-card p {
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 400;
  color: #555555;
  margin: 0 auto;
}

/* What We Offer Section */
.arka-service-cards-section {
  width: 100%;
  padding: 40px 15px 50px;
  background: #fcfdfe;
  font-family: 'Inter', Arial, sans-serif;
}

.arka-service-cards-title {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f6b54;
  margin: 0 0 28px;
}

.arka-service-cards-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.arka-service-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(0,0,0,.06);
  transition: all .35s ease;
  position: relative;
}

.arka-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(74,113,100,.16);
  border-color: #b9d2c9;
}

.arka-service-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.arka-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all .45s ease;
}

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

.arka-service-card .arka-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dfeee9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f6b54;
  font-size: 20px;
  position: absolute;
  left: 16px;
  bottom: -22px;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.arka-service-content {
  padding: 34px 18px 22px;
}

.arka-service-content h3 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: #111111;
  margin: 0 0 10px;
}

.arka-service-content p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* Our Process Section */
.arka-process-section {
  width: 100%;
  padding: 45px 15px 60px;
  background: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
}

.arka-process-title {
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f6b54;
  margin: 0 0 40px;
}

.arka-process-wrap {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.arka-process-item {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.arka-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #8fb7ad;
  z-index: 1;
}

.arka-process-icon-box {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(31,107,84,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arka-process-number {
  position: absolute;
  top: -4px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1f6b54;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.arka-process-icon {
  font-size: 32px;
  color: #1f6b54;
  line-height: 1;
  transition: all .35s ease;
}

.arka-process-item h3 {
  font-size: 15px;
  font-weight: 800;
  color: #1f6b54;
  margin: 0 0 9px;
}

.arka-process-item p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #555555;
  margin: 0 auto;
  max-width: 180px;
}

@media(max-width: 1100px) {
  .arka-why-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .arka-why-service-grid { grid-template-columns: repeat(3, 1fr); }
  .arka-process-wrap { grid-template-columns: repeat(3, 1fr); gap: 30px 15px; }
  .arka-process-item:not(:last-child)::after { display: none; }
}

@media(max-width: 768px) {
  .arka-why-service-grid { grid-template-columns: repeat(2, 1fr); }
  .arka-process-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 480px) {
  .arka-why-service-grid { grid-template-columns: 1fr; }
  .arka-process-wrap { grid-template-columns: 1fr; }
}

/* COLOUR STUDIO Header Dropdown (Main Site Exact) */
.has-colour-nav {
  position: relative;
}

.colour-dropdown-exact {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
  pointer-events: none;
}

.has-colour-nav:hover .colour-dropdown-exact {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
  pointer-events: auto;
}

.arka-colour-menu-box {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 22px;
  background: linear-gradient(135deg,#fff7fa,#ffffff,#fff0f5);
  border-radius: 18px;
  font-family: 'Inter', Arial, sans-serif;
  box-shadow: 0 18px 45px rgba(120,60,80,.10);
}

.arka-colour-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.arka-colour-menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-decoration: none !important;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s ease;
  min-height: 65px;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

.arka-colour-menu-btn:hover {
  background: #fff4f8;
  border-color: #4A7164;
  color: #4A7164 !important;
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(74,113,100,.18);
}

.arka-colour-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #8fb7ad;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .35s ease;
}

.arka-colour-menu-btn:hover .arka-colour-icon {
  background: #4A7164;
  transform: rotate(8deg) scale(1.08);
}

.arka-colour-menu-btn span {
  line-height: 1.3;
}
