
/* ------------------------------- */
/* PRIMARY BUTTON — Gradient + White
/* ------------------------------- */
.zpbutton.zpbutton-type-primary,
a.zpbutton.zpbutton-type-primary {
    background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
}

/* Hover */
.zpbutton.zpbutton-type-primary:hover,
a.zpbutton.zpbutton-type-primary:hover {
    opacity: 0.9 !important;
}


/* ------------------------------------------------ */
/* SECONDARY BUTTON — Transparent + Dark Border + Pink Text */
/* ------------------------------------------------ */
.zpbutton.zpbutton-type-secondary,
a.zpbutton.zpbutton-type-secondary {
    background: transparent !important;
    color: #FF4E8E !important;                 /* Pink text like screenshot */
    border: 1px solid #1A1A1A !important;      /* Thin dark border */
    border-radius: 999px !important;           /* Pill shape */
    padding: 12px 28px !important;
    font-weight: 600 !important;
}

/* Hover — subtle grey fill */
.zpbutton.zpbutton-type-secondary:hover,
a.zpbutton.zpbutton-type-secondary:hover {
    background: rgba(0,0,0,0.04) !important;   /* Light grey hover */
    color: #FF4E8E !important;
}
/* ------------------------------- */
/* LINK BUTTON — Purple Text Only */
/* ------------------------------- */
.zpbutton.zpbutton-type-link,
a.zpbutton.zpbutton-type-link {
    background: transparent !important;
    border: none !important;
    color: #785CFF !important;
    box-shadow: none !important;
    font-weight: 500 !important;
}

/* Hover */
.zpbutton.zpbutton-type-link:hover,
a.zpbutton.zpbutton-type-link:hover {
    text-decoration: underline !important;
}


/***********************************************************
   HIACT — GRADIENT PILL FOR ALL MENU STATES (DESKTOP)
***********************************************************/
@media (min-width: 769px) {

  /* RESET all background pills Zoho applies */
  .theme-navigation-and-icons .theme-menu ul li a,
  .theme-menu ul li > a,
  .theme-menu .menu-highlight-primary > a,
  .z-menu-highlight,
  .active,
  .current,
  .selected {
      background: transparent !important;
      box-shadow: none !important;
  }

  /* BASE LINK STYLE */
  .theme-navigation-and-icons .theme-menu ul li > a {
    position: relative !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    color: #0d0d28 !important;
    transition: all .25s ease !important;
    z-index: 1;
  }

  /****************************************************
      GRADIENT HOVER + ACTIVE
  ****************************************************/
  /* Hover */
  .theme-navigation-and-icons .theme-menu ul li > a:hover {
    background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D) !important;
    color: #ffffff !important;
  }

  /* Active page, current menu, selected state */
  .theme-navigation-and-icons .theme-menu ul li.theme-menu-selected > a,
  .theme-navigation-and-icons .theme-menu ul li > a.active,
  .theme-navigation-and-icons .theme-menu ul li > a.current,
  .theme-navigation-and-icons .theme-menu ul li > a.selected {
    background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D) !important;
    color: #ffffff !important;
  }

}
/* ---------------------------------------------
   HIACT — FLOATING MOBILE MENU (RIGHT SIDE)
----------------------------------------------*/
@media (max-width: 768px) {

  /* Force the whole mobile menu panel to shrink */
  .theme-navigation-and-icons .theme-menu {
      width: 230px !important;
      max-width: 250px !important;
      margin-left: auto !important;
      margin-right: 15px !important;
      margin-top: 15px !important;
      border-radius: 22px !important;
      background: #ffffff !important;
      box-shadow: 0 8px 25px rgba(0,0,0,0.18) !important;
      padding: 20px 15px !important;
      position: absolute !important;
      right: 0 !important;
      left: auto !important;
      height: auto !important;
  }

  /* Container that Zoho uses to force fullscreen — disable it */
  .theme-navigation-and-icons .theme-menu-container {
      width: auto !important;
      max-width: 280px !important;
      position: absolute !important;
      right: 15px !important;
      top: 70px !important;
      left: auto !important;
      height: 250px !important;
      border-radius: 22px !important;
      background: #ffffff !important;
      padding: 20px 15px !important;
      box-shadow: 0 8px 25px rgba(0,0,0,0.18) !important;
  }

  /* Remove the fullscreen dark overlay */
  .theme-mobile-menu-bg {
      background: transparent !important;
  }

  /* UL reset */
  .theme-menu ul {
      padding: 0 !important;
      margin: 0 !important;
  }

  /* Each menu link */
  .theme-navigation-and-icons .theme-menu ul li > a {
      display: block !important;
      width: 100% !important;
      padding: 10px 16px !important;
      text-align: center !important;
      border-radius: 14px !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      color: #0d0d28 !important;
      background: transparent !important;
      margin-bottom: 3px !important;
      transition: .25s ease !important;
  }

  /* Selected / hover gradient */
  .theme-navigation-and-icons .theme-menu ul li > a:hover,
  .theme-navigation-and-icons .theme-menu ul li.theme-menu-selected > a {
      background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D) !important;
      color: #fff !important;
  }
}


