html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
}



:root {
  --orange: #FF8C00;
  --orange-light: #FFA500;
  --bg-black: #000000;
  --bg-dark: #111111;
  --bg-card: #1A1A1A;
  --bg-card2: #1E1E1E;
  --text-white: #FFFFFF;
  --text-gray: #FAFAFA;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;   /* Chrome, Safari */
  -moz-osx-font-smoothing: grayscale;    /* Firefox on Mac */
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
}

.text-orange {
  color: var(--orange);
}

.text-muted-custom {
  font-size: 17.6px;
  padding-bottom: 16px;
  color: var(--text-gray);
}

.custom-box-shadow {
  width: 300px;
  height: 40px;
  border-radius: 50px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #FFFFFFFA calc(0.7 * 10%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, #FFFFFFFA calc(0.7 * 90%), transparent),
    inset -2px -2px 0px -2px color-mix(in srgb, #FFFFFFFA calc(0.7 * 80%), transparent),
    inset -3px -8px 1px -6px color-mix(in srgb, #FFFFFFFA calc(0.7 * 60%), transparent),
    inset -0.3px -1px 4px 0px color-mix(in srgb, #20001b calc(2 * 12%), transparent),
    inset -1.5px 2.5px 0px -2px color-mix(in srgb, #20001b calc(2 * 20%), transparent),
    inset 0px 3px 4px -2px color-mix(in srgb, #20001b calc(2 * 20%), transparent),
    inset 2px -6.5px 1px -4px color-mix(in srgb, #20001b calc(2 * 10%), transparent),
    0px 1px 5px 0px color-mix(in srgb, #20001b calc(2 * 10%), transparent),
    0px 6px 16px 0px color-mix(in srgb, #20001b calc(2 * 8%), transparent);
}

.custom-box-shadow-sm {

  height: 40px;
  border-radius: 50px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #FFFFFFFA calc(0.7 * 10%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, #FFFFFFFA calc(0.7 * 90%), transparent),
    inset -2px -2px 0px -2px color-mix(in srgb, #FFFFFFFA calc(0.7 * 80%), transparent),
    inset -3px -8px 1px -6px color-mix(in srgb, #FFFFFFFA calc(0.7 * 60%), transparent),
    inset -0.3px -1px 4px 0px color-mix(in srgb, #20001b calc(2 * 12%), transparent),
    inset -1.5px 2.5px 0px -2px color-mix(in srgb, #20001b calc(2 * 20%), transparent),
    inset 0px 3px 4px -2px color-mix(in srgb, #20001b calc(2 * 20%), transparent),
    inset 2px -6.5px 1px -4px color-mix(in srgb, #20001b calc(2 * 10%), transparent),
    0px 1px 5px 0px color-mix(in srgb, #20001b calc(2 * 10%), transparent),
    0px 6px 16px 0px color-mix(in srgb, #20001b calc(2 * 8%), transparent);
}

.btn-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 168.4px;
  font-weight: 600;
  font-size: 14.4px;
  background: rgba(251, 125, 0, 1);
  color:rgba(255, 255, 255, 1);
  border: none;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
}

.btn-orange:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 168.4px;
  font-weight: 600;
  font-size: 14.4px;
  border: 1px solid rgba(251, 125, 0, 1);
  color: rgba(251, 125, 0, 1);
  /* color: var(--orange); */
  background: transparent;
  border-radius: 8px;
  /* padding: 15px 50px; */
  
  transition: all 0.25s;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pill {
  font-weight: 500;
  font-size: 14.4px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 8px 16px;
  height: 34.4px;
  background-color: #2B2B2B;
  transition: all 0.2s;
}

.btn-pill:hover,
.btn-pill.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 140, 0, 0.1);
}


.customContainer {
  width: 100%;
  padding-left: 96px;
  padding-right: 96px;
  display: flex;
  justify-content: space-between;
}

.zbook-nav .container {
  padding-left: 96px;
  padding-right: 96px;
  margin-left: 0;
  margin-right: 0;
  max-width: unset;
}



@media(max-width:768px){
  /* .customContainer {
    padding-left: 20px;
    padding-right: 20px;
  } */
   .zbook-nav .container {
      padding-left: 20px;
      padding-right: 20px;
   }

}

/* ── Section spacing ─────────────────────────────── */
.section-pad {
  padding-top: 48px;
  padding-bottom: 48px; 
}

.containerForServiceAndProviderBtn {
  margin-top: 32px;
}
.section-title {
  font-size: 33.6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  padding-bottom: 16px;
}

.section-sub {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 17.6px;
  line-height: 100%;
  letter-spacing: -0.3px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.Three-powerfull-sub-heading {
  padding-bottom: 72px;
}

@media(max-width:768px) {
  .section-pad {
    padding-top: 0px;
    padding-bottom: 16px;
  }

  .section-sub {
    padding-bottom: 16px;
  }
  
}

/* ── Navbar ──────────────────────────────────────── */
.zbook-nav {
  min-height: 60px;
  background: rgba(0, 0, 0, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  width: 100%;
}

.zbook-nav.scrolled {
  background: rgba(0, 0, 0, 0.97);
}

.zbook-logo {
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange) !important;
  letter-spacing: 2px;
  text-decoration: none;
}

.zbook-logo img {
  width: 115.2px;
  height: 40px;
}

.navbar-nav .nav-link {

  font-weight: 400;
  font-size: 12.8px;
  line-height: 19.2px;
  color: rgba(250, 250, 250, 1) !important;
  gap: 24px;
  transition: color 0.2s, background 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-white) !important;
  background: rgba(255, 140, 0, 0.1);
}



/* ── Hero ────────────────────────────────────────── */
.hero-section {
  background-image: url("../assets/images/hero-section-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 96px;
  padding-right: 96px;
  display: flex;
  align-items: center;
}

@media(max-width:1300px){
  .hero-section {
    background-size: contain;
  }
}

.hero-left-container{
  padding-top: 126.4px;

}

.hero-section-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hero-img {
  padding-top: 38.4px;
  max-width: 735px;
  width: 100%;
  aspect-ratio: 1.35 / 1;
}

.hero-service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
}
.hero-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
  padding-bottom: 16px;
}

.hero-desc {
  font-weight: 500;
  font-size: 17.6px;
  line-height: 25.6px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 490px;
}

.search-wrap {
  position: relative;
  max-width: 528px;
  margin-top: 32px;
  height: 40px;
}

.client-count-text {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.9);
}

.person-imag {
  width: 25px;
  height: 25px;
}

.badge-pill {
  width: 261.6px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 7.2px;
  gap: 4.8px;
  margin-bottom: 32px;
  background-color: #2B2B2B;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@media(max-width:786px) {
  .hero-section-container{
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }

  .hero-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-img {
    padding-top: 0px;
    height: unset;
  }

  .hero-service-container {
    justify-content: center;
  }

  .hero-section {
    padding: 20px;
  }

  .hero-title {
    font-size: 20px;
    text-align: center;
  }

  .hero-desc {
    font-size: 12px;
    max-width: unset;
    text-align: center;
  }

  .search-wrap {
    max-width: unset;
    width: 100%;
    margin-top: 16px;
  }

  .hero-left-container{
    padding-top: 0px;

  }

  .containerForServiceAndProviderBtn {
    margin-top: 16px;
  }

  .badge-pill {
    margin-bottom: 16px;
    width: 100%;
    margin-top: 60px;
  }
 
}





.person-container {
  position: relative;
  width: 60px;
}

.person-img-2,
.person-img-3 {
  position: absolute;
}

.person-img-2 {
  left: 15px;
}

.person-img-3 {
  left: 30px;
}



@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}



/* Search */


.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  z-index: 2;
}

.search-input {
  background-color:rgba(27, 27, 27, 1);
  border: none;
  border-radius: 10px;
  color: var(--text-white) !important;
  padding: 12px 16px 12px 40px;
  font-size: 14px;
  height: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.8px;
  font-weight: 400;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
  background-color: rgba(27, 27, 27, 1);
  border-color: var(--text-gray);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
  outline: none;
}

/* Hero image circle */
.hero-circle-wrap {
  display: flex;
  justify-content: end;
  width: 100%;
}

.hero-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.25) 0%, rgba(255, 140, 0, 0.05) 60%, transparent 80%);
  border: 2px solid rgba(255, 140, 0, 0.2);
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



/* Orbit icons */
.orbit-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 2px solid rgba(255, 140, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  z-index: 3;
  animation: float-icon 4s ease-in-out infinite;
}

.orbit-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit-2 {
  top: 25%;
  right: 5%;
  animation-delay: 0.5s;
}

.orbit-3 {
  top: 60%;
  right: 2%;
  animation-delay: 1s;
}

.orbit-4 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.orbit-5 {
  top: 60%;
  left: 2%;
  animation-delay: 2s;
}

.orbit-6 {
  top: 25%;
  left: 5%;
  animation-delay: 2.5s;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.orbit-1,
.orbit-4 {
  transform: translateX(-50%);
}

/* ── How It Works ────────────────────────────────── */

.how-work-cards-container {
  display: flex;
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(372px, 1fr)); */
  gap: 32px;
  padding-left: 176.8px;
  padding-right: 176.8px;
}

.how-work-cards-container > div {
  width: 100%;
}

@media(max-width:1250px) {
  .how-work-cards-container {
    /* flex-wrap: wrap; */
    padding-left: 20px;
    padding-right: 20px;
  }

  .how-card {
    /* width: 372px; */
  }
}

@media (max-width: 768px) {
  .how-work-cards-container {
    flex-wrap: wrap;
  }
}

.how-card {
  background-image: url("../assets/images/howCardBackground.png");
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* min-width: 372px; */
  background-color:rgba(27, 27, 27, 1);
  border: none;
  border-radius: 16px;
  padding: 24px 52.8px;
  transition: border-color 0.3s, transform 0.3s;
}

@media(max-width:768px) {
  .how-card {
    padding: 16px 16px;
    width: 100%;
  }
}

@media(max-width:576px) {
  .how-card {
    min-width: unset;
    width: 100%;
  }
}




.howCardTitile {
  font-weight: 500;
  font-size: 20.8px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
}

.howCardDescription {
  font-weight: 500;
  font-size: 14.4px;
  line-height: 21.6px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
}

.how-card:hover {
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateY(-6px);
}

.how-icon-wrap {

  width: 68px;
  height: 68px;
  /* width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  border: 2px solid rgba(255, 140, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center; */
}

.how-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-mod-card {
  padding-bottom: 16px;
}



/* ── Modules ─────────────────────────────────────── */
#modules .mod-grid-top {
  display: flex;
  /* display: grid; */
  padding-left: 165px;
  padding-right: 165px;
  /* grid-template-columns: repeat(auto-fit, 400px); */
  /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
  gap: 20px;
  justify-content: center; /* center the cards */
  margin-bottom: 20px;
  
}



.parentContainerforOrangTicksAndDescription {
  display: flex;
  gap: 5px;
}

.orangeTickAndDesc span{
  
}

.custom-btn-pill-mod {
  padding: 8px 8px;
  font-size: 12.4px
}

/* Bottom row: single full-width column */
#modules .mod-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
}

/* ── Card base ────────────────────────────────────────────────── */

#modules .mod-card {
  background: rgba(24, 24, 24, 1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 21.6px;
  min-width: 375px;
  width: 100%;
}

.containerForModImage {
  /* padding-left: 24.8px;
  padding-right: 30.4px; */
  display: flex;
  justify-content: center;
}

.containerForModImage img{
  /* width: 320px; */
  height: 320px;
}


#modules .mod-card:hover {
  border-color: rgba(255, 140, 0, 0.3);
}




/* ── Card body (text area, top of card) ───────────────────────── */

#modules .mod-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  padding-left: 30px;
  padding-right: 30px;
  
}

#modules .mod-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

#modules .mod-card-desc {
  font-weight: 500;
  font-size: 14.4px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 12.8px;
}

#modules .service-mode-card-body {
  padding-top: 0px;
}

@media(max-width:1250px) {
  #modules .mod-grid-top {
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }

  #modules .mod-card {
    width: 375px;
    
  }
  
}

