/* HerO sec */




*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  background: #ffffff;
  color: #0a0a0a;
}

/* ===== HERO ===== */
.hero {
  max-width: 1240px;
  margin: 0 auto 50px;
  padding: 56px 20px 64px;
  text-align: center;
}

.hero__title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #0a0a0a;
  max-width: 700px;
  margin: 0 auto;
}

.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #4b5563;
  margin-top: 12px;
}

.hero__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #0C3C01;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero__cta:hover {
  background: #0C3C01;
}

.hero__cta:focus-visible {
  outline: 3px solid #0e7a3d;
  outline-offset: 3px;
}

.hero__image-wrap {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 551px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hero {
    padding: 48px 24px 56px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__image-wrap {
    margin-top: 32px;
    border-radius: 16px;
  }

  .hero__image {
    border-radius: 16px;
  }
}

/* ===== MOBILE (≤ 640px) ===== */
@media (max-width: 640px) {
  .hero {
    padding: 36px 16px 44px;
    text-align: left;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.3;
    margin: 0;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero__cta {
    margin-top: 16px;
    padding: 10px 20px;
  }

  .hero__image-wrap {
    margin-top: 24px;
    border-radius: 12px;
  }

  .hero__image {
    border-radius: 12px;
  }
}



/* ============================================================
   TECHNOLOGIES HONEYCOMB SECTION — styles
   All selectors are scoped under .tech-section so they won't
   clash with the rest of your page.
   ============================================================ */

.tech-section{
  /* section-scoped variables */
  --tech-ink:#1b1b1b;
  --tech-muted:#6f6f6f;
  --tech-red:#e23744;
  --tech-green:#28a745;
  --tech-blue:#2f6fe4;
  --tech-yellow:#f2b705;
  --tech-hex-border:#ececec;
  --tech-hex-bg:#ffffff;
  --hex-w:86px; /* one variable controls all sizing */

  font-family: "Montserrat";
  color:var(--tech-ink);
  max-width:1280px;
  margin:0 auto 50px;
  padding:70px 40px 90px;
  box-sizing:border-box;
}
.tech-section *,
.tech-section *::before,
.tech-section *::after{box-sizing:border-box}

/* ---------- header ---------- */
.tech-header{
  display:flex;justify-content:space-between;align-items:flex-start;
  gap:60px;margin-bottom:60px;
}
.tech-eyebrow{
  font-size:11px;font-weight:600;letter-spacing:.18em;
  color:black;text-transform:uppercase;margin-bottom:12px;
}
.tech-title{
  font-size:34px;line-height:1.25;font-weight:700;margin:0;
}
.tech-desc{
  max-width:440px;font-size:16px;line-height:1.7;
  color:var(--tech-muted);padding-top:34px;margin:0;
  /* border:3px solid rgba(255, 0, 0, 0.562); */
}

/* ---------- layout: 3 fixed columns, never wraps ---------- */
.honeycomb-wrap{
  display:flex;align-items:center;justify-content:center;
  gap:calc(var(--hex-w) * .55);
  flex-wrap:nowrap;
}
.hive{display:flex;flex-direction:column;align-items:center;flex-shrink:0}
.hive-row{display:flex;gap:calc(var(--hex-w) * .15)}
.hive-row + .hive-row{margin-top:calc(var(--hex-w) * -.15)}

/* ---------- small hexagons ---------- */
.hex{
  width:var(--hex-w);
  height:calc(var(--hex-w) * 1.13);
  position:relative;
  display:flex;align-items:center;justify-content:center;
  /* filter:drop-shadow(0 2px 6px rgba(0,0,0,.06)); */
  perspective:500px;
  /* border:2px solid red; */
}
.hex::before{
  content:"";position:absolute;inset:0;background:var(--tech-hex-border);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.hex::after{
  content:"";position:absolute;inset:2px;background:var(--tech-hex-bg);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.hex .icon{
  position:relative;z-index:1;
  width:calc(var(--hex-w) * .38);
  height:calc(var(--hex-w) * .38);
  display:flex;align-items:center;justify-content:center;
  transform-style:preserve-3d;
}
.hex .icon svg,
.hex .icon img{width:100%;height:100%;object-fit:contain}
.hex .icon.flip{animation:techFlipIcon .6s ease}
@keyframes techFlipIcon{
  0%{transform:rotateY(0)}
  49%{transform:rotateY(90deg)}
  51%{transform:rotateY(-90deg)}
  100%{transform:rotateY(0)}
}

/* ---------- center: big hexagon outline ---------- */
.center-hex{
  width:calc(var(--hex-w) * 3.05);
  height:calc(var(--hex-w) * 3.45);
  position:relative;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  /* filter:drop-shadow(0 4px 14px rgba(0,0,0,.07)); */
}
.center-hex::before{
  content:"";position:absolute;inset:0;background:var(--tech-hex-border);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.center-hex::after{
  content:"";position:absolute;inset:2px;background:var(--tech-hex-bg);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.center-logo{position:relative;z-index:1;text-align:center}
.logo-tiles{display:flex;justify-content:center;margin-bottom:14px}
.tile{
  width:calc(var(--hex-w) * .55);
  height:calc(var(--hex-w) * .55);
  border:6px solid;border-radius:26%;
  background:#fff;transform:rotate(-8deg);
  margin-left:calc(var(--hex-w) * -.17);
}
.tile:first-child{margin-left:0}
.tile:nth-child(2){transform:rotate(6deg) translateY(6px)}
.tile:nth-child(3){transform:rotate(-6deg)}
.tile:nth-child(4){transform:rotate(8deg) translateY(6px)}
.t-red{border-color:var(--tech-red)}
.t-green{border-color:var(--tech-green)}
.t-blue{border-color:var(--tech-blue)}
.t-yellow{border-color:var(--tech-yellow)}
.logo-name{
  font-size:14px;font-weight:600;letter-spacing:.55em;
  text-transform:uppercase;color:var(--tech-ink);margin-left:.55em;
}

/* ---------- responsive: shrink hex size instead of wrapping ---------- */
@media (max-width:1280px){.tech-section{--hex-w:74px}}
@media (max-width:1080px){.tech-section{--hex-w:62px} .tech-section .tile{border-width:5px}}
@media (max-width:920px){.tech-section{--hex-w:52px} .tech-section .tile{border-width:4px} .tech-section .logo-name{font-size:11px}}

/* mobile: stack vertically, center logo on top */
@media (max-width:760px){
  .tech-section{--hex-w:74px; padding: 50px 20px;}
  .tech-header{flex-direction:column; gap:16px; align-items:flex-start; text-align:left; margin-bottom:40px;}
  .tech-desc{padding-top:0; margin:0;}
  .honeycomb-wrap{flex-direction:column;gap:40px}
}

@media (max-width:420px){.tech-section{--hex-w:62px}}

@media (prefers-reduced-motion:reduce){
  .hex .icon.flip{animation:none}
}







:root {
  --green-dark: #14532d;
  --green: #166534;
  --green-light: #e8f3ec;
  --text-dark: #111827;
  --text-grey: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  background: #ffffff !important;
  color: var(--text-dark);
  /* border:2px solid blue !important; */
}

.software-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 60px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 8px;
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}

.nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #0C3C01;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .2s ease;
}

.nav-arrows button:hover {
  background: #0a2d01;
  transform: scale(1.06);
}

.tabs-wrapper {
  overflow: hidden;
  margin-bottom: 0;
}

.tabs-track {
  display: flex;
  gap: 16px;
  width: max-content;
  align-items: flex-end;
  will-change: transform;
  margin-bottom: 20px;
}

.tab {
  flex: 0 0 auto;
  min-width: 210px;
  padding: 18px 26px;
  background: #F9F9F7;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15.5px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background .3s ease, color .3s ease,
              padding-bottom .35s ease, margin-bottom .35s ease, border-radius .35s ease;
}

.tab:hover {
  color: #5B6D49;
}

.tab.active {
  background: #F5F5F3;
  border: none;
  color: #5B6D49;
  padding-bottom: 38px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.content-area {
  display: grid;
  grid-template-columns: 608px 1fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 24px;
  background: #F5F5F3;
  position: relative;
  z-index: 1;
}

.content-image {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
  flex-direction: column;
  margin: 0;
  border-radius: 16px;
  width: 608px;
  height: 435px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-panel {
  background: transparent;
  color: var(--text-dark);
  padding: 20px 24px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel {
  display: none;
  animation: fadeUp .55s ease;
}

.panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-panel h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}

.content-panel p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
}

.content-panel h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.apps-list {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-demo {
  display: inline-block;
  align-self: flex-start;
  background: #0C3C01;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}

.btn-demo:hover {
  background: #0a2d01;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .content-area {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .content-image {
    width: 100%;
    height: auto;
    aspect-ratio: 608 / 435;
  }
}

@media (max-width: 860px) {
  .content-area {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .content-image {
    width: 100%;
    min-height: 240px;
    height: auto;
  }
  .content-panel {
    padding: 24px 0;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .software-section {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 26px;
  }
  .tab {
    min-width: 170px;
    padding: 14px 18px;
    font-size: 14px;
  }
}

/* ============================================
   ZOHO IMPLEMENTATION SECTION
   ============================================ */

:root {
  --zoho-green: #1e5c1e;
  --zoho-dark: #0f1a0f;
  --zoho-text: #3a3f3a;
  --zoho-border: #dfe3da;
  --zoho-bg: #ffffff;
}

.zoho-implementation {
  padding: 48px 56px;
  font-family: "Montserrat";
  background: var(--zoho-bg);
  color: var(--zoho-text);
  margin-bottom: 50px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.zoho-implementation__eyebrow {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--zoho-dark);
  display: block;
  margin-bottom: 14px;
}

.zoho-implementation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.zoho-implementation__title {
  font-family: "Montserrat";
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--zoho-dark);
  max-width: 420px;
}

.zoho-implementation__subtitle {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--zoho-text);
  max-width: 330px;
}

.zoho-implementation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--zoho-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.zoho-implementation__cell {
  position: relative;
  padding: 38px 42px 42px 42px;
  transition: background 0.3s ease;
}

.zoho-implementation__cell:hover {
  background: #f8faf6;
}

.zoho-implementation__cell:nth-child(1) {
  border-right: 1px solid var(--zoho-border);
  border-bottom: 1px solid var(--zoho-border);
}

.zoho-implementation__cell:nth-child(2) {
  border-bottom: 1px solid var(--zoho-border);
}

.zoho-implementation__cell:nth-child(3) {
  border-right: 1px solid var(--zoho-border);
}

.zoho-implementation__cell:nth-child(1)::after,
.zoho-implementation__cell:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
  border-top: 1px solid var(--zoho-border);
  border-right: 1px solid var(--zoho-border);
  z-index: 2;
  transition: background 0.3s ease;
}

.zoho-implementation__cell:nth-child(1):hover::after,
.zoho-implementation__cell:nth-child(3):hover::after {
  background: #f8faf6;
}

.zoho-implementation__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoho-implementation__icon svg,
.zoho-implementation__icon img {
  width: 60px;
  height: 60px;
  stroke: var(--zoho-green);
  fill: none;
  stroke-width: 1.8;
  transform-box: fill-box;
  transform-origin: center;
  object-fit: contain;
}

.zoho-implementation__cell:hover .zoho-implementation__icon:not(.icon-zoom) svg,
.zoho-implementation__cell:hover .zoho-implementation__icon:not(.icon-zoom) img {
  animation: zoho-spin 3s ease-in-out infinite;
}

.zoho-implementation__cell:hover .zoho-implementation__icon.icon-zoom svg,
.zoho-implementation__cell:hover .zoho-implementation__icon.icon-zoom img {
  animation: zoho-zoom 3s ease-in-out infinite;
}

@keyframes zoho-spin {
  0%     { transform: rotate(0deg); }
  33.33% { transform: rotate(360deg); }
  100%   { transform: rotate(360deg); }
}

@keyframes zoho-zoom {
  0%     { transform: scale(1); }
  16.66% { transform: scale(1.15); }
  33.33% { transform: scale(1); }
  100%   { transform: scale(1); }
}

.zoho-implementation__step-label {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--zoho-dark);
  display: block;
  margin-bottom: 10px;
}

.zoho-implementation__cell-title {
  font-family: "Montserrat";
  font-size: 19px;
  font-weight: 600;
  color: var(--zoho-dark);
  margin-bottom: 10px;
}

.zoho-implementation__cell-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--zoho-text);
  max-width: 440px;
}

@media (max-width: 992px) {
  .zoho-implementation {
    padding: 40px 30px;
  }
  .zoho-implementation__cell {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .zoho-implementation {
    padding: 32px 20px;
  }

  .zoho-implementation__grid {
    grid-template-columns: 1fr;
  }

  .zoho-implementation__cell {
    border-right: none !important;
    border-bottom: 1px solid var(--zoho-border) !important;
    padding: 24px 20px;
  }

  .zoho-implementation__icon {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
  }

  .zoho-implementation__icon svg,
  .zoho-implementation__icon img {
    width: 60px;
    height: 60px;
  }

  .zoho-implementation__cell:last-child {
    border-bottom: none !important;
  }

  .zoho-implementation__cell::after {
    display: none !important;
  }

  .zoho-implementation__title {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zoho-implementation__cell:hover .zoho-implementation__icon svg,
  .zoho-implementation__cell:hover .zoho-implementation__icon img {
    animation: none;
  }
}









* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
}

/* ── Section Container ── */
.ect-zoho-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: url('https://via.placeholder.com/1600x600/0e2212/0e2212') center/cover no-repeat;
  background-color: #0a1c0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 80px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 50px;
}

/* Deep cinematic overlay */
.ect-zoho-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(46,160,67,.28), transparent 60%),
    linear-gradient(180deg, rgba(4,12,6,.88) 0%, rgba(7,22,10,.92) 55%, rgba(4,14,6,.96) 100%);
  z-index: 1;
}