/* ===============================
   HERO HEADINGS
   =============================== */
.hero-left {
  padding-left: 25px;
}

/* H1 — 40px */
.hero-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  padding-top: 60px;  /* adjust if needed */
}

/* H2 — 30px */
.hero-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  display: inline-block;
  max-width: 220px !important;
  margin-top: -20px;   /* optional: keeps spacing tight */
}


/* ===============================
   ANIMATED WORD (Method / Meaning / Momentum)
   =============================== */

.animated-word-wrapper {
  height: 95px;              /* EXACT height of animated text */
  overflow: hidden;
  margin-top: -24px;                 /* No extra gap */
  padding-top: 2px;
  position: relative;
}

.rotate-words {
  position: relative;
  height: 95px;
  width: 100%;
}
.rotate-words span {
  padding-right: 6px;   /* FIX right-edge clipping */
  padding-bottom: 6px;
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  white-space: nowrap;

  font-size: 60px;
  font-weight: 700;
  font-style: italic;

  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: slideWord 6s infinite;
}

/* Animation timing */
.rotate-words span:nth-child(1) { animation-delay: 0s; }
.rotate-words span:nth-child(2) { animation-delay: 2s; }
.rotate-words span:nth-child(3) { animation-delay: 4s; }


/* Slide animation */
@keyframes slideWord {
  0%   { opacity: 0; transform: translateY(18px); }
  10%  { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  40%  { opacity: 0; transform: translateY(-18px); }
  100% { opacity: 0; }
}



/* ===============================
   SUBLINE
   =============================== */

.hero-subline {
  font-size: 18px;
  font-weight: 400;
  max-width: 520px;
  line-height: .9;
  margin-top: 15px;
}



/* ===============================
   GRADIENT BUTTON (SMALL, CLEAN)
   =============================== */

.creator-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 26px;

  font-size: 18px;
  font-weight: 600;

  color: #ffffff !important;
  text-decoration: none;

  border-radius: 30px;

  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  box-shadow: 0 8px 20px rgba(255, 100, 150, 0.25);

  -webkit-text-fill-color: #ffffff !important;
  background-clip: padding-box !important;
  transition: 0.25s ease;
}

.creator-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 100, 150, 0.35);
}
/* -----------------------------------
   CLEAN + CORRECTED MOBILE HERO RULES
----------------------------------- */
@media (max-width: 768px) {

  /* Container padding */
  .hero-container {
    margin-left: 0px !important;
  } /* ← THIS WAS MISSING */

  /* H1 (At HIACT,) */
  .hero-line1 {
    font-size: 50px !important;
    line-height: 1.1 !important;
    display: block !important;
    white-space: normal !important;
    margin-top: 5px !important;
  }

  .hero-line2 {
    font-size: 35px !important;
    line-height: 1.1 !important;
    display: block !important;
    font-weight: 300;
    white-space: normal !important;
    max-width: 280px !important;
    margin-bottom: 8px !important;
    margin-top: 4px !important;
  }

  .animated-word-wrapper {
    height: 40px !important;
    margin-top: 8px !important;
  }

  .rotate-words span {
    font-size: 30px !important;
    line-height: 1 !important;
  }

  .hero-subline {
    font-size: 18px !important;
    line-height: .8 !important;
    margin-top: 12px !important;
    max-width: 95% !important;
  }

  .creator-btn {
    font-size: 15px !important;
    padding: 16px 20px !important;
    border-radius: 15px !important;
    margin-top: 40px !important;
    max-width: 78% !important;
    display: block !important;
    margin-left: 30px !important; 
    margin-right: 20px !important;
    text-align: center !important;
  }

} /* ← THIS MEDIA QUERY WAS ALSO NEVER CLOSED */

/* =============================
      HIACT — Infinite Brand Strip
   ============================= */

.hiact-brand-strip {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
}

.hiact-brand-track {
    display: flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    animation: hiactScroll 10s linear infinite;
}