@media(max-width:576px) {
  #modules .mod-card {
    min-width: unset;
    width: 100%;
  }

  #modules .mod-card-desc {
    text-align: center;
  }

  .parentContainerforOrangTicksAndDescription {
    flex-wrap: wrap;
    justify-content: center;
  }

  #modules .mod-card-body{
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ── Feature list (2-column grid inside each card) ────────────── */

#modules .mod-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

#modules .mod-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  font-size: 13.5px;
  color: #dddddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}

#modules .mod-feature-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Orange circle check icon */
#modules .mod-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FF8C00;
  margin-top: 1px;
  flex-shrink: 0;
}

#modules .mod-check-icon i {
  font-size: 9px;
  color: #ffffff;
}

/* ── Illustration area (bottom of card — add your SVG here) ───── */

#modules .mod-card-illus {
  /* margin-top: 24px;
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 55% 90%, rgba(255, 140, 0, 0.14) 0%, transparent 65%); */
}

/* Keeps SVG you insert filling the container */
#modules .mod-card-illus>svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Named slots (no extra styling — just namespaced for you to target) */
#modules .mod-illus-customers {
  /* Customers SVG container */
}

#modules .mod-illus-providers {
  /* Providers SVG container */
}

#modules .mod-illus-shops {
  /* Shops SVG container    */
}