/* ── Animated Tech Grid ── */
.ect-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(110,231,135,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110,231,135,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 75%);
  animation: gridDrift 24s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}

/* ── Aurora Light Beams ── */
.beam {
  position: absolute;
  top: -30%;
  width: 340px;
  height: 160%;
  background: linear-gradient(180deg, rgba(110,231,135,.14), transparent 70%);
  filter: blur(48px);
  transform: rotate(18deg);
  z-index: 1;
  pointer-events: none;
  animation: beamSway 11s ease-in-out infinite alternate;
}

.beam.b1 { left: 8%;  animation-delay: 0s; }
.beam.b2 { left: 44%; width: 260px; opacity: .7; animation-delay: -4s; }
.beam.b3 { right: 6%; opacity: .8; animation-delay: -7s; }

@keyframes beamSway {
  from { transform: rotate(14deg) translateX(-40px); opacity: .5; }
  to   { transform: rotate(22deg) translateX(40px);  opacity: 1;  }
}

/* ── Floating Particles ── */
.particle {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: rgba(140, 240, 160, .55);
  box-shadow: 0 0 10px rgba(140,240,160,.8);
  animation: floatUp linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0);    opacity: 0;   }
  12%  { opacity: 1;                                 }
  88%  { opacity: .5;                                 }
  100% { transform: translateY(-640px) translateX(50px); opacity: 0; }
}

