/* ===============================
   Global CSS Variables
   =============================== */
:root {
  /* Brand Colors */
  --primary-color: #fdca01;
  --secondary-color: #ffffff;
  --text-color: #94969e;
  --heading-color: #ffffff;
  --background-dark: #000000;
  --border: #1d1d20;

  /* Buttons */
  --button-bg: #ffffff;
  --button-text: #000000;
  --button-radius: 12px;
  --button-padding: 16px 20px;

  --nav-bg: #131316;

  /* Typography */
  --font-family-base: "Instrument Sans", sans-serif;
  --font-family-heading: "Poppins", sans-serif;

  --navbar-font-size: 1rem; /* ~16px */

  --hero-heading-font-size: 3.5rem; /* ~54px */
  --hero-font-size: 1.5rem; /* ~24px */

  --heading-font-size: 3rem; /* ~48px */
  --font-size: 1.25rem; /* ~20px */
  --font-size-small: 0.875rem; /* ~14px */
  --btn-font-size: 1rem;

  /* Line Heights */
  --line-height-heading: 1.3;
  --line-height-body: 1.6;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;

  /* Section Spacing */
  --section-padding: 30px 0;
  --section-padding-sm: 50px 0;

  /* Card Style */
  --card-bg: #111111;
  --card-radius: 16px;
  --card-padding: 24px;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  /* Existing variables... */

  /* Card Variables */
  --card-width: 252px;
  --card-height: 303px;
  --card-gap: 32px;
  --card-radius-lg: 24px;
  --card-padding-lg: 24px;
  --card-border: 1px solid #28282c;
  --card-bg-gradient: radial-gradient(
    63.64% 219% at 50% 0%,
    #131316 0%,
    #000000 100%
  );

  /* FAQ Card Variables */
  --faq-card-width: 514px;
  --faq-card-height: 116px;
  --faq-card-gap: 24px;
  --faq-card-radius: 16px;
  --faq-card-padding: 16px;
  --faq-card-border: 1px solid #28282c;
  --faq-card-bg: radial-gradient(
    63.64% 219% at 50% 0%,
    #131316 0%,
    #000000 100%
  );

  /* mobile style */

  --hero-heading-font-size-md: 2rem; /* ~54px */
  --hero-font-size: 1.125rem; /* ~18px */
}

/* Body */
body {
  background: var(--background-dark);
  font-family: var(--font-family-base);
  line-height: var(--line-height-body);
  color: var(--text-color);
}

/* Buttons */
.contact-btn {
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: var(--font-weight-medium);
  padding: var(--button-padding);
  border-radius: var(--button-radius);
  transition: all 0.3s;
  display: inline-block;
  font-size: var(--btn-font-size);
}

.contact-btn:hover {
  background: var(--button-bg);
  color: var(--button-text);
}

/* Navbar */
.main-header {
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar .nav-link {
  color: var(--text-color);
  font-size: var(--navbar-font-size);
  transition: 0.3s;
  padding: 8px 14px; /* Better click area */
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--secondary-color);
  border-radius: 12px;
  background: var(--nav-bg);
}

