@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

/* FORCE LinkedIn icon to white initially */
.social_icon_linkedin .icon-linkedin {
  color: #ffffff !important;
  transition: 0.3s;
}

/* On hover (optional) */
.linkedin-icon:hover .icon-linkedin {
  color: #0077b5 !important;
}

/* On click → LinkedIn Blue */
.linkedin-icon.clicked .icon-linkedin {
  color: #ffffff !important;
}

/* purchase-styles -start */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  z-index: 1000;
}

.navbar-content {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  /* Above mobile menu */
  background-color: #000000;
  /* Cover mobile menu sliding out */
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Updated to support both SVG and IMG logos */
.logo svg,
.logo img {
  height: 3.7rem;
  /* Fix height to fit navbar */
  width: auto;
  /* Maintain aspect ratio */
  transition: transform 0.5s var(--ease-tech);
}

.logo:hover svg,
.logo:hover img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-subtitle {
  color: #737373;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.logo:hover .logo-subtitle {
  color: var(--color-gold);
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
  display: none;
  /* Hidden on mobile */
  gap: 4rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease-out;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

/* Hover Interactions */
.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

/* Focus Interaction */
.nav-link:focus-visible {
  outline: 1px solid var(--color-gold-dim);
  outline-offset: 4px;
}

/* Special "Purchase" Item */
.nav-link.special {
  color: white;
  font-weight: 500;
}

.nav-link.special:hover span {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-link.special::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-link.special:hover::after {
  opacity: 1;
}

/* --- MOBILE MENU TOGGLE (Checkbox Hack) --- */
#menu-toggle {
  display: none;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 30;
}

.menu-btn span {
  display: block;
  height: 1px;
  background-color: white;
  transition: all 0.3s var(--ease-tech);
}

.menu-btn span:nth-child(1) {
  width: 32px;
}

.menu-btn span:nth-child(2) {
  width: 20px;
}

.menu-btn span:nth-child(3) {
  width: 12px;
}

.menu-btn:hover span:nth-child(3) {
  width: 32px;
}

/* Animation when Checked */
#menu-toggle:checked + .menu-btn span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(-45deg);
  background-color: var(--color-gold);
}

#menu-toggle:checked + .menu-btn span:nth-child(2) {
  opacity: 0;
  width: 0;
}

#menu-toggle:checked + .menu-btn span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(45deg);
  background-color: var(--color-gold);
}

/* --- MOBILE NAVIGATION DROPDOWN --- */
.mobile-nav {
  position: absolute;
  top: 100%;
  /* Directly below header */
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

  /* Hidden State */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition: all 0.5s var(--ease-tech);
  z-index: 10;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}

.mobile-nav a:hover {
  color: var(--color-gold);
  letter-spacing: 0.3em;
}

/* Open State */
#menu-toggle:checked ~ .mobile-nav {
  max-height: 400px;
  /* Allow enough height for content */
  opacity: 1;
  visibility: visible;
  padding: 1.5rem 0;
}

