/* ========= GLOBAL RESET ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Bricolage Grotesque', Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
  min-height: 100vh;
}

/* ========= GLOBAL ANIMATIONS ========= */
@keyframes scrollDown {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollUp {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}

@keyframes scrollDownMobile {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollUpMobile {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* ========= DESKTOP/LAPTOP STYLES ========= */

/* Container */
.brand-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 36px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}

/* Navbar */
.brand-navbar {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 36px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: relative;
}

.brand-logo {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-left: 32px;
}

.brand-logo .logo-small {
  font-size: 1.9rem;        /* "360" will be smaller than rest */
  font-weight: normal;      /* optional: thin */
  vertical-align: middle;   /* aligns numbers nicely with text */
}

@media (max-width: 600px) {
  .brand-logo {
    font-size: 1.2rem;         /* Mobile: "Advertising" */
    margin-left: 10px;
  }
  .brand-logo .logo-small {
    font-size: 0.95rem;        /* Mobile: "360" */
  }
}
.brand-navbar ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 32px;
}

.brand-navbar li { list-style: none; }

.brand-navbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 6px 16px;
}

.btn-login {
  background: #fff !important;
  color: #000 !important;
  font-size:90px;
  border-radius:10px;
    border:2px solid #fff;

}
.btn-login:hover {
  background: #ffe96e !important;
  color: #000 !important;
}
.btn-signup {
  background: #000 !important;
  color: #fff !important;
  border-radius:10px;
  border:2px solid #fff;

}
.btn-signup:hover {
  background: #ffe96e !important;
  color: #000 !important;
}

/* Hero Section */
.brand-hero {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background: #000;
}

.brand-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.90) 0%, rgba(116,116,116,0.38) 100%);
}

/* Video Grid */
.brand-hero-grid {
  width: 100vw;
  max-width: 1540px;
  height: 78vh;
  min-height: 570px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap:0px;
  position: relative;
  z-index: 1;
}

.brand-hero-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap:10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  overflow: visible;
}

.brand-hero-col video {
  width: 0px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.19);
  display: block;
  border: none;
}

.brand-hero-col:first-child video,
.brand-hero-col:last-child video {
  margin-left: -80px;
  margin-right: -80px;
}

.brand-hero-col[data-direction="down"] {
  animation: scrollDown 3s linear infinite;
}
.brand-hero-col[data-direction="up"] {
  animation: scrollUp 3s linear infinite;
}

@media (min-width: 601px) {
  .brand-hero-grid {
    gap: 10px;
  }

  .brand-hero-col video {
    width: 220px;
    height: 300px;  /* optional: adjust height too */
  }

  .brand-hero-col:first-child video,
  .brand-hero-col:last-child video {
    margin-left: -40px;
    margin-right: -40px;
  }
}

@media (max-width: 600px) {
  .brand-hero-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap:1px !important;
    padding: 0 1px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .brand-hero-col {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .brand-hero-col video {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 10px !important;
  }

  /* === Shift 3rd column to right === */
  .brand-hero-col:nth-child(3) {
    margin-left: 15px !important;  /* push right */
  }

  /* === Slow scroll animation ONLY on mobile === */
  .brand-hero-col[data-direction="up"],
  .brand-hero-col[data-direction="down"] {
    animation-duration: 60s !important;   /* slow down animation */
  }
}



/* Hero Text Content */
.brand-hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  width: 92vw;
  color: #fff;
  max-width: 700px;
}

.brand-hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.brand-hero-content p {
  font-size: 1.38rem;
  font-weight: 400;
  margin-bottom: 34px;
  color: #fff;
  opacity: 0.95;
}

.brand-cta {
  font-size: 1.18rem;
  font-weight: 600;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 34px;
  padding: 16px 42px;
  position: relative;
  box-shadow: 0 2px 18px rgba(0,0,0,0.09), 0 2px 14px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  animation: cta-pop-smooth 2.2s cubic-bezier(.43,1.41,.72,1.01) infinite;
  outline: none;
  z-index: 1;
}