.hiact-brand-track img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: 0.3s ease;
}

.hiact-brand-track img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes hiactScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Force brand strip to full width */
.hiact-brand-strip {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 30px 0;
    background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
}

/* Remove any container limitation */
div[data-zs-code-snippet] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    margin: 0 !important;
}
/* MOBILE FIX: reduce strip size */
@media (max-width: 600px) {
    .hiact-brand-strip {
        padding: 12px 0 !important;   /* smaller height */
    }

    .hiact-brand-track {
        gap: 30px;   /* reduce spacing between logos */
        animation: hiactScroll 12s linear infinite; /* slightly slower */
    }

    .hiact-brand-track img {
        height: 32px;   /* smaller logo size */
        opacity: 0.9;
    }
}

/* ============================================================
   FEATURE PAGE — HIACT FEATURE CAROUSEL
============================================================ */
.hiact-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 450px;
  position: relative;
  overflow: hidden;
  background: #FFF7F3;
  display: flex;
  align-items: center;
}

/* FIXED FEATURE HEADING */
.feature-heading h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;   
  width: 100%;          
}

/* TRACK */
.feature-track {
  display:flex;
  height:100%;
  width:100%;
  transition:transform 0.6s ease;
}

/* SLIDE */
.feature-slide {
  min-width:100%;
  height:100%;
  display:flex;
  align-items:center;
}

/* LEFT IMAGE */
.feature-left {
  width:45%;
  display:flex;
  justify-content:center;
  padding-left:80px;
}

.feature-left img {
  width:550px;
  border-radius:22px;
}

/* RIGHT TEXT */
.feature-right {
  width:55%;
  padding:5px 120px 30px 60px;
}

.feature-right h2 {
  font-size:32px;
  font-weight:700;
  color:#0d0d25;
  margin:0 0 18px;
}

.hybrid-tags {
  background:#f4f3fa;
  padding:12px 16px;
  border-radius:18px;
  margin-bottom:20px;
  font-size:22px;
  font-weight:700;
  width: fit-content;
  display: inline-block;
  align-self: flex-start; /* prevents stretching full width */
}

.hybrid-tags span {
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.feature-right p {
  font-size:20px;
  line-height:1.5;
  color:#2e2e3f;
  margin:0 0 18px;
}

.hybrid-link {
  color:#785CFF;
  font-weight:400;
  font-size:18px;
  text-decoration:none;
}

/* FEATURE DOTS */
.feature-dots {
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}
.feature-dots span {
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid #000;
    background:transparent;
    transition: .2s ease;
    cursor:pointer;
}
.feature-dots span.active {
    background:#000;
    border-color:#000;
    transform:scale(1.1);
}

/* FEATURE ARROWS */
.feature-controls {
    position:absolute;
    bottom:5px;
    right:20px;
    display:flex;
    gap:8px;
    z-index:20;
}
.feature-controls button {
    width:48px;
    height:48px;
    background:#EDEDED;
    border:none;
    border-radius:50%;
    font-size:20px;
    color:#6E6E6E;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:0.15s;
}
.feature-controls button:hover {
    background:#e3e3e3;
}

/* MOBILE FIXES — FEATURE */
/* ================================
   FEATURE CAROUSEL — MOBILE FIXES
================================ */
@media (max-width:768px) {

  .hiact-carousel {
    height:auto;
    padding:40px 0 120px;
  }

  .feature-slide {
    flex-direction:column;
    text-align:center;
    padding:0 20px;
  }

  .feature-left {
    width:100%;
    padding:0;
    margin-bottom:18px;
  }

  .feature-left img {
    width:200px;
  }

  .feature-right {
    width:100%;
    padding:0 30px;
  }

  .feature-right h2 {
    font-size:26px;
  }

  .hybrid-tags {
    font-size:20px;
    padding:0px 0px;
  }

  /* arrows closer to bottom-right */
  .feature-controls {
    bottom:5px;
    right:10px;
    gap: 25px;
  }

  .feature-controls button {
    width:28px;
    height:28px;
    font-size:20px;
  }
  .feature-dots span {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
  /* dots above arrows */
  .feature-dots {
    bottom: 5px;
    gap: 8px;
  }
}

/* ============================================================
        Hiact Community
============================================================ */
/* MAIN SECTION */
.hiact-values {
  padding: 60px 0 0px;
  background: linear-gradient(180deg, #FFF7F3 0%, #FEEDE5 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
}

/* LABEL */
.values-small {
  font-size: 15px;
  opacity: .9;
  margin-bottom: 15px;
}

/* HEADING */
.values-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
}

/* GRADIENT TEXT BUTTON */
.join-btn {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.community-top {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons img { width: 28px; }
/* CAROUSEL CONTAINER */
.values-carousel {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
  padding-bottom: 80px; /* space for dots & arrows */
}

/* TRACK */
.values-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.22, .9, .3, 1);
}

/* SLIDE */
.values-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* SLIDE CONTENT */
.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 40px 60px;
  justify-content: center; /* Center both image & text */
}

.slide-img {
  display: flex;
  justify-content: flex-end;
}

.slide-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
}