/* Staggered Animation for links */
#menu-toggle:checked ~ .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(1) {
  transition-delay: 0.05s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(2) {
  transition-delay: 0.1s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(3) {
  transition-delay: 0.15s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(4) {
  transition-delay: 0.2s;
}

#menu-toggle:checked ~ .mobile-nav a:nth-child(5) {
  transition-delay: 0.25s;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* --- HERO & UTILITIES (For Demo Visuals) --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--nav-height);
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom right, #ffffff, #737373);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}

.hero p {
  max-width: 600px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  padding-left: 1.5rem;
}

.bg-glow-gold {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* purchase-styles -end */

/*
      Scoped footer + translator styles.
      All class names are namespaced with "tc-" to avoid collisions.
      Do NOT set body background or global resets to avoid affecting other sections.
    */

:root {
  --tc-bg: black;
  --tc-muted: #94a3b8;
  --tc-text: #e6eef8;
  --tc-white: #ffffff;
  --tc-accent: #60a5fa;
  --tc-container-max: 1200px;
}

/* Scope everything under wrapper so other site CSS remains untouched */
.tc-footer-wrapper {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--tc-text);
}

/* Footer layout */
.tc-footer {
  background: var(--tc-bg);
  color: var(--tc-text);
  padding: 48px 16px;
}

.tc-container {
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid */
.tc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Company info */
.tc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-brand__img {
  width: 120px;
  height: 70px;
  border-radius: 8px;
}

.tc-brand__title {
  font-size: 1.125rem;
  color: var(--tc-white);
  margin: 0;
  font-weight: 700;
}

.tc-muted {
  color: white;
  font-size: 0.9375rem;
}

/* Quick links */
.tc-section-title {
  color: var(--tc-white);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
  text-decoration: underline;
}

.tc-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-links-list a {
  display: block;
  color: white;
  font-size: 0.9375rem;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.18s ease;
  padding: 2px 0;
}

.tc-links-list a:hover {
  color: #70af69;
  transform: translateX(3px);
}

/* lower area */
.tc-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.tc-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 720px) {
  .tc-bottom-row {
    flex-direction: row;
    align-items: center;
  }
}

.tc-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tc-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    color 0.18s ease;
  will-change: transform;
}

.tc-socials a:hover {
  color: var(--tc-white);
  transform: scale(1.08);
}

.tc-socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.tc-copyright {
  color: #70af69;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 720px) {
  .tc-copyright {
    text-align: right;
  }
}

.tc-legal-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: center;
}

@media (min-width: 720px) {
  .tc-legal-links {
    justify-content: flex-end;
  }
}

.tc-legal-links a {
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s ease;
}

.tc-legal-links a:hover {
  color: var(--tc-white);
}

.tc-space-y-4 > * + * {
  margin-top: 16px;
}

/* Translator UI (placed at end of page) - scoped */
.tc-translate {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tc-translate__label {
  color: var(--tc-muted);
  font-size: 0.92rem;
}

.tc-translate__select {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--tc-text);
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.tc-translate__reset {
  padding: 8px 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--tc-muted);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
}

.tc-translate__reset:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--tc-text);
}

/* Hide the Google Translate UI (we will use hidden combo driven programmatically) - VERY scoped selector */
/* NOTE: we hide only Google's banner/balloon for the site; not touching global elements outside wrapper */
.tc-footer-wrapper .goog-te-banner-frame.skiptranslate,
.tc-footer-wrapper .goog-te-balloon-frame {
  display: none !important;
}

.tc-footer-wrapper .goog-te-combo {
  height: 1px;
  width: 1px;
  opacity: 0;
  position: fixed;
  left: -9999px;
  pointer-events: none;
}

/* Tiny helper -> visually hidden (accessible) */
.tc-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

@media (max-width: 576px) {
  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 5px;
  }

  .services-foot {
    padding: 5px;
  }

  .support-foot {
    padding: 5px;
  }
}

.dath {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1000px) {
  .spacer-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 10px;
  }

  .services-foot {
    padding: 10px;
  }

  .support-foot {
    padding: 10px;
  }
}

/* ===== EarthCraft Contact Section ===== */

.ecd-contact-section {
  background: #fcfcfc;
  padding: 96px 0;
  font-family: "DM Sans", sans-serif;
}

.ecd-contact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media (max-width: 768px) {
  .ecd-contact-container {
    grid-template-columns: 1fr;
  }
}

/* LEFT */
.ecd-contact-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  font-weight: 800;
}

.ecd-contact-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 20px 0;
  color: #2a2a2a;
}

.ecd-contact-description {
  color: #888;
  max-width: 420px;
  margin-bottom: 40px;
}

.ecd-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ecd-contact-item {
  display: flex;
  gap: 16px;
  color: #6b6b6b;
  font-size: 15px;
}

.ecd-contact-item i {
  color: #70af69;
  font-size: 18px;
}