.brand-cta::after {
  content: '';
  position: absolute;
  left: -10px; top: -10px; right: -10px; bottom: -10px;
  border-radius: 44px;
  border: 3px solid rgba(255,255,255,0.24); /* white with low opacity */
  opacity: 0.35;
  pointer-events: none;
  box-shadow: 0 0 18px 2px rgba(255,255,255,0.28); /* white glow, low opacity */
  transition: opacity 0.4s;
  animation: blink-outline-white 2.2s cubic-bezier(.43,1.41,.72,1.01) infinite;
  z-index: 0;
}

.brand-cta:hover,
.brand-cta:focus {
  background: #ffe96e;
  color: #222;
  transform: translateY(-2px) scale(1.10);
  box-shadow: 0 4px 40px 0 rgba(255,255,255,0.20), 0 4px 18px rgba(0,0,0,0.11);
  outline: none;
}

.brand-cta:hover::after,
.brand-cta:focus::after {
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 32px 8px rgba(255,255,255,0.45);
}

@keyframes cta-pop-smooth {
  0%   { transform: scale(1); }
  13%  { transform: scale(1.10); }
  25%  { transform: scale(1.16); }
  38%  { transform: scale(1.10); }
  56%  { transform: scale(1.06);}
  65%  { transform: scale(1.11);}
  80%  { transform: scale(1.03);}
  100% { transform: scale(1);}
}

@keyframes blink-outline-white {
  0%   { opacity: 0.35; box-shadow: 0 0 18px 2px rgba(255,255,255,0.18);}
  25%  { opacity: 0.5; box-shadow: 0 0 36px 12px rgba(255,255,255,0.32);}
  60%  { opacity: 0.2; box-shadow: 0 0 8px 1px rgba(255,255,255,0.11);}
  80%  { opacity: 0.38; box-shadow: 0 0 22px 5px rgba(255,255,255,0.18);}
  100% { opacity: 0.35; box-shadow: 0 0 18px 2px rgba(255,255,255,0.18);}
}



/* Bottom Bar */
/* Bottom Bar - infinite scroll */
.brand-hero-bottombar {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border-top: 1.5px solid #181818;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

.marquee {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
}

.marquee-content span {
  display: inline-block;
  margin: 0 24px;
}

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



/* Side column cut effect */
.brand-hero-col:first-child {
  margin-left: -60px;
  overflow: visible;
}
.brand-hero-col:last-child {
  margin-right: -60px;
  overflow: visible;
}

/* Scrollbar hidden */
::-webkit-scrollbar { width: 0 !important }

/* ========= RESPONSIVE - TABLET ========= */
@media (max-width: 1100px) {
  .brand-hero-grid { gap: 10px; }
  .brand-hero-col video {
    width: 150px;
    height: 200px;
    border-radius: 17px;
  }
  .brand-hero-content h1 { font-size: 2.3rem; }
}

/* ========== MOBILE FIX ========== */
@media (max-width: 768px) {
  /* Navbar: Only logo + hamburger */
  .brand-navbar ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 12px;
  }

  .brand-navbar.active ul {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    margin-right: 20px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Reduce negative margins on mobile for balanced video cut */
  .brand-hero-col:first-child {
    margin-left: -20px;
  }

  .brand-hero-col:last-child {
    margin-right: -20px;
  }

  .brand-hero-col video {
    width: 110px;
    height: 180px;
  }

  .brand-hero-content h1 {
    font-size:2.0rem;
  }

  .brand-hero-content p {
    font-size: 1.2rem;
  }

  .brand-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}







 



    /* Outer container: always black */
    #container {
      height:100vh;
      width:100vw;
      display:flex;
      align-items:center;
      justify-content:center;
      background-color:#ffffff;
    }

    .frame {
  width: 80%;
  max-width: 1200px;
  height: 80vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
}