.slide-text {
  max-width: 520px;
  text-align: left;
}

.value-title {
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  padding: 12px 28px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 14px;
}

.slide-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
}

.slide-text p {
  font-size: 15px;
  color: #666;
}

/* ARROWS */
.carousel-arrows {
  position: absolute;
  bottom: 5px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  background: #EDEDED;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: #6E6E6E;
  transition: 0.15s;
}

.carousel-arrow:hover {
  background: #e3e3e3;
}

/* DOTS */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.dot.active {
  background: #000;
  border-color: #000;
}
/* =============================
      VALUE STRIP SECTION
   ============================= */
.values-quote-section {
  width: 100vw;
  padding: 40px 0 80px;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(180deg, #FEEDE5 0%, #FFF7F3 100%);
  text-align: center;
}

.values-strip {
  width: 85%;
  max-width: 900px;
  background: #fff;
  margin: 0 auto;
  padding: 48px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.values-strip h3 {
  font-size: 28px;
  font-weight: 800;
}

.values-strip p {
  margin-top: 10px;
  color: #777;
}

/* MOBILE FIX */
/* ====================================
     COMMUNITY CAROUSEL — MOBILE FIXES
==================================== */
@media (max-width: 900px) {

  /* Heading */
  .values-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0 12px 30px;
    line-height: 1.2;
  }

  /* Slide layout becomes vertical */
  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 20px 20px;
  }

  .slide-img img {
    max-width: 92%;
    margin-top: 30px;
  }

  .slide-text {
    text-align: center;
    max-width: 100%;
  }

  .value-title {
    margin-left: auto;
    margin-right: auto;
  }

  /* Arrows bottom-right */
  .carousel-arrows {
    right: 10px;
    bottom: 5px;
    gap: 25px;
  }

  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  /* Dots centered */
  .carousel-dots {
    bottom: 5px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }

  /* White strip section */
  .values-strip {
    width: 92%;
    padding: 28px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .values-strip h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .values-strip p {
    font-size: 14px;
    margin-top: 8px;
  }
}
/* Play/Pause button inside dots row */
.feature-dots,
.carousel-dots {
    display: flex;
    align-items: center;
    gap: 10px;  /* spacing between play button & dots */
}

.feature-toggle,
.values-toggle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EDEDED;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #6E6E6E;
  cursor: pointer;
  transition: 0.15s;
}

.feature-toggle:hover,
.values-toggle:hover {
  background: none;
}


/* =============================
      Image flip
   ============================= */

.stats-image-rotator {
  position: relative;
  width: 250px;
  height: 400px;
  margin: 0 auto;
  perspective: 1400px;
}

/* EACH SLIDE */
.rotator-item {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  backface-visibility: hidden;
  transform-style: preserve-3d;

  opacity: 0;
  transform: rotateY(180deg) translateY(10px) scale(0.97);

  /* Premium easing */
  transition: 
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease-out;
}

/* ACTIVE SLIDE STYLING */
.rotator-item.active {
  opacity: 1;

  /* smooth 3D flip with lift */
  transform: rotateY(0deg) translateY(0px) scale(1);
  z-index: 2;
}

/* IMAGE */
.rotator-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* STATS FLOATING BUBBLES */
.stat {
  position: absolute;
  background: white;
  padding: 16px 26px;
  border-radius: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #785CFF;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  z-index: 10;

  /* 2D Floating animation */
  animation: floatBubbleXY 6s ease-in-out infinite;
}

.stat span {
  font-size: 12px;
  font-weight: 500;
  margin-left: 3px;
  color: #555;
}