/* FORM */
.ecd-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ecd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .ecd-form-grid {
    grid-template-columns: 1fr;
  }
}

.ecd-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 12px;
}

.ecd-input i {
  color: #70af69;
  margin-right: 12px;
}

.ecd-input input,
.ecd-input textarea {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 15px;
  color: #2a2a2a;
}

.ecd-textarea {
  align-items: flex-start;
}

.ecd-submit-btn {
  background: #70af69;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s ease;
}

.ecd-submit-btn:hover {
  background: #5e9658;
}

/* Checkbox */
.ecd-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
}

.ecd-checkbox input {
  accent-color: #70af69;
}

.how-class {
  margin-top: 12px;
}

.num-text {
  color: black;
}

.how-mail {
  margin-top: 5px;
}

#contact-earth-clean {
  background: #0f1010;
  padding: 80px 20px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* FORM BOX */
.contact-form-box {
  width: 50%;
  background: #161717;
  padding: 40px;
  border-radius: 14px;
}

.contact-form-box h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-field {
  margin-bottom: 24px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3a3a3a;
  padding: 10px 0;
  font-size: 15px;
  color: #ffffff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a8a8a;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #78c27d;
}

.form-checkbox {
  display: block;
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 28px;
}

.form-checkbox input {
  margin-right: 8px;
}

.contact-form-box button {
  background: #78c27d;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #66b06c;
}

/* INFO BOX */
.contact-info-box {
  width: 50%;
}

.contact-label {
  font-size: 15px;
  letter-spacing: 2px;
  color: #78c27d;
}

.contact-info-box h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 16px 0 24px;
  font-weight: 700;
}

.contact-info-box p {
  color: #b0b0b0;
  max-width: 420px;
  margin-bottom: 20px;
}

.contact-info-box a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-info-box .phone {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-box,
  .contact-info-box {
    width: 100%;
  }

  .contact-info-box h1 {
    font-size: 34px;
  }
}

.ico-s {
  margin-top: 15px;
  margin-right: 10px;
  color: #78c27d;
}

.ico-r {
  margin-top: 10px;
  margin-right: 10px;
  color: #78c27d;
}

.ico-m {
  color: #78c27d;
  margin-top: 13px;
  margin-right: 15px;
}

.contact-ico {
  margin-top: 2px;
}

.get-in {
  color: red;
}

/* GREEN CHECKBOX WHEN CHECKED */
.form-checkbox input[type="checkbox"] {
  accent-color: #78c27d;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  transform: scale(1.4);
  accent-color: #78c27d;
  cursor: pointer;
}

.ecd-checkbox input[type="checkbox"] {
  transform: scale(1.4);
  accent-color: #78c27d;
  cursor: pointer;
}

.earth-row-icon {
  display: flex;
}

.grow-our-earth {
  padding: 40px;
}

.our-earth-services {
  padding: 40px;
}

.contact-page-form {
  padding: 40px;
}

.contact-form-checkbox {
  margin-right: 10px;
}

.mail-contact {
  margin-top: 5px;
}

/* SECTION */
.grow-business {
  background: #0f1115;
  padding: 80px 20px;
}

/* CONTAINER */
.grow-business .container-grow {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE SIDE */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 400px;
  /* 👈 CONTROL SIZE HERE */
  object-fit: cover;
  /* 👈 IMPORTANT */
  border-radius: 20px;
  display: block;
}

/* CONTENT SIDE */
.content-box {
  flex: 1;
  color: #fff;
}

.subtitle {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
}

.content-box h2 {
  font-size: 48px;
  margin: 15px 0;
}

.content-box p {
  color: #bbb;
  line-height: 1.7;
}

.content-box h6 {
  margin: 20px 0;
  font-weight: 600;
}

/* BUTTON */
.btn-grow {
  display: inline-block;
  padding: 15px 30px;
  background: #6db36d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-grow:hover {
  background: #5aa45a;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grow-business .container-grow {
    flex-direction: column;
  }

  .image-box img {
    height: 250px;
  }

  .content-box h2 {
    font-size: 32px;
  }
}