/* Scrollable slides inside the frame */
.slides {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slides::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Each slide = one card; bg applied via JS */
.slide {
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  transition: background-color 0.5s ease;
  box-sizing: border-box;
}

/* Left column */
.slide .left {
  flex: 1;
  padding-right: 20px;
}
.slide .left h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #222;
}
.slide .left ul {
  list-style: none;
  margin-bottom: 24px;
}
.slide .left ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #222;
}
.slide .left ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #555;
}
.slide .left button {
  padding: 10px 24px;
  background: #6b3eff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* Right column */
.slide .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.slide .right img {
  max-width:100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .slide .right {
    order: 1;
    width: 100%;
    margin-bottom: 12px;
  }
  .slide .right img {
    width:100%;
    max-height:100px;
    object-fit: contain;
    border-radius: 12px;
  }
  .slide .left {
    order: 2;
    width: 100%;
  }
  .slide .left h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
    word-break: break-word;
  }
  .slide .left ul {
    margin-bottom: 12px;
    padding: 0;
  }
  .slide .left ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
    width: 90%;
    line-height: 1.3;
  }
  .slide .left ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #555;
  }
  .slide .left button {
    order: 3;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-top: 10px;
  }
}

/* === Scroll Buttons === */
.scroll-btn {
  position: absolute;
  left:10%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  width:40px;
  height:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 99;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
  box-shadow: 0 3px 18px rgba(60,30,110,0.09);
  user-select: none;
}
.scroll-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.scroll-btn.top {
  top: 14px;
}
.scroll-btn.bottom {
  bottom: 14px;
}












  .trusted-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
    .trusted-section h2 {
      font-size: 1.1rem;
      letter-spacing: 1px;
      margin-bottom: 30px;
      text-transform: uppercase;
      color: #333;
    }

    /* Slider container hides overflow */
    .logo-slider-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    /* Slider flex + animation */
    .logo-slider {
      display: flex;
      /* Double the width to accommodate duplicate logos */
      width: calc(2 * 100%);
      animation: scroll-left 60s linear infinite;
    }

    /* Individual logo items */
    .logo-item {
      flex: 0 0 auto;
      margin: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-item img {
      max-height: 60px;
      object-fit: contain;
    }

    /* Keyframes: move from 0 → –50% of the container width */
    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }    















        .ugc-header-section {
      width: 100%;
  background: #ffffff;
  padding: 50px 30px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #e0e0e0;
    }

    .ugc-text {
      flex: 1 1 60%;
      min-width: 240px;
    }

    .ugc-text h2 {
      font-size: 34px;
      font-weight: 600;
      margin: 0;
      color: #000000;
      font-family: 'Bricolage Grotesque', sans-serif;
    }

    .ugc-text .pink-text {
      color: #d703ad;
    }

    .ugc-text p {
      font-size: 20px;
      font-weight: 400;
      margin-top: 6px;
      color: #000000;
    }

    .ugc-btn-container {
      flex: 1 1 20%;
      min-width: 160px;
      display: flex;
      justify-content: flex-end;
    }

    .ugc-btn {
      background: #1a1a1a;
      color: #ffffff;
      font-weight: 500;
      font-size: 16px;
      padding: 10px 24px;
      border-radius: 999px;
      text-decoration: none;
    }

    /* --- MOBILE: Button left align --- */
    @media (max-width: 680px) {
      .ugc-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .ugc-btn-container {
        justify-content: flex-start;
        width: 100%;
      }
    }







   :root {
      --card-width: 325px;
      --card-gap: 36px;
    }

    body {
      margin: 0;
      padding: 0;
      background: #ffffff;
    }

    #carousel-container {
      background: #ffffff;
      width: 100vw;
      overflow: hidden;
      padding: 60px 0 90px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      border-bottom: 1px solid #e0e0e0;
    }

    #carousel-track {
      display: flex;
      flex-wrap: nowrap;
      gap: var(--card-gap);
      will-change: transform;
      transform: translateX(0);
    }

    .carousel-card {
      flex: 0 0 var(--card-width);
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 2px 12px rgba(40,40,60,0.09);
      padding: 34px 27px 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .carousel-card h3 {
      margin: 0 0 13px;
      font-size: 22px;
      font-weight: 700;
      color: #181818;
    }

    .carousel-card p {
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
      color: #444;
    }

    .carousel-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      margin-bottom: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-icon.purple { background: #7c4dff; }
    .carousel-icon.pink   { background: #d703ad; }
    .carousel-icon.blue   { background: #1976f2; }
    .carousel-icon.red    { background: #f44336; }

    .carousel-icon img {
      width: 62%;
      height: 62%;
      object-fit: contain;
    }

    @media (max-width: 900px) {
      :root {
        --card-width: 92vw;
        --card-gap: 8vw;
      }
      .carousel-card {
        padding: 36px 17px 28px;
        border-radius: 15px;
      }
      .carousel-card h3 { font-size: 18.5px; }
      .carousel-card p  { font-size: 15.5px; }
      .carousel-icon   { width: 41px; height: 41px; margin-bottom: 14px; }
    }













   /* Testimonial Section */
 body {
  background: #f9f9f9;
}
.testimonial-wrapper {
  max-width: 960px;
  margin: 80px auto 0;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  text-align: center;
  position: relative;
  padding: 0 40px 80px;
}
.testimonial-container {
  background: #fff;
  border-radius: 24px;
  padding: 40px 80px 80px;
  box-shadow: 0 8px 40px rgb(0 0 0 / 0.05);
  position: relative;
  overflow: visible;
}
.testimonial-heading {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 56px;
  line-height: 1.2;
  color: #111;
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  position: relative;
  min-height: 340px;
}
.card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 36px;
  box-shadow: 0 6px 24px rgb(0 0 0 / 0.12);
  max-width: 40%;
  flex-shrink: 0;
  color: #222;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.32,2,.55,.27), box-shadow 0.3s;
  opacity: 0.65;
  filter: blur(0.5px);
  pointer-events: none;
  /* Hide inactive cards from tab order */
}
.card-center {
  transform: none;
  box-shadow: 0 10px 32px rgb(0 0 0 / 0.18);
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  filter: none;
}
.card-left {
  transform: rotate(-18deg) translateX(-40px) scale(0.95);
  margin-left: -90px;
  z-index: 0;
}
.card-right {
  transform: rotate(18deg) translateX(40px) scale(0.95);
  margin-right: -90px;
  z-index: 0;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 14px;
}
.name {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}
.name strong {
  font-weight: 900;
}
.company {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}
.stars {
  color: #ff5a2a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.rating {
  font-weight: 500;
  color: #222;
  margin-left: 6px;
  font-size: 16px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-controls button {
  background: white;
  border: 2px solid #222;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: #222;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
}
.testimonial-controls button:hover {
  background-color: #222;
  color: white;
}
.dots {
  display: flex;
  gap: 14px;
}
.dot {
  width: 14px;
  height: 14px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #222;
}
/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonial-wrapper {
    padding: 0 8px 40px;
  }
  .testimonial-container {
    padding: 22px 5px 38px;
  }
  .testimonial-cards {
    position: relative;
    gap: 0;
    min-height: 0;
  }
  .card {
    display: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
    transform: none !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    opacity: 1 !important;
    pointer-events: auto;
    filter: none;
  }
  .card.active, .card-center {
    display: block;
    z-index: 3;
  }
  .card-left,
  .card-right {
    display: none !important;
  }
  .testimonial-heading {
    font-size: 22px;
    margin-bottom: 32px;
    line-height: 1.3;
  }
  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .testimonial-controls {
    margin-top: 20px;
    gap: 12px;
  }
  .testimonial-controls button {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .dots {
    gap: 8px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}




/* FAQ Section */
  .faq-section {
  max-width: 900px;
  margin: 80px auto;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  padding: 0 16px;
  text-align: center;
  position: relative; /* important for ::before */
}



  .faq-section h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
    color: #000000;
  }
  .faq-subtitle {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 48px;
    color: #000000;
  }
  .faq-subtitle a.faq-link {
    color: #3a86ff;
    text-decoration: none;
    font-weight: 600;
  }
  .faq-subtitle a.faq-link:hover {
    text-decoration: underline;
  }
  .faq-item {
    max-width: 700px;
    margin: 0 auto 16px;
    text-align: left;
  }
  .faq-question {
    width: 100%;
    background: #f7f8f8;
    border: 1.5px solid #e6e6e6;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: none;
    user-select: none;
    transition: background-color 0.3s ease;
  }
  .faq-question:hover,
  .faq-question:focus {
    background-color: #eef4ff;
    outline: none;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    user-select: none;
  }
  .faq-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #555;
    user-select: none;
    transition: transform 0.3s ease;
  }
  .faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
  }
  .faq-answer {
    background: #f7f8f8;
    margin-top: 6px;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    border-radius: 0 0 10px 10px;
  }






* Half-Circle Gallery Section */
:root {
  --tile: 160px;
  --arc-h: 620px;
  --pad-b: 280px;
  --h2: 44px;
}
@media (max-width: 680px) {
  :root {
    --tile: 110px;
    --arc-h: 460px;
    --pad-b: 180px;
    --h2: 32px;
  }
}
#ai-footer {
  position: relative;
  overflow: hidden;
  padding: 160px 24px var(--pad-b);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}
#ai-footer #arc-list {
  position: relative;
  width: 100%;
  height: var(--arc-h);
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
#ai-footer #arc-list li {
  position: absolute;
  width: var(--tile);
  height: var(--tile);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
  transition: transform 0.35s linear;
}
#ai-footer #arc-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#ai-footer .arc-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
  z-index: 3;
}
#ai-footer h2 {
  font-size: var(--h2);
  line-height: 1;
  font-weight: 700;
  margin: 0 0 20px;
}
#ai-footer .lead {
  font-size: 18px;
  margin: 0 0 36px;
  color: #555;
}
#ai-footer .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width:100%;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.25s ease;
}
#ai-footer .cta-btn:hover {
  background: #333;
}
#ai-footer .feature-grid {
  width:50%;
  margin-top: 80px;
  display: grid;
  gap: 40px 24px;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