/* ── Content Block ── */
.ect-content {
  position: relative;
  z-index: 3;
  max-width: 940px;
}

/* Eyebrow Badge */
.ect-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(110,231,135,.4);
  border-radius: 999px;
  background: rgba(110,231,135,.08);
  backdrop-filter: blur(6px);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s ease .1s forwards;
}

.ect-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee787;
  box-shadow: 0 0 10px #6ee787;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: 1;   }
  50%      { transform: scale(1.5); opacity: .6;  }
}

/* ── Heading ── */
.ect-content h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.ect-content h2 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(46px) rotateX(65deg);
  filter: blur(8px);
  animation: wordIn .9s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

/* Gradient highlight on "Zoho Consulting" */
.ect-content h2 .accent .word {
  background: linear-gradient(92deg, #6ee787, #b8ffc4 50%, #4fd463);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: wordIn .9s cubic-bezier(.22,1,.36,1) forwards, accentFlow 4s ease-in-out 2s infinite;
}

@keyframes accentFlow {
  0%, 100% { background-position: 0% 0;   }
  50%      { background-position: 100% 0;  }
}

/* Animated underline stroke */
.ect-underline {
  width: 120px;
  height: 4px;
  margin: 14px auto 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #6ee787, transparent);
  transform: scaleX(0);
  animation: lineGrow 1s cubic-bezier(.22,1,.36,1) 1.1s forwards, lineGlow 3s ease-in-out 2.2s infinite;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 6px  rgba(110,231,135,.4); }
  50%      { box-shadow: 0 0 22px rgba(110,231,135,.9); }
}