/* ── Wide card (Shops) ─────────────────────────────────────────── */

/* Override flex direction so body becomes a row */
#modules .mod-card.mod-card-wide {
  flex-direction: row;
  /* body + illustration side by side */
}

#modules .mod-card-body.mod-card-body-wide {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 28px;
  gap: 0;
  flex: 1;
  width: 100%;
}

/* Left text column inside wide card */
#modules .mod-wide-text {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Feature list inside wide card: 2 cols on left side only */
#modules .mod-feature-list.mod-feature-list-wide {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

/* Illustration area inside wide card (right side, inline) */
#modules .mod-card-body-wide .mod-card-illus {
  flex: 1;
  margin-top: 0;
  height: auto;
  min-height: 200px;
  border-radius: 0;
  /* glow shifts to right for shops */
  background: radial-gradient(ellipse at 65% 65%, rgba(255, 140, 0, 0.18) 0%, transparent 65%);
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 900px) {
  #modules .mod-grid-top {
    grid-template-columns: 1fr;
  }

  #modules .mod-card.mod-card-wide {
    flex-direction: column;
  }

  #modules .mod-card-body.mod-card-body-wide {
    flex-direction: column;
    padding: 24px 20px;
  }

  #modules .mod-wide-text {
    flex: none;
    max-width: 100%;
  }

  #modules .mod-card-body-wide .mod-card-illus {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 600px) {

  #modules .mod-feature-list,
  #modules .mod-feature-list.mod-feature-list-wide {
    grid-template-columns: 1fr;
  }

  #modules .mod-feature-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  #modules .mod-feature-list li:last-child {
    border-bottom: none;
  }

  /* #modules .mod-card-body {
    padding: 20px 16px 0 16px;
  }

  #modules .mod-card-illus {
    height: 180px;
  } */
}