/* 2D FLOAT ANIMATION (Up + Down + Left + Right Loop) */
@keyframes floatBubbleXY {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(6px, -6px);
  }
  50% {
    transform: translate(0px, -10px);
  }
  75% {
    transform: translate(-6px, -6px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

/* STAT POSITIONS */
.stat-top {
  top: -25px;
  left: -60px;
}

.stat-bottom {
  bottom: -25px;
  right: -50px;
}

Mobile -/* ================================
   FINAL MOBILE FIX — ONLY MOBILE
   DOES NOT TOUCH DESKTOP
================================ */
@media (max-width: 600px) {

  /* Main container */
  .stats-image-rotator {
    position: relative;
    width: 70vw;      /* your updated width */
    height: 400px;    /* your updated height */
    overflow: visible !important;   /* FIX: allow stats outside */
    z-index: 1;
  }

  /* Rotating image card */
  .rotator-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;                /* keep image clipped */
    z-index: 1 !important;
  }

  .rotator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* Stats bubbles */
  .stat {
    position: absolute;
    z-index: 9999 !important;        /* FIX: pull ABOVE everything */
    padding: 12px 20px;
    font-size: 20px;
    border-radius: 18px;
  }

  .stat span {
    font-size: 10px;
  }

  /* FIX positions */
  .stat-top {
    top: -10px !important;
    left: 8px !important;
  }

  .stat-bottom {
    bottom: -10px !important;
    right: 8px !important;
  }
}

/* ================================
   Brands Page
   Section-1
================================ */
.brand-hero {
  position: relative;
  top: -110px;
}   
.brand-hero {
  background: linear-gradient(135deg, #785CFF, #FF4E8E, #FF6A3D);
  padding: 110px 0;
  display: block;
  width: 100vw;     
  margin-left: calc(-50vw + 50%);
  color: #ffffff;
}

.brand-hero-container {
  width: 85%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.brand-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 25px;
}

.brand-hero-left p {
  font-size: 20px;
  max-width: 520px;
  margin-bottom: 35px;
  opacity: 0.95;
}
.brand-hero-btn {
  position: relative;
  padding: 18px 40px;
  display: inline-block;
  border-radius: 20px;
  background: #ffffff;              /* PURE WHITE BOX */
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: transparent;               /* TEXT will be filled by gradient */
  -webkit-text-fill-color: transparent;
  overflow: hidden;                 /* important */

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

/* GRADIENT TEXT LAYER */
.brand-hero-btn::after {
  content: attr(data-text);
  content: "Start a Campaign";       /* fallback */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: inherit;
  font-size: inherit;
}

/* HOVER */
.brand-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.30);
}

/* RIGHT */
.brand-hero-right {
  position: relative;
}

.brand-hero-image {
  width: 420px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.brand-hero-image img {
  width: 100%;
  display: block;
}

/* BADGE */
.brand-hero-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 900px) {
  .brand-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-hero-left h1 {
    font-size: 40px;
    text-align: left;
    margin-left: 20px;
    line-height: 1.15;
  }

  .brand-hero-left p {
    font-size: 18px;
    margin: 0 auto 30px;
    font-weight: 300;
    line-height: 1.45;
  }

  .brand-hero-image {
    width: 85%;
    margin-top: 40px;
    margin-left: 30px;
  }

  .brand-hero-badge {
    right: 45%;
    transform: translateX(45%);
  }
}

/* ================================
   BRAND SECTION 2 — WHY HIACT
================================ */
/* Remove top padding added by Zoho’s section wrapper */
.zc-section,
.zc-content,
.zc-container,
.section,
.zcontent-wrapper,
#zcms_section,
#zcms_layout,
.zsite-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.brand-why {
  padding: 10px 0 20px;
  background: #ffffff;
  text-align: center;
  color: #000;
}

.brand-why-container {
  width: 85%;
  margin-top: -110px;
  max-width: 1200px;
  margin: auto;   /* ← this must stay INSIDE the class */
}

.brand-why-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.brand-why-sub {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px; /* slightly reduced for better balance */
}

/* GRID */
.brand-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.brand-why-item {
  background: #fafafa;
  padding: 35px 25px;
  border-radius: 18px;

  /* Premium soft border */
  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: 0.3s ease;
  text-align: left;
}

/* Hover effect */
.brand-why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

.brand-why-item h3 {
  font-size: 20px;
  margin-bottom: 10px; /* improved tightness */
  font-weight: 600;
  line-height: 1.3;
}

.brand-why-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.55;
}

/* MOBILE */
@media (max-width: 900px) {
  .brand-why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand-why-title {
    font-size: 32px;
  }

  .brand-why-sub {
    font-size: 17px;
  }
}
/* ================================
   SECTION 3 — STATS + LOGO STRIPS
================================ */


/* Big headline */
.brand-stats-headline {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Center the stats block */
.brand-stats-container,
.brand-stats-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  text-align: center;
}

/* Stats layout */
.brand-stats-row {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-bottom: 40px;
}