/* ── Paragraph ── */
.ect-content p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 34px;
  opacity: 0;
  animation: fadeUp 1s ease 1.25s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Premium Button ── */
.ect-btn {
  position: relative;
  display: inline-block;
  padding: 15px 38px;
  font-size: 14px;
  font-weight: 600;
  color: #06120a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ef79a, #2ea043 70%);
  overflow: hidden;
  opacity: 0;
  animation: btnIn .9s cubic-bezier(.22,1,.36,1) 1.5s forwards;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  box-shadow: 0 8px 30px rgba(46,160,67,.35), inset 0 1px 0 rgba(255,255,255,.5);
}

@keyframes btnIn {
  from { opacity: 0; transform: scale(.72) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0);      }
}

.ect-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, transparent, rgba(158,255,178,.9), transparent 32%);
  animation: btnOrbit 3.2s linear 2.4s infinite;
  z-index: -1;
}

@keyframes btnOrbit {
  to { transform: rotate(360deg); }
}

.ect-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.65), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.6s ease 2.6s infinite;
}

@keyframes btnShine {
  0%        { left: -80%; }
  45%, 100% { left: 135%; }
}

.ect-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 44px rgba(110,231,135,.5), inset 0 1px 0 rgba(255,255,255,.6);
}

/* ── Glassmorphism Feature Cards ── */
.ect-features {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 70px;
  width: 100%;
  max-width: 1220px;
  perspective: 900px;
}