.content-box h2 {
  line-height: 1.1; /* 👈 THIS FIXES THE SPACE */
  margin: 0; /* remove default spacing */
}

/* SECTION */
.about-section {
  background: #0b0d0f;
  padding: 80px 20px;
}

/* CONTAINER */
.container-about {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.content-about {
  flex: 1;
  color: #fff;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
}

.title-about {
  font-size: 42px;
  line-height: 1.1;
  margin: 15px 0;
  color: white;
}

.content-about p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* SKILLS */
.skills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skill span {
  font-size: 14px;
}

.bar {
  background: #222;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: #6db36d;
}

/* RIGHT IMAGE */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 500px; /* 👈 BIG IMAGE */
  object-fit: cover; /* 👈 PERFECT FIT */
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container-about {
    flex-direction: column;
  }

  .image-box img {
    height: 300px;
  }

  .title-about {
    font-size: 28px;
  }
}

.bar {
  background: #222;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0; /* 👈 start from 0 */
  background: #6db36d;
  border-radius: 10px;
  transition: width 1.5s ease;
}

.skill-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
}

.percent {
  color: #6db36d;
  font-weight: bold;
}

.progress {
  height: 100%;
  width: 0;
  background: #6db36d;
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* SECTION */
.services {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

/* CONTAINER */
.container-service {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  margin-bottom: 50px;
}

.subtitle-service {
  font-size: 14px;
  letter-spacing: 2px;
  color: #666;
}

.section-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: auto; /* 👈 allow natural height */
  object-fit: contain; /* 👈 show full image */
  background: #fff; /* prevents empty space looking weird */
}

/* TEXT */
.service-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.service-card p {
  padding: 0 20px;
  color: #666;
  font-size: 14px;
}

/* HOVER EFFECT 🔥 */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card img {
  transition: 0.4s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
}



/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%; /* equal height cards */
}

/* 🔥 Image wrapper */
.service-card img {
  width: 100%;
  height: 220px; /* FIXED height = uniform look */
  object-fit: cover; /* crop smartly */
  display: block;
}

/* Content alignment */
.service-card h3,
.service-card p {
  padding: 0 16px;
}

.service-card h3 {
  margin-top: 16px;
}

.service-card p {
  margin-bottom: 20px;
  flex-grow: 1; /* makes all cards same height */
}

.service-card img {
  aspect-ratio: 4 / 3;
  height: auto;
}

/* GLOBAL */
.service-page-body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.service-page-body {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  background: #f9fafc;
}

/* CONTAINER */
.ecx-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* SECTION */
.ecx-section {
  padding: 80px 0;
}

/* TITLE */
.ecx-header {
  text-align: center;
  margin-bottom: 60px;
}

.ecx-header h1 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #0b63ff, #00c6ff);
  -webkit-background-clip: text;
  color: transparent;
}

/* GRID */
.ecx-grid {
  display: grid;
  gap: 30px;
}

.ecx-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ecx-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ecx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecx-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ecx-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* SERVICE CARD */
.ecx-service {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ecx-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.ecx-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0b63ff, #00c6ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
}

.ecx-service h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.ecx-service p {
  font-size: 14px;
  color: #666;
}

/* FEATURE */
.ecx-feature img {
  width: 100%;
  border-radius: 12px;
}

.ecx-feature h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.ecx-feature p {
  margin-bottom: 10px;
}

/* BUTTON */
.ecx-btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(90deg, #0b63ff, #00c6ff);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.ecx-btn:hover {
  opacity: 0.9;
}

/* MAP */
.ecx-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border: none;
}

/* CONTACT CARD */
.ecx-contact {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ecx-contact a {
  color: #0b63ff;
  text-decoration: none;
}



/* KEEP IT SIMPLE — no over-control */

.floating-btn i {
  font-size: 26px;
  display: inline-block;
}

/* WhatsApp (brands) */
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

/* Solid icons */
.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}