/* Mobile contact button */
@media (max-width: 992px) {
  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   Hero Section
   =============================== */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding: var(--section-padding);
  background: var(--background-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Badge */
.hero-badge {
  background: rgba(148, 150, 158, 0.16);
  border: 0 solid var(--Gray-60, #94969e);
  /* border: 1px solid var(--border); */
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
  font-size: var(--font-size-small);
  margin-bottom: 20px;
}

  .avatars img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      /* border: 3px solid #111; */
      margin-left: -18px; /* overlap effect */
    }

    .avatars img:first-child {
      margin-left: 0;
    }

/* Title */
.hero-title {
  font-family: var(--font-family-heading);
  font-size: var(--hero-heading-font-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--heading-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--hero-heading-font-size-md);
  }

  .hero-subtitle {
    font-size: var(--hero-heading-font-size-md);
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: var(--hero-font-size);
  line-height: var(--line-height-body);
  color: var(--text-color);
  margin-bottom: 30px;
}

/* Actions */
.hero-actions {
  margin-bottom: 40px;
}

.hero-actions .contact-btn {
  font-size: 1rem;
  padding: 14px 28px;
}

.app-links span {
  color: var(--text-color);
  margin-right: 8px;
  font-size: var(--font-size-small);
}

.app-links img {
  margin-left: 6px;
  cursor: pointer;
}

/* Hero Images Wrapper */
.hero-slider {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 160px; /* desktop gap */
  position: relative;
  flex-wrap: nowrap;
}

/* Shared Image Base */
.hero-img {
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  max-width: 100%;
  height: auto;
}

/* =====================
   Desktop (already good)
   ===================== */
@media (min-width: 993px) {
  .hero-img.left {
    bottom: 228px;
    opacity: 1;
    transform: rotate(0deg);
    width: 296px;
    height: auto;
  }

  .hero-img.center {
    position: relative;
    z-index: 2;
    width: 296px;
    height: auto;
  }

  .hero-img.right {
    bottom: 228px;
    opacity: 1;
    position: relative;
    width: 296px;
    height: auto;
  }
}

/* =====================
   Tablets
   ===================== */
@media (max-width: 992px) {
  .hero-slider {
    gap: 60px; /* smaller gap */
  }

  .hero-img.left,
  .hero-img.right {
    width: 200px;
    bottom: 100px; /* smaller push-up */
  }

  .hero-img.center {
    width: 240px;
    bottom: 50px;
  }
}

/* =====================
   Mobiles
   ===================== */
@media (max-width: 576px) {
  .hero-slider {
    justify-content: flex-start;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px; /* breathing space */
  }

  .hero-img {
    flex: 0 0 100%;
    width: 100% !important;
    height: auto !important;
    bottom: 0 !important; /* reset */
    transform: none !important;
    scroll-snap-align: center;
  }
}

/* Trusted Logos Section */
.trusted-logos {
  width: 100%;
  background: radial-gradient(29.06% 100% at 50% 0%, #131316 0%, #000000 100%);
  padding: 60px 0 50px;
  border-top: 1px solid transparent;
  border-image-source: radial-gradient(
    38.96% 100% at 50% 0%,
    #28282c 0%,
    #000000 100%
  );
  border-image-slice: 1;
}

.trusted-logos .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-logos .trusted-text {
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: var(--font-size-small);
}

.trusted-logos .logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trusted-logos img {
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-logos {
    padding: 40px 0;
  }
  .trusted-logos .trusted-text {
    font-size: 0.9rem;
  }
  .trusted-logos img {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .trusted-logos {
    padding: 30px 0;
  }
  .trusted-logos img {
    height: 20px;
  }
}

/* logo  slider5 */
.logo-container {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    black 20%,
    black 80%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    black 20%,
    black 80%,
    rgba(0, 0, 0, 0)
  );
}

.logo-track {
  display: flex;
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
  animation: scrollLeft 100s linear infinite;
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
}

.scroll-left {
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30%);
    /* -50% for repeating logos */
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsive logo sizes */
@media (max-width: 768px) {
  .logo-track li img {
    height: 30px;
  }
}

/* Trusted Logos Section end*/

/* slider */

.micro-slider {
  height: 480px;
  /* margin: 10px 0; */
  position: relative;
  width: 100%;
}
.micro-slider.fullwidth {
  height: 480px;
  /* margin: 64px 0; */
}
.micro-slider.fullwidth .slider-item {
  height: 480px;
  line-height: 480px;
  width: 100%;
}
.slider-wrapper {
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 0 50%;
}
.slider-item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  color: #fff;
  display: none;
  font-size: 72px;
  height: 320px;
  line-height: 320px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 320px;
  cursor: pointer;
}
/*
.slider-item:not(.active) {cursor: pointer;}
*/
.indicators {
  bottom: -50px;
  left: 50%;
  list-style-type: none;
  margin: 0 0 0 -77px;
  padding: 0;
  position: absolute;
}
.indicators li {
  color: #fff;
  float: left;
  height: 16px;
  margin-right: 8px;
  text-align: center;
  width: 16px;
}
.indicators li:last-child {
  margin: 0;
}
.indicators a {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e9ec;
  color: #fff;
  display: inline-block;
  height: 16px;
  width: 16px;
}

.slider-item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 480px;
  text-align: center;
  cursor: pointer;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full image, may leave empty space */
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0.9; /* 90% visible */
  transition: opacity 0.5s ease-in-out; /* smooth fade */
}

.slider-item.active img {
  opacity: 1; /* active slide fully visible */
}

/* Features */

section.features {
  text-align: center;
  padding: var(--section-padding);
}

.features .tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: var(--font-size-small);
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 16px;
}

.features h2 {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.features p {
  /* max-width: 680px; */
  margin: 0 auto 40px;
  font-size: var(--font-size);
  line-height: 1.6;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  align-items: center; /* centers vertically inside the box */
  margin: 0 auto; /* centers the whole box */
  margin-bottom: 48px;

  width: 166px;
  height: 54px;
  opacity: 1;
  border-radius: 16px;
  border: 1px solid #28282c;
  gap: 24px;
  padding: 12px 16px;
}

.slider-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto 60px;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollSlider 30s linear infinite;
  will-change: transform;
}