/* ── AI Section ──────────────────────────────────── */
.AI-text {
  font-weight: 500;
  font-size: 17.6px;
  line-height: 24.8px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 24px;
}

.module-list {
  list-style: none;   /* removes bullets */
  padding-left: 0;    /* removes left space */
  margin-left: 0;     /* optional */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 12.8px;
  font-size: 17.6px;
} 

.module-list li svg {
  flex-shrink: 0;
}

.ai-section {
  background-image: url("../assets/images/hero-section-background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.ai-phones-wrap {
  /* position: relative;
  height: 480px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.ai-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--orange) 0%, #FF4500 100%);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ai-phone {
  width: 449.6px;
  /* height: 415.2px; */
  /* position: absolute;

  width: 80%;
  height: 80%;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
}

.ai-phone-back {
  right: 15%;
  top: 8%;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.85;
}

.ai-phone-front {
  left: 15%;
  top: 12%;
  transform: rotate(-4deg);
  z-index: 2;
}

.ai-arrow {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
  animation: bounce-x 2s ease-in-out infinite;
}

.AI-assistant-btn {
  width: 168px;
  height: 40px;
  margin-bottom: 10px;
}

@keyframes bounce-x {

  0%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }

  50% {
    transform: translateX(-40%) rotate(15deg);
  }
}

.myRow {
  display: flex;
  padding-left: 178.43px;
  padding-right: 178.43px;
  justify-content: space-between;
}

@media(max-width:1250px){
  .myRow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ai-section {
    background-size: contain;
  }
}

@media(max-width:768px){
  .myRow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ai-phone {
    height: 100%;
    width: 100%;
  }

  .AI-title {
    text-align: center;
  }
  .AI-text {
    text-align: center;
  }
}

/* ── Testimonials ────────────────────────────────── */
.testimonial-cards-container {
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
  gap: 32px;
  padding-left: 176.8px;
  padding-right: 176px;
}



.testimonal-row {
  display: flex;
  gap: 32px;
}

.testimonal-row > div {
  width: 100%;
}


@media(max-width:1300px) {
  .testimonial-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}



.testimonial-card {
  background-image: url("../assets/images/howCardBackground.png");
  background-color:rgba(27, 27, 27, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12.8px;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
  /* min-width: 372.8px; */
  width: 100%;
}

.testimonial-card:hover {
  border-color: rgba(255, 140, 0, 0.3);
  transform: translateY(-4px);
}

.testi-text {
  font-weight: 500;
  font-size: 14.4px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);

  
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-avatar {
  width: 57.6px;
  height: 57.6px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-weight: 500;
  font-size: 14.4px;
  line-height: 25px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);

}

.testi-handle {
  font-weight: 500;
  font-size: 12.8px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.7);
}

@media(max-width:1250px){
  .testimonial-cards-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(max-width:768px){
  .testimonial-cards-container {
    gap: 16px;
  }
}

/* ── Final CTA ───────────────────────────────────── */
.cta-section {
  background-image: url("../assets/images/hero-section-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 96px;
  padding-right: 96px;
  
}

/* .cta-section .cta-container {
  height: 308.8px;
} */

.cta-section .cta-container {
  padding: 48px;
  /* max-width: 100%; */
  background-image: url('../assets/images/cta-background.svg');
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid #E7B02A;
  background-size: cover; 
  display: flex;
  flex-direction: column;
  
}

@media(max-width:768px){
  .cta-section .cta-container {
    border: 0px;
  }
}



.cta-title-and-subtitle-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-left {
 /* background: linear-gradient(90deg, #FB7D00 0%, #FABD3B 100%); */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(0, 0, 0, 1);
}
.cta-sub-title{
  font-weight: 600;
  font-size: 17.6px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(0, 0, 0, 0.8); 
}
.blc-btn{
  background-color: #000000;
  color: #ffffff;
}
.white-btn{
  background-color:#ffffff;
  color: #FB7D00 ;
}
.cta-right {
  position: relative;
  /* min-height: 300px; */
  overflow: hidden;
}

.cta-bussines-btn {
  width: 168px;
  font-weight: 600;
  height: 40px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
  font-size: 14.4px;
  line-height: 100%;
  letter-spacing: -0.3px;
}


.cta-service-btn {
  width: 168px;
  font-weight: 600;
  height: 40px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  color: rgba(251, 125, 0, 1);
  font-size: 14.4px;
  line-height: 100%;
  letter-spacing: -0.3px;
}

.container-for-cta-btns {
  gap: 12px;
}

.cta-overlay {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  position: absolute;
  inset: 0;
}

.cta-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.7), rgba(255, 69, 0, 0.5));
}