.ect-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  min-width: 245px;
  padding: 18px 30px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.14);
  opacity: 0;
  transform: translateY(56px) rotateX(18deg);
  animation: cardIn 1s cubic-bezier(.22,1,.36,1) forwards;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}

.ect-feature:nth-child(1) { animation-delay: 1.8s;  }
.ect-feature:nth-child(2) { animation-delay: 1.95s; }
.ect-feature:nth-child(3) { animation-delay: 2.1s;  }
.ect-feature:nth-child(4) { animation-delay: 2.25s; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* Sweeping light across each card */
.ect-feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.13), transparent);
  transform: skewX(-20deg);
  animation: cardSweep 5.5s ease infinite;
}

.ect-feature:nth-child(1)::after { animation-delay: 3s;   }
.ect-feature:nth-child(2)::after { animation-delay: 3.5s; }
.ect-feature:nth-child(3)::after { animation-delay: 4s;   }
.ect-feature:nth-child(4)::after { animation-delay: 4.5s; }

@keyframes cardSweep {
  0%        { left: -90%; }
  35%, 100% { left: 140%; }
}

.ect-feature:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(110,231,135,.7);
  box-shadow:
    0 20px 44px rgba(46,160,67,.35),
    0 0 26px rgba(110,231,135,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

/* Icon inside glowing chip */
.ect-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(110,231,135,.28), rgba(46,160,67,.12));
  border: 1px solid rgba(110,231,135,.35);
  box-shadow: 0 0 14px rgba(110,231,135,.18);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}

.ect-feature:hover .ect-icon {
  transform: scale(1.14) rotate(-7deg);
  box-shadow: 0 0 24px rgba(110,231,135,.5);
}

.ect-icon svg {
  width: 20px;
  height: 20px;
  stroke: #9df7a8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ect-feature span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .ect-content h2 { font-size: 34px; }
  .ect-feature     { min-width: 45%; }
}

@media (max-width: 768px) {
  .ect-zoho-section {
    align-items: flex-start;
    text-align: left;
    padding: 80px 24px 60px;
  }
}

