/* Global Layout */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #121214;
  color: #fff;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

#soon {
  scroll-margin-top: 100px; /* Adjust depending on your sticky nav height */
}

/* Max Width Container (1280px centered inside 1440px) */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Loader Container */

#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

/* Loader Text Animation */
.loader-text {
  font-size: clamp(48px, 12vw, 214px);
  font-weight: 800;
  color: white;
  animation: zoomFadeOut 2.5s ease forwards;
  opacity: 1;
}

/* Keyframes for Zoom & Fade */
@keyframes zoomFadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* After JS adds this class, loader fades out */
#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Announcement Bar 
.announcement-bar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px 12px; 
  background: #121214;
  color: white;
  text-align: center;
  font-size: 13px; 
  font-weight: 500;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.announcement-text a {
  color: #fff;
  text-decoration: underline;
}

.header.without-announcement {
  top: 0;
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 14px;
    padding: 4px 12px;
  }
}
*/
/* ---------------- HEADER ---------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  /* Adjust this to match announcement-bar height */
  background: linear-gradient(to bottom, #121214 0%, #12121400 100%);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* When scrolled */
.header.scrolled {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  backdrop-filter: blur(10px); /* glass effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Flex layout for nav inside container */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 72px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #EF072E;
}

.nav-menu .menu-active {
  color: #EF072E;
}
/* Hamburger icon hidden by default */
/* Hamburger icon hidden by default */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Mobile menu hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  right: 40px;
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  padding: 20px;
  z-index: 999;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  text-decoration: none;
}
.mobile-nav a:hover {
  color: #EF072E;
}

/* ---------------- HERO SECTION ---------------- */
.wrapper {
  max-width: auto;
  margin: 0 auto;
}
.hero {
  padding-top: 80px; /* To offset fixed header */
  position: relative;
  height: 100vh;
  background: url("assets/images/Rydup_rides.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #12121400 0%,
    #12121480 30%,
    #121214 100%
  );
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 28%; /* vertically centered */
  left: 50%; /* horizontally centered */
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 214px;
  font-weight: 800;
  color: white;
  mix-blend-mode: soft-light;
  opacity: 88%;
  text-align: center;
}

/* ---------------- HERO CONTENT SECTION ---------------- */
.hero-rydup {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 120px;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  flex-wrap: wrap;
  margin-top: -280px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 300px;
  max-width: 1000px;
}

.left .tagline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  font-size: 14px;
  margin-bottom: 4px;
  color: #ffffff;
  border-radius: 4px;
}

.left h1 {
  font-size: 56px;
  color: #EF072E;
  line-height: 58px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.left p {
  font-size: 16px;
  line-height: 22px;
  color: #ccc;
  margin-bottom: 20px;
}

.store-buttons img {
  width: 140px;
  margin-right: 10px;
}

.right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.right img {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
}

/* ---------------- Rydyp Features ---------------- */
/*
.rydup-features {
  background-color: #121214;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  max-width: 900px;
  line-height: 24px;
  margin: 0 auto 30px;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 52px;
  border-bottom: 1px solid #444;
  margin-bottom: 40px;
  flex-wrap: wrap;
  min-width: 900px;
  width: auto;
}

.tab {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: #EF072E;
  font-weight: bold;
}

.tab.active::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #EF072E;
  width: 100%;
  bottom: -2px;
  left: 0;
}
/* Content Area 
.tab-content {
  display: none;
  padding: 24px;
  border-top: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.tab-slider {
  width: 30%;
  position: relative;
  overflow: hidden;
  flex: 0 0 30%;
  max-width: 25%;
}

.tab-slider input[type="radio"] {
  display: none;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

#slide1:checked ~ .slides {
  transform: translateX(0%);
}
#slide2:checked ~ .slides {
  transform: translateX(-100%);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.indicators label {
  width: 20px;
  height: 4px;
  border-radius: 16%;
  background: #666;
  cursor: pointer;
  transition: background 0.3s ease;
}

#slide1:checked ~ .indicators label[for="slide1"],
#slide2:checked ~ .indicators label[for="slide2"] {
  background: #EF072E;
  width: 32px;
}

/* Text Content 
.tab-text {
  flex: 1;
  max-width: 36%;
}
.tab-text h3 {
  font-size: 18px;
  margin: 0;

  color: #fff;
  text-align: left;
}
.tab-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
  text-align: left;
  padding-bottom: 20px;
}

/* Animation 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Feature Accordion -----*/
.rydup-features {
  background-color: #121214;
  color: white;
  text-align: center;
  padding: 40px 0px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  max-width: 900px;
  line-height: 24px;
  margin: 0 auto 30px;
}

.accordion-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border-bottom: 1px solid #444;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8px;
  font-size: 20px;
  font-weight: 600;
  color: #ccc;
  cursor: pointer;
  background: none;
  transition: 0.3s;
  user-select: none;
}