/* Infinite scroll left */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* moves half track (since duplicated cards) */
  }
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
}

.slider-track.reverse {
  animation: scrollRight 30s linear infinite;
}

/* Scroll right */
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.feature-card {
  flex: 0 0 auto;
  width: 250px;
  height: 350px;
  background: var(--card-bg-gradient);
  border: var(--card-border);
  border-radius: var(--card-radius-lg);
  padding: var(--card-padding-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-track h3 {
  color: var(--secondary-color);
}

/* Features end*/

/* faq */

/* Two columns */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  position: relative;
}

/* Divider line between columns */
.flow-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #28282c;
  transform: translateX(-50%);
}

.faq-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #28282c;
  background: radial-gradient(63.64% 219% at 50% 0%, #131316 0%, #000 100%);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* .faq-card.active {
  border-color: var(--primary-color);
} */

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-header h4 {
  flex: 1;
  text-align: left;
  margin: 0;
  font-size: var(--font-size);
  font-weight: var(--font-weight-medium);
  color: var(--heading-color);
}

.toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--secondary-color);
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-card.active .faq-content {
  max-height: 300px;
  opacity: 1;
}

.faq-content p {
  font-size: var(--navbar-font-size);
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

/* Responsive (single column on mobile) */
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid::before {
    display: none;
  }
  .faq-column h3 {
    text-align: center;
  }
}

.flow-section {
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  background: #000;
}

.flow-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* faq end */

/* about us  */

/* Section Wrapper */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding);
  background: #000;
  color: #fff;
}

/* Main Container */
.about-container {
  position: relative; /* needed for glow positioning */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  border-radius: 64px;
  background: #000;
  border: 0 solid #28282c;
  padding: 60px;
  overflow: hidden; /* hides glow outside */
  z-index: 1;
}

/* Glow Effects */
.about-container::before,
.about-container::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fdca01;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  z-index: 0;
}

/* Top-left glow */
.about-container::before {
  top: -50px;
  left: -50px;
}

/* Bottom-right glow */
.about-container::after {
  bottom: -50px;
  right: -50px;
}

/* Left Side Content */
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  z-index: 1; /* keeps text above glow */
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #facc15; /* accent yellow */
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
}

.about-text p {
  line-height: 1.6;
  color: #aaa;
  max-width: 600px;
}

/* Right Side Image */
.about-image {
  flex-shrink: 0;
  width: 359px;
  height: 392px;
  border-radius: 32px;
  border: 1px solid #28282c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  z-index: 1; /* keeps above glow */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .about-text {
    align-items: center;
  }

  .about-image {
    width: 280px;
    height: 320px;
  }
}
/* about us  end*/

/* Testimonials */

/* Section Wrapper */
.testimonials {
  display: flex;
  justify-content: center;
  padding: var(--section-padding);
  background: #000;
  color: #fff;
}

/* Container */
.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1264px;
  width: 100%;
  text-align: center;
}

/* Header */
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
}

.testimonials-header .tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fdca01;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.testimonials-header p {
  color: #aaa;
  line-height: 1.6;
}

/* Slider Wrapper */
.testimonials-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1264px;
}

/* Track */
.testimonials-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
}

/* Card */
.testimonial-card {
  flex: 0 0 400px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #28282c;
  background: radial-gradient(63.64% 219% at 50% 0%, #131316 0%, #000 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Profile inside card */
.profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 0.5px solid #28282c;
}

.profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.profile span {
  font-size: 0.85rem;
  color: #aaa;
}

/* Nav Buttons */
.testimonial-nav {
  display: flex;
  gap: 16px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fdca01;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-card {
    width: 100%;
    max-width: 350px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}




/* Testimonials end */

/* more faw */

/* Tabs wrapper (outer pill) */
.tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0; /* no gaps so buttons touch */
  padding: 4px 8px;
  border-radius: 32px;
  border: 1px solid #28282c;
  width: fit-content;
  margin: 0 auto 32px;
  background: #000; /* keep section bg consistent */
}

/* Tab buttons inside */
.tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  /* width: 131px; */
  height: 48px;
  padding: 8px 24px;

  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 32px;
  border: none;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

/* Active tab */
.tab-btn.active {
  background: var(--primary-color, #fdca01);
  color: #000;
}

/* Hide inactive FAQ lists */
.faq-list {
  display: none;
}
.faq-list.active {
  display: block;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  position: relative;
}

/* Divider line between columns */
.flow-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #28282c;
  transform: translateX(-50%);
}

.faq-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #28282c;
  background: radial-gradient(63.64% 219% at 50% 0%, #131316 0%, #000 100%);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* .faq-card.active {
  border-color: var(--primary-color);
} */

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-header h4 {
  flex: 1;
  text-align: left;
  margin: 0;
  font-size: var(--font-size);
  font-weight: var(--font-weight-medium);
  color: var(--heading-color);
}

.toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--secondary-color);
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-card.active .faq-content {
  max-height: 300px;
  opacity: 1;
}