@media (max-width: 576px) {
  .ect-content h2 { font-size: 26px; }
  .ect-feature     { min-width: 100%; }
  .beam            { display: none; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .ect-eyebrow,
  .ect-content h2 .word,
  .ect-content p,
  .ect-btn,
  .ect-feature {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .ect-underline {
    transform: scaleX(1);
  }
}




/* FAQ */

:root{
  --bg:#f7f7f5;
  --card:#ffffff;
  --ink:#111312;
  --ink-soft:#5b5f5c;
  --line:#e6e6e2;
  --accent:#1f6f54;
  --accent-soft:#e7f2ed;
  --radius:14px;
  --ease:cubic-bezier(.4,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.4,.44,1);
}

.faq-section{
  max-width:1200px;
  margin:0 auto;
  padding:72px 20px 96px;
  position:relative;
  overflow:hidden;
  background-color: transparent !important;
}

.faq-section::before {
  display: none !important;
}

/* Header */
.faq-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:48px;
}

.faq-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:14px;
  font-family: "Montserrat";
}

.faq-eyebrow::before{
  content:"";
  width:26px;height:2px;
  background:var(--accent);
  display:inline-block;
  transform-origin:left;
  animation:faq-grow .8s var(--ease) both .2s;
}

@keyframes faq-grow{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

.faq-title{
  font-family: "Montserrat";
  font-weight:700;
  font-size:31px;
  line-height:1.15;
  letter-spacing:-.02em;
  max-width:560px;
  margin:0;
}

.faq-title span{color:var(--accent)}

.faq-sub{
  max-width:440px;
  color:var(--ink-soft);
  font-size:16px;
  margin:0;
}

/* Grid */
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 24px;
  align-items:start;
}

/* Item */
.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  opacity:0;
  transform:translateY(26px);
  transition:border-color .3s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  will-change:transform,opacity;
}

.faq-item.faq-in-view{
  animation:faq-rise .65s var(--ease) forwards;
}

@keyframes faq-rise{
  to{opacity:1;transform:translateY(0)}
}

.faq-item:hover{
  border-color:rgba(31,111,84,.35);
  box-shadow:0 12px 32px -12px rgba(17,19,18,.12);
  transform:translateY(-2px);
}

.faq-item.open{
  border-color:var(--accent);
  box-shadow:0 16px 40px -14px rgba(31,111,84,.22);
}

/* Question button */
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family: "Montserrat";
  font-size:.95rem;
  font-weight:600;
  color:var(--ink);
  transition:color .25s var(--ease);
}

.faq-item.open .faq-q{color:var(--accent)}

/* Icon */
.faq-icon{
  flex:0 0 34px;
  width:34px;height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--accent-soft);
  color:var(--accent);
  transition:transform .45s var(--ease-spring), background .3s var(--ease), color .3s var(--ease);
}

.faq-icon svg{
  width:15px;height:15px;
  transition:transform .45s var(--ease-spring);
}

.faq-item:hover .faq-icon{transform:scale(1.08)}

.faq-item.open .faq-icon{
  background:var(--accent);
  color:#fff;
  transform:rotate(180deg);
}

/* Answer */
.faq-a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .5s var(--ease);
}

.faq-item.open .faq-a{grid-template-rows:1fr}

.faq-a-inner{overflow:hidden}

.faq-a-inner p{
  padding:0 22px 22px;
  color:var(--ink-soft);
  font-size:.92rem;
  margin:0;
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}

.faq-item.open .faq-a-inner p{
  opacity:1;
  transform:translateY(0);
}

/* Bottom accent bar */
.faq-item::after{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(90deg,var(--accent),#5cbf9a);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .55s var(--ease);
}

.faq-item.open::after{transform:scaleX(1)}

/* Focus */
.faq-q:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:-2px;
  border-radius:var(--radius);
}

/* Responsive */
@media (max-width:900px){
  .faq-grid{grid-template-columns:1fr}
  .faq-section{padding:56px 18px 72px}
}

@media (max-width:560px){
  .faq-head{margin-bottom:34px}
  .faq-q{padding:17px 16px;font-size:.9rem}
  .faq-a-inner p{padding:0 16px 18px}
  .faq-icon{flex-basis:30px;width:30px;height:30px}
}

@media (prefers-reduced-motion:reduce){
  .faq-section::before{animation:none!important}
  .faq-eyebrow::before{animation:none!important}
  .faq-item{opacity:1;transform:none;transition:none!important}
  .faq-item.faq-in-view{animation:none!important}
  .faq-q,.faq-icon,.faq-icon svg,.faq-a,.faq-a-inner p,.faq-item::after{transition:none!important}
}




  
/* =========================================
   FOOTER
========================================= */
.footer { font-family: "Montserrat"; }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 100px; }