.accordion-title::after {
  content: "▼";
  font-size: 16px;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-title {
  border-bottom: 1px solid #EF072E;
  color: #EF072E;
}

.accordion-item.active .accordion-title::after {
  transform: rotate(-180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding: 20px;
}

.accordion-title:hover {
  color: #EF072E;
}

.tab-columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: left;
  flex-wrap: wrap;
}

.tab-slider {
  width: 30%;
  position: relative;
  overflow: hidden;
  flex: 0 0 30%;
  max-width: 25%;
}

.slides {
  display: flex;
  width: 100%;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.tab-text {
  flex: 1;
  max-width: 36%;
}

.tab-text h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.tab-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
  padding-bottom: 20px;
}

/* General Subscribe Section Styling */
.subscribe-section {
  background-color: #121214;
  padding: 20px 12px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Container */
.subscribe-container {
  max-width: 90%;
  margin: 0 auto;
}

/* Heading */
.subscribe-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Subheading Text */
.subscribe-container p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
}

/* Form Styles */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  color: #ffffff;
}

.subscribe-form input[type="email"],
.subscribe-form input[type="phonenumber"] {
  padding: 12px 16px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #6a6a6a;
  color: #ffffff;
  background-color: #1a1a1a;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.subscribe-form input[type="email"]:focus,
.subscribe-form input[type="phonenumber"]:focus {
  border-color: #ffffff;
  color: #ffffff;
  outline: none;
}

/* Button Styles */
.subscribe-form button {
  padding: 12px 30px;
  background-color: #EF072E;
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #EF072E;
}

/* Thank You Message */
#thank-you-message {
  margin-top: 20px;
}

#thank-you-message h3 {
  font-size: 24px;
  color: #28a745;
  margin-bottom: 10px;
}

#thank-you-message p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.4;
}

#thank-you-message p a {
  text-decoration: none;
  color: #EF072E;
}

/* ---------------- scrolling animation ---------------- */

.scrolling-banner {
  background-color: #EF072E;
  transform: rotate(-5deg);
  margin-top: 32px;
  overflow: hidden;
  width: auto;
  padding: 20px 0;
  position: relative;
}

.scrolling-track {
  display: flex;
  align-items: center;
  gap: 32px; /* Gap between each pair */
  white-space: nowrap;
  animation: scrollLoop 20s linear infinite;
}

.scrolling-item {
  display: flex;
  align-items: center;
  gap: 32px; /* Gap between text and logo */
}

.scrolling-item span {
  font-size: 20px;
  font-weight: 800;
  color: black;
}