#ai-footer .feature-grid h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}
#ai-footer .feature-grid p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
@media (max-width: 680px) {
  #ai-footer .feature-grid {
    margin-top: 60px;
  }
}

 





/* ========== MOBILE STYLES: ONLY FOR SCREENS ≤ 680px ========== */
@media (max-width: 680px) {
  /* ---------- Root variables for mobile ---------- */
  :root {
    --tile-w: 80px;
    --tile-h: 60px;
    --arc-h: 128px;
    --pad-b: 0px;
    --h2: 15px;
  }

  /* ---------- Main footer section ---------- */
 @media (max-width: 680px) {
  :root {
    --tile-w: 10px;
    --tile-h: 52px;
    --arc-h: 140px;   /* More natural curve height */
    --pad-b: 10px;
    --h2: 16px;
  }

  #ai-footer #arc-list {
    margin-top:-70px;
    height: var(--arc-h);
  }

  #ai-footer #arc-list li {
    width: var(--tile-w);
    height: var(--tile-h);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background: #eee;
    transition: transform 0.25s linear;
    margin: 0 !important;
  }

  #ai-footer #arc-list video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
  }
}


  /* ❌ REMOVE THE WHITE ARC OVERLAY FIX */
  #ai-footer #arc-list::after {
    content: none !important; /* ✅ This disables the unwanted white cut */
  }

  /* ---------- Arc-content (the text & button over arc) ---------- */
  #ai-footer .arc-content {
    /* ✅ FIX: Use relative instead of absolute for better layout */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top:-80px;

    width: 100vw;
    max-width: 99vw;
    min-width: 0;
    z-index: 3;
    padding: 0 2vw;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* ---------- Main heading ---------- */
  #ai-footer h2 {
    font-size: var(--h2);
    line-height: 1.13;
    font-weight: 700;
     margin-top:-10px;
    letter-spacing: -0.5px;
  }

  /* ---------- Subheading ---------- */
  #ai-footer .lead {
    font-size:8px;
    margin: 0 0 11px;
    color: #555;
  }

  /* ---------- CTA Button ---------- */
  #ai-footer .cta-btn {
    width:80%;
    max-width: 350px;
    min-width: 120px;
    padding: 12px 0;
    margin: 13px auto;
    display: block;
    font-size: 10px;
    border-radius: 20px;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    gap: 7px;
    align-items: center;
    font-weight: 600;
    transition: background 0.25s ease;
  }

  #ai-footer .cta-btn:hover {
    background: #333;
  }

  /* ---------- Feature blocks ---------- */
   @media only screen and (max-width: 767px) {
  .feature-row {
    display: none;
  }
}


  /* ---------- Contact Info ---------- */
  .contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    gap: 0;
    border: 1.3px solid #e3e3e3;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.04);
    padding: 10px 12px;
    margin: 14px 0 5px 0;
    font-size: 10px;
    width:95%;
    margin-left:-10px;
    box-sizing: border-box;
    font-weight: 500;
  }

  .contact-row .info-item {
    font-size: 8px;
    align-items: center;
    justify-content: center;
    gap:5px;
    display: flex;
  }

  .contact-label,
  .contact-value {
    font-size:10px;
    text-align: left;
    align-items:left;
    justify-content:left;
    margin-top:1px;
    padding: 0;
    display: inline;
  }
  .address{
     font-size:10px;
    text-align: left;
    align-items:left;
    justify-content:left;
    margin-top:1px;
    margin-left: -100px;
    padding:10px 10px 10px 10px;
    display: inline;
    border: 1px solid #e5e0e0;
    border-radius:10px ;
    
  }

  .address-row {
    width: 100%;
    margin-top:10px;
    margin-left: -100px;

    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 0 0;
    color: #2a2a2a;
    padding-bottom: 10px;
    justify-content: center;
    display: flex;
    gap: 5px;
  }
}
/* SIRF ICON KO LEFT PAR LAO, TEXT PAR KOI ASAR NA HO */