.cta-at {
  font-family: "Mulish", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 6px;
}

.cta-service {
  font-family: "Mulish", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

/* ── Footer ──────────────────────────────────────── */
.zbook-footer {
  background: rgba(251, 125, 0, 1);
  height: 55.2px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 48px;
}
.footer-text{
  font-weight: 600;
  font-size: 19.2px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(0, 0, 0, 1);

}

/* ── Animations (data-animate) ───────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  /* .hero-circle-wrap {
    width: 340px;
  } */

  .ai-phones-wrap {
    height: 360px;
  }

  

  /* .cta-section .container {
    max-width: 100%;
  } */

}

@media (max-width: 767px) {
  /* .hero-title {
    font-size: 1.8rem;
  } */

  .cta-section .cta-container {
    height: unset;
    padding: 16px;
    gap: 16px;
    
  }

  .btn-orange,
  .btn-outline-orange {
    width: 100%;
    text-align: center;
  }

  .d-flex.gap-3 {
    flex-direction: column;
  }

  /* .hero-circle-wrap {
    width: 280px;
  } */

  .orbit-icon {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .ai-phones-wrap {
    height: 280px;
  }

  .cta-right {
    min-height: 200px;
  }

  .module-img-wrap {
    min-height: 180px;
  }

  .cta-left {
    padding: 0px 0px !important;
    gap: 20px;
  }

  .cta-section .container {
    padding: 20px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-title-and-subtitle-container {
    gap: 8px;
  }
}

.service-booking-img {
  width: 100%;
}

@media(min-width:768px){
  .service-booking-img {
    display: none;
  }
}

@media(max-width:768px) {
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}