.scrolling-item img {
  height: 32px;
  width: auto;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.rydup-support {
  background-image: url("assets/images/Rydup-support-banner.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
}

.support-content {
  width: 550px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  top: 50%; /* vertically centered */
  left: 50%; /* horizontally centered */
  transform: translate(-50%, -50%);
}

.info-card {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 32px 52px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.info-card h2 {
  font-weight: 700;
  font-style: italic;
  margin: 0 0 12px;
}

.info-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 28px;
  line-height: 1.5;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.app-store-buttons img {
  height: 40px;
}

/* ---------------- Footer ---------------- */
.footer {
  background-color: #0d0d0d;
  padding: 40px 20px 20px;
  color: #999;
  text-align: center;
  font-size: 14px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff3c3c;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(0.7);
}

.footer-copy {
  color: #666;
  margin-top: 10px;
  font-size: 12px;
}

/* ---------------------------------------------------------------
------------------------------------------------------------------
------------------ Tablet 768 Responsive -----------------------
------------------------------------------------------------------
--------------------------------------------------------------- */
/* Show hamburger & hide desktop menu on small screens */
@media (min-width: 600px) and (max-width: 899px) {
  .container {
    padding: 0 12px;
  }
  .nav-menu {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Optional: Adjust logo size on small screen */
  .logo img {
    height: 56px;
  }

  /* Make sure the header container stacks neatly if needed */
  .header .container {
    padding: 0 15px;
  }

  .header {
    height: 72px;
  }

  .header.scrolled {
    /* Base blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Visual gradient mask on top of blur */
    background: linear-gradient(
      to bottom,
      rgba(18, 18, 20, 0.9) 0%,
      /* Top: 100% opaque */ rgba(18, 18, 20, 0.6) 50%,
      /* Middle: 50% opacity */ rgba(18, 18, 20, 0) 100%
        /* Bottom: transparent */
    );
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
  }
  .mobile-nav.show {
    display: flex;
  }

  .hamburger svg {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  #mobileNav {
    display: none;
    flex-direction: column;
    background: #000000;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  /* ---------------- HERO SECTION ---------------- */

  .hero {
    padding-top: 80px; /* To offset fixed header */
    position: relative;
    height: 100vh;
    background: url("assets/images/Rydup_rides.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      #12121400 0%,
      #12121480 30%,
      #121214 100%
    );
    z-index: 1;
  }

  .hero-text {
    position: absolute;
    top: 28%; /* vertically centered */
    left: 50%; /* horizontally centered */
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 120px;
    font-weight: 800;
    color: white;
    mix-blend-mode: soft-light;
    opacity: 88%;
    text-align: center;
  }
  /* ---------------- Rydyp Features ---------------- */
  /* Section Base */
  .rydup-features {
    background-color: #121214;
    padding-top: 48px;
    color: white;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .section-subtitle {
    color: #ccc;
    max-width: 800px;
    line-height: 24px;
    font-size: 16px;
    text-align: justify;
    margin: 0 auto 24px;
  }
  .tabs {
    min-width: 80%;
  }
  .rydup-features {
    max-width: 1280px;
  }
  /* ---------------- scrolling animation ---------------- */

  .scrolling-banner {
    background-color: #EF072E;
    transform: rotate(-5deg);
    margin-top: 32px;
    overflow: hidden;
    width: auto;
    padding: 20px 0;
    position: relative;
  }

  .scrolling-track {
    display: flex;
    align-items: center;
    gap: 32px; /* Gap between each pair */
    white-space: nowrap;
    animation: scrollLoop 20s linear infinite;
  }

  .scrolling-item {
    display: flex;
    align-items: center;
    gap: 32px; /* Gap between text and logo */
  }

  .scrolling-item span {
    font-size: 20px;
    font-weight: 800;
    color: black;
  }

  .scrolling-item img {
    height: 32px;
    width: auto;
  }

  @keyframes scrollLoop {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* ---------------- Support ---------------- */

  .rydup-support {
    height: auto;
    z-index: -1;
  }

  .support-content {
    justify-content: center;
    margin-top: 350px;
    padding: 0;
  }

  .info-card {
    width: 100%;
    max-width: 350px;
    padding: 16px 20px;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .app-store-buttons img {
    height: 40px;
    width: auto;
  }
}

/* ---------------------------------------------------------------
------------------------------------------------------------------
------------------ Mobile 375px Responsive -----------------------
------------------------------------------------------------------
--------------------------------------------------------------- */

@media (max-width: 990px) {
  .container {
    padding: 0 12px;
  }
  .nav-menu {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Optional: Adjust logo size on small screen */
  .logo img {
    height: 56px;
  }

  /* Make sure the header container stacks neatly if needed */
  .header .container {
    padding: 0 15px;
  }

  .header {
    height: 72px;
  }

  .header.scrolled {
    /* Base blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Visual gradient mask on top of blur */
    background: linear-gradient(
      to bottom,
      rgba(18, 18, 20, 0.9) 0%,
      /* Top: 100% opaque */ rgba(18, 18, 20, 0.6) 50%,
      /* Middle: 50% opacity */ rgba(18, 18, 20, 0) 100%
        /* Bottom: transparent */
    );
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
  }
  .mobile-nav.show {
    display: flex;
  }

  .hamburger svg {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  #mobileNav {
    display: none;
    flex-direction: column;
    background: #000000;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  /* ---------------- HERO SECTION ---------------- */
  .hero-rydup {
    padding: 0px;
  }
  .hero {
    padding-top: 80px; /* To offset fixed header */
    position: relative;
    height: 100vh;
    background: url("assets/images/Rydup_rides.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      #12121400 0%,
      #12121480 30%,
      #121214 100%
    );
    z-index: 1;
  }

  .hero-text {
    position: absolute;
    top: 30%; /* vertically centered */
    left: 50%; /* horizontally centered */
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 76px;
    font-weight: 800;
    color: white;
    mix-blend-mode: soft-light;
    opacity: 88%;
    text-align: center;
  }

  /* ---------------- HERO CONTENT SECTION ---------------- */

  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .left {
    flex: 1;
    min-width: 300px;
    max-width: 1000px;
  }

  .left .tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    font-size: 14px;
    margin-bottom: 4px;
    color: #ffffff;
    border-radius: 4px;
  }

  .left h1 {
    font-size: 56px;
    color: #EF072E;
    line-height: 58px;
    font-weight: bold;
    margin: 10px 0 20px;
  }

  .left p {
    font-size: 16px;
    line-height: 22px;
    color: #ccc;
    margin-bottom: 20px;
  }

  .store-buttons img {
    width: 140px;
    margin-right: 10px;
  }

  .right {
    flex: 1;
    text-align: center;
    min-width: 300px;
  }

  .right img {
    width: 100%;
    max-width: 375px;
    padding-top: 52px;
    object-fit: contain;
  }

  /* ---------------- Rydyp Features ---------------- */

  .rydup-features {
    background-color: #121214;
    padding-top: 48px;
    color: white;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .section-subtitle {
    color: #ccc;
    max-width: Auto;
    line-height: 24px;
    font-size: 16px;
    text-align: justify;
  }

  .tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none;
  }

  .tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
    min-width: auto;
    width: 100%;
  }

  .tab {
    background-color: transparent;
    text-align: left;
    width: auto;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #ccc;
    border-bottom: 1px solid #444;
    padding: 14px 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tab.active {
    color: #EF072E;
    font-style: normal;
    font-weight: 500;
    border-bottom: 2px solid #EF072E;
  }

  .tab.active::after {
    content: "⌃";
    height: auto;
    width: auto;
    background-color: transparent;
    right: 16px;
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) rotate(180deg);
    font-size: 12px;
    color: #EF072E;
  }

  .tab::after {
    content: "⌃";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: #999;
    font-size: 12px;
  }
  /* Content Area */
  .tab-content {
    max-width: auto;
    border-top: none;
  }

  .tab-content .active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }

  @media (max-width: 768px) {
    .tab-columns {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
    }

    .tab-slider {
      width: 75%;
      max-width: 75%;
      height: auto;
      flex: 0 0 75%;
      position: relative;
    }

    .slides {
      width: 200%; /* 2 slides x 100% */
      height: 100%;
    }

    .slide {
      width: 50%;
      height: 100%;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .tab-text {
      max-width: 100%;
      text-align: center;
    }

    .tab-text h3 {
      font-size: 16px;
      text-align: center;
    }

    .tab-text p {
      font-size: 14px;
      line-height: 1.5;
      padding-bottom: 16px;
      text-align: center;
    }

    .indicators {
      justify-content: center;
      margin-top: 10px;
    }

    .indicators label {
      width: 16px;
      height: 4px;
    }

    #slide1:checked ~ .indicators label[for="slide1"],
    #slide2:checked ~ .indicators label[for="slide2"] {
      width: 28px;
    }
  }

  /* Text Content */
  .tab-text {
    max-width: 100%;
  }
  .tab-text h3 {
    font-size: 18px;
    margin: 0;

    color: #fff;
    text-align: left;
  }
  .tab-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    text-align: left;
    padding-bottom: 36px;
    margin-top: 8px;
  }

  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ---------------- scrolling animation ---------------- */

  .scrolling-banner {
    background-color: #EF072E;
    transform: rotate(-5deg);
    margin-top: 32px;
    overflow: hidden;
    width: auto;
    padding: 20px 0;
    position: relative;
  }

  .scrolling-track {
    display: flex;
    align-items: center;
    gap: 32px; /* Gap between each pair */
    white-space: nowrap;
    animation: scrollLoop 20s linear infinite;
  }

  .scrolling-item {
    display: flex;
    align-items: center;
    gap: 32px; /* Gap between text and logo */
  }

  .scrolling-item span {
    font-size: 20px;
    font-weight: 800;
    color: black;
  }

  .scrolling-item img {
    height: 32px;
    width: auto;
  }

  @keyframes scrollLoop {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* ---------------- Support ---------------- */

  .rydup-support {
    height: auto;
    z-index: -1;
  }

  .support-content {
    justify-content: center;
    margin-top: 350px;
    padding: 0;
  }

  .info-card {
    width: 100%;
    max-width: 350px;
    padding: 16px 20px;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .app-store-buttons img {
    height: 40px;
    width: auto;
  }
  .support-content {
    transform: translate(0%, -50%);
  }
}
/**************************Subham Css*********************************/
/* Large: Tablets Landscape / Small Laptops */
@media (min-width: 900px) and (max-width: 1199px) {
  .header .container {
    padding: 0 20px;
  }
  .support-content {
    transform: translate(0%, 0%);
  }
}
/* Extra Large: Desktops */
@media (min-width: 1200px) and (max-width: 1599px) {
  .header .container {
    padding: 0 20px;
  }
  .support-content {
    transform: translate(0%, 0%);
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .tab-columns {
    flex-direction: row;
  }
  .tab-slider {
    flex: 0 0 50%;
  }
  .tab-text p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero-text {
    font-size: 75px;
  }
  .left h1 {
    font-size: 56px;
  }
  .hamburger {
    display: block;
  }
  .nav-menu {
    display: none;
  }

  .subscribe-form input[type="email"],
  .subscribe-form input[type="phonenumber"],
  .subscribe-form button {
    width: 100%;
    max-width: none;
  }
  
}

@media (max-width: 600px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;  /* This is key */
    gap: 16px;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .footer-copy {
    text-align: center;
    font-size: 12px;
    color: #666;
  }
}


/* ---------------------------------------------------------------
------------------------------------------------------------------
------------------ Terms and Conditions Style --------------------
------------------------------------------------------------------
--------------------------------------------------------------- */

/* Terms and Conditions Container */
.container-terms {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px;
}

.tagline {
  color: #666;
  font-size: 16px;
  margin-bottom: 8px;
}

h1 {
  color: #ef072e;
  margin-bottom: 24px;
  font-size: 28px;
}

h2 {
  color: #fff;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

p,
li {
  color: #ccc;
  margin-bottom: 12px;
}

ul {
  margin-left: 20px;
}

@media (max-width: 600px) {
  .container-terms {
    padding: 100px 40px 16px 16px;
  }
}