@media (max-width: 600px) {
  .address-row {
    display: flex;
    align-items: flex-start;
    gap: 100px;        /* gap between icon and text, adjust as needed */
    padding-left: 0;
    justify-content: flex-start; /* ensures icon left hi rahe */
  }
  #address-icon {
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #address-icon svg {
    width: 30px;
    height: 30px;
    margin-top:10px;
    display: block;
  }
  /* address text untouched! */
}


@media (min-width: 601px) {
  .address-row {
    display: flex;
    margin-top: 10px;
    background-color: #ffffff;
    align-items:left;
    justify-content:left;
    gap: 10px;        /* gap between icon and text, adjust as needed */
    padding-left: 0;
    border-radius:10px;
    padding:5px 5px 5px 5px;
    border: 1px solid #ded8d8;
    text-align: left !important;
    justify-content: flex-start; /* ensures icon left hi rahe */
    font-family: 'Bricolage Grotesque', sans-serif;  /* <== FONT FAMILY ADDED */
  }
  #address-icon {
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #address-icon svg {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    display: block;
  }
  
  /* address text untouched! */
}



/* ========== DESKTOP/TABLET STYLES: ONLY FOR SCREENS ≥ 681px ========== */
@media (min-width: 681px) {
  /* ---------- Root variables for desktop ---------- */
  :root {
    --tile-w: 92px;
    --tile-h: 164px;
    --arc-h: 480px;
    --pad-b: 160px;
    --h2: 44px;
  }
  /* ---------- Main footer section ---------- */
  #ai-footer {
    padding: 90px 24px var(--pad-b);
    min-height: unset;
    box-sizing: border-box;
    background-color: #f9f9f9; 
  }
  /* ---------- Arc-list: For video circle arc ---------- */
  #ai-footer #arc-list {
    position: relative;
    width: 100%;
    height: var(--arc-h);
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
    user-select: none;
    z-index: 1;
  }
  #ai-footer #arc-list li {
    position: absolute;
    width: var(--tile-w);
    height: var(--tile-h);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgb(0 0 0 / 8%);
    transition: transform 0.25s linear;
    background: #eee;
    margin: 0 !important;
  }
  #ai-footer #arc-list video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 13px;
    pointer-events: none;
  }
  /* ---------- Arc-content (main center content) ---------- */
  #ai-footer .arc-content {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 100px;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    z-index: 3;
    width: 90vw;
    padding: 0 6vw;
    box-sizing: border-box;
  }
  /* ---------- Main heading (h2) ---------- */
  #ai-footer h2 {
    font-size: var(--h2);
    line-height: 1.13;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
  }
  /* ---------- Sub-heading ---------- */
  #ai-footer .lead {
    font-size: 12px;
    margin: 0 0 11px;
    color: #555;
  }
  /* ---------- CTA Button ---------- */
  #ai-footer .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width:100%;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 14px;
    font-weight: 600;
    font-size:18px;
    transition: background 0.25s ease;
    margin-bottom: 8px;
    white-space: normal;
  }
  #ai-footer .cta-btn:hover { background: #333; }

  /* ---------- Features section (row of blocks) ---------- */
  .feature-row {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: center;
    gap: 55px;
    margin: 30px 0 0 0;
    width: 100%;
    justify-content: center;
  }
  .feature-block {
    background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.03);
  padding: 8px 16px;             /* ⬅️ reduced top-bottom padding */
  min-width: 120px;              /* Optional: smaller button size */
  max-width: fit-content;        /* shrink to content */
  text-align: center;
  border: 1px solid #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  .feature-block h4 {
    margin: 0;
    font-size:16px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
  }
  .feature-block p {
    font-size: 15px;
    color: #444;
    margin-bottom: 0;
  }
  /* ---------- Contact info row ---------- */
 