.brand-stat h3 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-stat p {
  font-size: 20px;
  color: #444;
  margin-top: 8px;
  line-height: 1.4;
}


/* ================================
   FULL-WIDTH LOGO STRIPS
   (Your functional strip system)
================================ */

.brand-strip {
  width: 100vw !important;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

/* Fade mask left */
.brand-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 120px;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 5;
}

/* Fade mask right */
.brand-strip::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 120px;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 5;
}

.brand-strip-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.brand-strip img {
  height: 120px;
  width: auto;
  border-radius: 20px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


/* Animations */
.brand-strip:nth-of-type(2) .brand-strip-track {
  animation: stripLeft 18s linear infinite;
}

.brand-strip:nth-of-type(3) .brand-strip-track {
  animation: stripRight 20s linear infinite;
}

.brand-strip:nth-of-type(4) .brand-strip-track {
  animation: stripLeft 16s linear infinite;
}

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

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


/* Responsive */
@media (max-width: 900px) {

  .brand-stats-headline {
    font-size: 28px;
    max-width: 320px;
  }

  .brand-stats-row {
    flex-direction: column;
    gap: 30px;
  }

  .brand-stat h3 {
    font-size: 42px;
  }

  .brand-stat p {
    font-size: 18px;
  }

  .brand-strip img {
    height: 80px;
    padding: 8px;
    border-radius: 16px;
  }

  .brand-strip::before,
  .brand-strip::after {
    width: 60px;
  }
}

/* ================================
   BRAND SECTION 4 — HYBRID MODEL
================================ */
.brand-model {
  padding: 100px 0;
  background: #FFF8F0;
  width: 100vw !important;
  margin-left: calc(50% - 50vw);
  text-align: center;
}

.brand-model-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

.brand-model-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgba(0,0,0,0.9);
}

.brand-model-sub {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* 3-CARD GRID */
.brand-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Gradient Cards */
.brand-model-item {
  padding: 35px 25px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(45deg, #785CFF, #FF4E8E, #FF6A3D);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s ease;
}

.brand-model-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.brand-model-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.brand-model-item p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.55;
}

/* MOBILE */
@media (max-width: 900px) {
  .brand-model-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .brand-model-title {
    font-size: 32px;
  }
}
/* ================================================
   SECTION 5 — PREMIUM CLOSING CTA
================================================ */
.brand-cta {
  width: 100%;
  padding: 0px 0;
  text-align: center;
  background: #ffffff;
}

.brand-cta-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-cta-subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTON ROW */
.brand-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Primary CTA */
.cta-primary {
  padding: 14px 32px;
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  color: #fff;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-primary:hover {
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Secondary CTA */
.cta-secondary {
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border: 2px solid #000;
  transition: all 0.25s ease;
}

.cta-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .brand-cta-title {
    font-size: 34px;
  }

  .brand-cta-subtitle {
    font-size: 18px;
  }

  .brand-cta-buttons {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
}


/* ================================
   About us
   Section-1
================================ */

.about-us-hero-section {
  position: relative;
  top: -110px;
}
/* FULL WIDTH HERO - KEEP THIS */
.about-us-hero-section {
  display: block;
  width: 100vw;     
  margin-left: calc(-50vw + 50%);
  padding: 120px 0;
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
}

/* Make the container full width with internal padding */
.about-us-hero-container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Typography */
.about-us-hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-us-hero-sub {
  font-size: 22px;
  margin-bottom: 18px;
}

.about-us-hero-body {
  font-size: 18px;
  line-height: 1.6;
  max-width: 550px;
}

/* Image styling */
.about-us-hero-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* FORCE WHITE TEXT */
.about-us-hero-section,
.about-us-hero-section * {
  color: #ffffff !important;
}

/* Text glow */
.about-us-hero-text h1,
.about-us-hero-sub,
.about-us-hero-body {
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#zcmstemplate,
.zs-content-wrapper,
.zs-section,
.zs-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .about-us-hero-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;
  }

  /* Smaller Hero Heading */
  .about-us-hero-text h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }

  /* Smaller Subheadline */
  .about-us-hero-sub {
    font-size: 18px !important;
  }

  /* Smaller Body Text */
  .about-us-hero-body {
    font-size: 16px !important;
    margin: auto;
    line-height: 1.6;
  }

  /* Image spacing */
  .about-us-hero-visual img {
    margin-top: 25px;
  }
}

/* Enable gradient shift parallax */
.about-us-hero-section {
    background-size: 110% 110%;
    background-repeat: no-repeat;
    background-attachment: scroll; /* optional: set to fixed for stronger effect */
}