/* ---- Top dark green section ---- */
.footer-top { background: #12380a; color: #fff; padding: 56px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto auto;
  gap: 48px;
}
.f-col a, .f-col .f-head { white-space: nowrap; }
/* SERVICES column pushed right */
.footer-grid > .f-col:nth-child(2) { padding-left: 170px; }

.f-logo {
  font-size: 16px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 16px;
}
.f-desc {
  font-size: 15px; line-height: 1.55; color: #e9efe6;
  max-width: 380px; margin-bottom: 26px;
}
.f-news-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.f-news-desc { font-size: 15px; line-height: 1.5; color: #e9efe6; margin-bottom: 16px; }

.f-subscribe { display: flex; max-width: 300px; }
.f-subscribe input {
  flex: 1; min-width: 0;
  padding: 11px 14px;
  border: none; border-radius: 6px 0 0 6px;
  background: #f5f2ea; color: #333;
  font-size: 14px; font-family: "Montserrat"; outline: none;
}
.f-subscribe input::placeholder { color: #9aa79a; }
.f-subscribe button {
  padding: 11px 18px;
  border: none; border-radius: 6px;
  margin-left: -6px;
  background: #1f5c13; color: #fff;
  font-size: 14px; font-family: "Montserrat"; cursor: pointer;
  transition: background .2s ease;
}
.f-subscribe button:hover { background: #2a7a1a; }

.f-col { display: flex; flex-direction: column; }
.f-head {
  font-size: 16px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 20px; color: #fff;
}
.f-head-gap { margin-top: 28px; }
.f-head-normal { text-transform: none; }
.f-col a {
  color: #eef3ec; text-decoration: none;
  font-size: 15.5px; line-height: 1.4;
  margin-bottom: 16px;
  transition: color .2s ease, transform .2s ease;
}
.f-col a:hover { color: #a8d99a; }

/* ---- Cream middle strip ---- */
.footer-mid { background: #f5f2ea; padding: 22px 0; }
.footer-mid-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.f-follow { display: flex; align-items: center; gap: 16px; }
.f-follow > span { font-size: 16px; color: #1a1a1a; margin-right: 8px; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: #12380a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease;
}
.f-social svg { width: 17px; height: 17px; }
.f-social:hover { transform: scale(1.15); background: #1f5c13; }

.f-contact { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.f-contact a {
  display: flex; align-items: center; gap: 8px;
  color: #12380a; text-decoration: none; font-size: 16px;
  transition: color .2s ease;
}
.f-contact a:hover { color: #2a7a1a; }
.f-ci { width: 17px; height: 17px; flex-shrink: 0; }

/* ---- Bottom dark strip ---- */
.footer-bottom { background: #12380a; padding: 34px 0 44px; }
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}
.f-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.f-legal a {
  color: #eef3ec; text-decoration: none; font-size: 15px;
  transition: color .2s ease;
}
.f-legal a:hover { color: #a8d99a; }
.f-legal span { color: #eef3ec; font-size: 14px; }
.f-copy { color: #eef3ec; font-size: 15px; }

/* =========================================
   FOOTER RESPONSIVE
========================================= */
/* Laptop */
@media (max-width: 1280px) {
  .footer-inner { padding: 0 48px; }
  .footer-grid { gap: 36px; }
  .footer-grid > .f-col:nth-child(2) { padding-left: 60px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-grid > .f-col:nth-child(2) { padding-left: 0; }
  .f-col a, .f-col .f-head { white-space: normal; }
  .f-brand { grid-column: 1 / -1; }
  .f-desc { max-width: 520px; }
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner { padding: 0 20px; }
  .footer-top { padding: 44px 0 48px; }
  /* mobile grid system: brand full width, link columns 2-per-row */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .f-brand { grid-column: 1 / -1; }
  .f-col a { font-size: 14.5px; margin-bottom: 13px; }
  .f-head { font-size: 15px; margin-bottom: 14px; }
  .f-subscribe { max-width: 100%; }
  .footer-mid-row { flex-direction: column; align-items: flex-start; }
  .f-contact { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
  .f-legal { row-gap: 6px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .f-follow { flex-wrap: wrap; }
  .f-contact a { font-size: 14.5px; word-break: break-all; }
}