.faq-content p {
  font-size: var(--navbar-font-size);
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

/* Responsive (single column on mobile) */
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid::before {
    display: none;
  }
  .faq-column h3 {
    text-align: center;
  }
}

.flow-section {
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  background: #000;
}

.flow-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-img-pattern-section {
  padding: var(--section-padding);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-img-pattern-container {
  display: flex;
  position: relative;
  background: var(--primary-color);
  border-radius: 40px;
  /* border-radius: var(--card-radius); */
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.cta-img-pattern-text {
  z-index: 2;
  position: relative;
  max-width: 700px;
  width: 100%;
  padding: 40px 40px;
}

.cta-img-pattern-text h3 {
  font-size: var(--hero-heading-font-size);
  color: var(--button-text);
  margin-bottom: 1rem;
  line-height: var(--line-height-heading);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
}

/* Mobile styles */
@media (max-width: 768px) {
  .cta-img-pattern-text h3 {
   font-size: var(--hero-heading-font-size-md);
  }
}

.cta-img-pattern-text p {
  color: var(--text-color);
  font-size: var(--font-size);
  margin-bottom: 2rem;
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
}

.cta-img-pattern-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-btn {
  padding: var(--button-padding);
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-small);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-family-base);
}

.cta-btn-primary {
  background-color: var(--button-bg);
  color: var(--button-text);
}

.cta-btn-secondary {
  background-color: var(--button-bg);
  color: var(--button-text);
}

.cta-btn-secondary:hover {
  background-color: #e4e4e4; /* Optional: make a var */
}

/* === IMAGE STYLES === */
.cta-dot-pattern-img {
  position: absolute;
  top: 20%;
  right: 0;
  max-width: 300px;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

/* Mobile improvements */
@media (max-width: 768px) {
  .cta-img-pattern-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    position: relative;
  }

  .cta-img-pattern-text {
    padding: 0;
    margin-bottom: 20px;
    z-index: 2;
  }

  /* Image as a centered card below text */
  .cta-dot-pattern-img {
    position: relative;
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 20px;
    opacity: 0.9;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    padding: 10px;
  }

  /* Buttons centered */
  .cta-img-pattern-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Ultra-small screens */
@media (max-width: 480px) {
  .cta-img-pattern-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* footer */

/* ===== Footer Section ===== */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid #28282c;
  background: radial-gradient(63.64% 219% at 50% 0%, #131316 0%, #000 100%);
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

/* Left section */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-left .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left .logo img {
  width: 250px;
  height: 80px;
}

.footer-left .logo span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none; /* move this here */
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #000;
}

/* Links Section */
.footer-links {
  display: flex;
  width: 100%;
  max-width: 508px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Bottom bar */
.footer-bottom {
  width: 100%;
  max-width: 1132px;
  padding: 24px 0;
  border-top: 1px solid #262626;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #bdbdbd;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-links {
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
  }
}

/* footer end */

  .cta-img-pattern-buttons {
  display: flex;
  gap: 10px; /* spacing between buttons */
}

.store-btn {
  width: 200px;   /* set fixed width */
  height: 60px;   /* set fixed height */
  object-fit: contain; /* keeps image proportion inside the box */
}


.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* space between icon & text */
    padding: 10px 18px;
    margin: 5px;
    border: 1px solid;
    border-color: var(--border);
    background-color: var(--secondary-color);
    border-radius: 6px;
    color: var(--button-text);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: var(--background-dark); /* darker blue on hover */
     border: 1px solid;
    border-color: var(--border);
    text-decoration: none;
    color: white;
}

/* Contact Section Only */
.contact-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.contact-section .contact-info {
  flex: 0 0 40%;
  text-align: left;
}

.contact-section .contact-map {
  flex: 0 0 60%;
}

.contact-section .contact-info h2 {
  font-family: var(--font-family-heading);
  font-size: var(--heading-font-size);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-section .contact-info p {
  font-size: var(--font-size);
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-color);
}

.contact-section .contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-section .contact-info,
  .contact-section .contact-map {
    flex: 0 0 100%;
  }
}

/* link color */
a
{
  color: var(--primary-color);
}