/* Smooth parallax transitions */
.about-us-hero-text,
.about-us-team-tag {
    transition: transform 0.1s ease-out, opacity 0.2s ease-out;
}
/* ============================
   ABOUT US — SECTION 2 (STORY)
============================ */
/* Pull Section 2 upward to remove white gap below Hero */
.about-us-story-section {
  position: relative;
  top: -120px;
}

/* Reset for mobile (avoid overlapping sections) */
@media (max-width: 900px) {
  .about-us-story-section {
    top: 0;
  }
}

/* ====================================
   HIACT ABOUT — SECTION 2 (STORY)
==================================== */

.hiact-about-story {
  padding: 60px 0 140px;
  background: #ffffff;
  margin-top: -60px !important;
}

.hiact-about-story-inner {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE TEXT */
.story-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.story-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
  max-width: 520px;
}

/* RIGHT SIDE IMAGE */
.story-card {
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.story-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hiact-about-story {
    padding: 80px 0;
  }

  .hiact-about-story-inner {
    grid-template-columns: 1fr;
    padding: 0 30px;
    text-align: center;
    gap: 40px;
  }

  .story-left h2 {
    font-size: 30px;
  }

  .story-left p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .story-card {
    padding: 16px;
  }
}

/* =========================================
   About Us – SECTION 3
========================================= */
.hiact-core-section {
  padding: 80px 0;
  padding-top: 40px 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #FFF8F0;
}

/* =============================
   HEADING
============================= */
.core-heading {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 1400px;
}

/* Gradient text titles */
.hiact-gradient-text {
  background: linear-gradient(90deg, #785CFF, #FF4E8E, #FF6A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================
   DESKTOP — ROW OF 5 CARDS
============================= */
.hiact-core-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: visible;
}

/* =============================
   CARD WRAPPER (FLIP)
============================= */
.core-card-wrapper {
  width: 280px;
  height: 280px;
  position: relative;
  perspective: 1100px;
}

/* CARD BODY */
.core-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  transform-style: preserve-3d;
  transition: 0.6s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  position: relative;
}

/* Desktop hover flip */
.core-card-wrapper:hover .core-card {
  transform: rotateY(180deg);
}

/* CARD SIDES */
.core-card-side {
  position: absolute;
  inset: 0;
  padding: 22px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.core-back {
  transform: rotateY(180deg);
}

/* =============================
   TEXT STYLES
============================= */
.core-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.core-desc,
.core-back p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.core-sub {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-punch {
  font-style: italic;
  margin-top: 8px;
}

/* ====================
   MOBILE CAROUSEL FIX
==================== */
 @media (max-width: 768px) {
  .core-heading {
  font-size: 35px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 1400px;
}
     
 .hiact-core-row {
    display: flex;
    overflow-x: auto;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px 0; /* keep clean */
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .hiact-core-row::-webkit-scrollbar {
    display: none;
  }

  /* ⬅️ THE GUARANTEED LEFT GAP FIX */
  .hiact-core-row::before {
    content: "";
    display: block;
    min-width: 10px;
  }

  /* CARD SIZING */
  .core-card-wrapper {
    min-width: 85%;
    scroll-snap-align: start;
    padding-left: 30px
  }

  /* Card style */
  .core-card {
    background: #fff;
    border-radius: 22px;]
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  }

  /* Mobile flip effect */
  .core-card-wrapper:active .core-card {
    transform: rotateY(180deg);
  }
}

/* ================================================
   About us section-4
================================================ */

/* Force your section to span full viewport width */
.hiact-about-vm-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hiact-about-vm-section {
  padding: 60px 0 60px;  !important; /* reduced from 120px top */
  background: #fafafa;
  margin-top: -60px !important;
}

.hiact-about-vm-container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ================================
   CARD DESIGN + GRADIENT GLOW
================================ */
.hiact-card,
.vm-block {
  background: #fff;
  padding: 40px;
  margin-top: 40px;
  border-radius: 24px;

  /* Reduced glow intensity */
  box-shadow:
    0 8px 18px rgba(0,0,0,0.04),
    0 0 25px rgba(120, 92, 255, 0.10),
    0 0 35px rgba(255, 78, 142, 0.08),
    0 0 45px rgba(255, 106, 61, 0.06);

  transition: transform 0.35s ease, box-shadow 0.4s ease;
}

/* Hover Glow — softer + lift */
.hiact-card:hover,
.vm-block:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.06),
    0 0 45px rgba(120, 92, 255, 0.25),
    0 0 65px rgba(255, 78, 142, 0.22),
    0 0 85px rgba(255, 106, 61, 0.20);
}