.contact-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px; /* gap between Phone and Email */
  border: 1.5px solid #e3e3e3;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  padding: 16px 16px;
  margin-top: 30px;
  margin-left:-20px;
  font-size: 17px;
  max-width: 670px;
  width: max-content;
  font-weight: 500;
  justify-content: center;
 }

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
 }

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  width: 22px;
}

.contact-value {
  font-size: 18px;
  color: #1a2a32;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
  /* No extra margin */
}

/* Responsive (mobile): stack vertically, center */
@media (max-width: 600px) {
  .contact-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 13px 10px;
    font-size: 15px;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    width: 100%;
  }
  .contact-icon svg {
    width: 22px !important;
    height: 22px !important;
    display: block;
  }
  .contact-value {
    font-size: 15px;
    word-break: break-all;
  }
  .address-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100vw;
    max-width: 100vw;
    font-size: 15px;
    font-weight: 500;
    color: #232323;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
    margin-top: 8px;
  }
  .address-row .contact-icon svg {
    width: 28px !important;
    height: 28px !important;
    margin-top: 4px;
  }
  .address-row .address {
    font-size: 15px;
    color: #1a2a32;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }
}

 @media (max-width: 600px) {
  .address-row {
    padding-left: 0 !important;  /* Left se koi padding nahi */
  }
  .address-row .contact-icon {
    margin-left: 0 !important;   /* Icon ko bilkul left la do */
    padding-left: 0 !important;
  }
}
}




.video-wrapper {
  flex: 0 0 auto;
  width: 180px;
 
  margin-right: 0;         /* <<< no right margin */
  border-radius: 16px;
  overflow: hidden;
 }

.video-wrapper video {
  width: 100%;
   flex: 0 0 auto;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Hover pause on desktop */
 

/* Fullscreen modal */
#fullscreen-video {
  display: none;
  position: fixed;
  inset: 0;
 
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#fullscreen-video.active {
  display: flex;
}

#fullscreen-video video {
  width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

/* Animation keyframe */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .video-wrapper {
    width: 100px;
    margin-right: 0;
    border-radius: 12px;
  }

  #fullscreen-video video {
    width: 98vw;
    max-height: 75vh;
  }
}

/* Desktop large screens */
@media (min-width: 1024px) {
  .video-wrapper {
    width: 220px;
    flex: 0 0 auto;
    margin-right: 0;
  }
}




  