/* ================================
   FIXED FULL HIACT GRADIENT HEADLINES
================================ */
.vm-block h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;

  /* FULL gradient always visible (trick) */
  background: linear-gradient(90deg, #785CFF 0%, #FF4E8E 50%, #FF6A3D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Force wider gradient span even if text is short */
  display: inline-block;
  padding-right: 200px;  /* ensures full gradient appears */
  background-size: 300px 100%;
}

/* ================================
   PARAGRAPHS + LISTS
================================ */
.vm-block p,
.vm-block ul li {
  font-size: 18px;
  line-height: 1.7;
  color: #3b3b3b;
}

.philosophy-list {
  margin-top: 12px;
  padding-left: 20px;
}

.philosophy-list li {
  margin-bottom: 8px;
}

/* ================================
   MOBILE FIXES
================================ */
@media (max-width: 900px) {
  .hiact-about-vm-section {
    padding: 30px 0 80px;
  }

  .hiact-about-vm-container {
    padding: 0 25px;
    gap: 40px;
  }

  .vm-block {
    padding: 24px;
  }

  .vm-block h3 {
    font-size: 24px;
    padding-right: 100px;  /* reduce fake width */
  }

  .vm-block p,
  .vm-block ul li {
    font-size: 16px;
  }
}

/* ================================
   Get Started
   Brand Section-1
================================ */
.hiact-start-campaign {
  padding: 20px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.campaign-container {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}

.campaign-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep left aligned */
  gap: 8px; /* spacing between text & logo */
}

.campaign-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.hiact-logo-below {
  height: 80px; /* adjust size as needed */
  width: auto;
}


.campaign-sub {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  max-width: 850px;
  margin-bottom: 50px;
}

.campaign-contact p {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.campaign-contact strong {
  font-weight: 700;
}
/* ======================
        FOOTER (DESKTOP)
====================== */
.hiact-footer {
  background: #FDF8F3;
  padding: 80px 0 40px;
  font-family: 'Inter', sans-serif;
  color: #1d1d1d;
}

.footer-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT BLOCK */
.footer-left {
  max-width: 360px;
}

.footer-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.footer-tagline em {
  font-size: 18px;
  margin: 8px 0;
  font-style: normal !important;
  font-family: "Inter", sans-serif;
}

.footer-desc {
  margin: 15px 0 25px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 1.45;
}

/* RIGHT GRID SECTION */
.footer-right {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 60px;
  align-items: start;
  justify-content: start;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  margin: 6px 0;
  font-size: 15px;
  color: #444;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #000;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 10px;
}

.footer-social a {
  font-size: 26px;
  color: #000;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* DIVIDER */
.footer-line {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  width: 90%;
  margin: 45px auto 25px;
}

/* BOTTOM BAR */
.footer-bottom {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  opacity: 0.85;
}


/* =====================================================
        MOBILE FOOTER (VISIBLE ONLY ON MOBILE)
===================================================== */
@media screen and (max-width: 768px) {

  /* Hide desktop footer */
  .hiact-footer,
  .footer-desktop {
    display: none !important;
  }

  /* Show mobile footer */
  .hiact-footer-mobile {
    display: block !important;
    padding: 40px 25px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    background: #FFFDFB;
    width: 100%;
  }

  .hf-logo {
    width: 140px;
    margin: 0 auto 20px;
  }

  .hf-tagline {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hf-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
  }

  .hf-social {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 35px;
  }
  .hf-social img {
    width: 26px;
    height: 26px;
  }

  .hf-email-box {
    margin-bottom: 25px;
  }
  .hf-email-box h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .hf-email-box a {
    font-size: 14px;
    color: #000;
  }

  .hf-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 25px 0;
  }

  .hf-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 20px;
    margin-bottom: 25px;
  }

  .hf-nav h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .hf-nav a {
    display: block;
    font-size: 14px;
    margin: 4px 0;
    color: #000;
  }

  .hf-legal a {
    display: block;
    font-size: 13px;
    margin: 6px 0;
    color: #444;
  }

  .hf-copy {
    font-size: 13px;
    margin-top: 25px;
  }

  .hf-india {
    font-size: 13px;
    margin-top: 5px;
  }
}


/* =====================================================
   DESKTOP ONLY — Hide mobile footer
===================================================== */
@media screen and (min-width: 769px) {
  .hiact-footer-mobile {
    display: none !important;
  }
}
