@font-face{
  font-family: norwester;
  src: url(assets/norwester\ font.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: norwester;
}

body {
  overflow-x: hidden;
  background-color: rgb(26, 26, 26);
}




.play-button {
    display: none !important;
}

.payment-icon {
    display: inline-block;
    font-size: 2rem;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.payment-icon:hover {
    color: #0070f3;
    transform: scale(1.2);
}





a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 85%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-radius: 10px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 65%;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav ul li {
  margin: 0 15px;
}

.desktop-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
}

.desktop-nav ul li a:hover {
  color: #0056b3;
}

.desktop-nav ul li a.active {
  color: #ff0000;
}

.get-started-btn {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.get-started-btn:hover {
  background-color: #003d82;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  color: white;
}

.hamburger-menu i {
  font-size: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1001;
  padding: 20px;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  color: white;
}

.close-btn i {
  font-size: 24px;
}

.mobile-menu nav ul {
  list-style: none;
}

.mobile-menu nav ul li {
  margin: 20px 0;
}

.mobile-menu nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  transition: color 0.3s;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
  color: #ff0000;
}

.mobile-get-started-btn {
  width: 100%;
  /* margin-top: 30px; */
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* Main content styling */
.content {
  padding: 120px 50px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  header {
      padding: 15px 30px;
      width: 90%;
  }
  
  .desktop-nav ul li {
      margin: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  header {
      padding: 15px 20px;
      width: 95%;
  }
  
  .desktop-nav, 
  header .get-started-btn {
      display: none;
  }
  
  .hamburger-menu {
      display: block;
      margin-left: 25%;
  }
}

@media screen and (max-width: 480px) {
  header {
      padding: 10px 15px;
  }
  
  .logo-img {
      width: 80%;
  }
}



.logo-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.logo-card img {
  max-width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-card:hover img {
  transform: scale(1.1);
}









/* 
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


header {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 85%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-radius: 10px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 65%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0056b3;
}

nav ul li a.active {
  color: #ff0000;
}

.get-started-btn {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.get-started-btn:hover {
  background-color: #003d82;
} */

/* Landing Page and Hero Section with Background Image Transition */
.landing-page {
  position: relative;
  height: 100vh;
  padding-top: 3%;
  /* overflow: hidden; Ensure pseudo-elements stay within bounds */
}

/* Background image container (pseudo-element) */
.landing-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/hero-section-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2; /* Behind the content */
  opacity: 1;
  transition: opacity 1s ease; /* Smooth transition for background only */
}

/* Second background image for transition (initially hidden) */
.landing-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1; /* Between the first background and content */
  opacity: 0;
  transition: opacity 1s ease; /* Smooth transition for background only */
}

/* When transitioning, fade out the first background and fade in the second */
.landing-page.transitioning::before {
  opacity: 0;
}

.landing-page.transitioning::after {
  opacity: 1;
}

.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
  z-index: 1; /* Above the background */
}

.welcome-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-description {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 500px;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.ride-btn {
  width: 190px;
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  display: inline-block;
}

.ride-btn:hover {
  background-color: #003d82;
}

/* Rating Section - FIXED to display properly */
.rating {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: transparent; /* Changed to transparent */
  padding: 0; /* Removed padding */
  border-radius: 10px;
  text-align: center; /* Center the image */
  width: auto; /* Let it size naturally */
  max-width: 250px; /* Limit maximum width */
}

.rating img {
  display: block; 
  width: 100%;
  height: auto;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

/* Navigation Arrows */
.nav-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0;
  z-index: 50;
}

.arrow {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

/* Specific styling for left and right arrows */
.arrow.left {
  border-radius: 0 5px 5px 0;
}

.arrow.right {
  border-radius: 5px 0 0 5px;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Add a subtle animation when clicked */
.arrow:active {
  transform: scale(0.95);
}

/* Make sure the arrow icons are visible */
.arrow i {
  font-size: 20px;
  color: white;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
      padding: 15px 20px;
      flex-wrap: wrap;
  }

  nav {
      order: 3;
      width: 100%;
      margin-top: 15px;
  }

  nav ul {
      justify-content: center;
  }

  .hero {
      padding: 0 20px;
  }

  .hero-title {
      font-size: 36px;
  }

  .arrow {
      width: 40px;
      height: 40px;
  }
  
  .rating {
      bottom: 20px;
      max-width: 200px; /* Smaller on mobile */
  }
  .landing-page{
    height: 50vh;
  }
}
@media (max-width: 480px) {
.landing-page{
  height: 50vh;
}
.hero{
  height: 60vh;
}
}




/* CSS Variables for dynamic background images */
:root {
  --current-bg-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/hero-section-image.png);
  --next-bg-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/slider-image-2.png);
}


.landing-page::before {
  background-image: var(--current-bg-image);
}

.landing-page::after {
  background-image: var(--next-bg-image);
}
































.about-section {
  padding: 100px;
  background-color: rgb(26, 26, 26);
  color: white;
  /* width: 100vw;
  height: 100vh; */
  
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 60px; */
  overflow: hidden;
}

.left-column {
  width: 50%;
  /* padding-right: 20px; */
  padding: 5%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.right-column {
  width: 50%;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-title {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.about-headline {
  font-size: 50px;
  font-weight: bold;
  /* line-height: 1.2; */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 90%;
}

.left-image-container {
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 5px;
  margin-top: auto;
}

.left-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-image-container {
  width: 100%;
  height: 65%;
  overflow: hidden;
  border-radius: 5px;
}

.right-image {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.right-content {
  margin-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.right-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.know-more-btn {
  background-color: #c41e3a;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.know-more-btn:hover {
  background-color: #a01930;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-section {
      padding: 40px 20px;
      height: auto;
      min-height: 100vh;
  }

  .left-column,
  .right-column {
      width: 100%;
      padding-right: 0;
  }

  .right-column {
      margin-top: 30px;
  }

  .about-description {
      max-width: 100%;
  }

  .left-image-container {
      height: 250px;
      margin-bottom: 30px;
  }

  .right-image-container {
      height: 350px;
  }
}














































.services-container {
  width: 98%;
  margin: 0 auto;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 50px 50px;
  border-radius: 5px;
  margin-bottom: 100px;
}

/* Headings */
.services-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: normal;
}

.services-title {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.services-description {
  font-size: 13px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
  color: #ccc;
}

/* Service Cards Container */
.service-cards-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 15px;
}

/* Individual Service Card */
.service-card {
  flex: 1;
  min-width: 220px;
  background-color: #111;
  border-radius: 5px;
  border: 1px solid #555;
  padding: 25px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon Container */
.service-icon {
  margin-bottom: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Service Card Title */
.service-name {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Service Card Description */
.service-details {
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-cards-wrapper {
      flex-direction: column;
  }

  .service-card {
      margin-bottom: 15px;
  }
}


















































.earning-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.219)), url('assets/earning-sec-img.png');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 50px 40px;
}

/* Top Content */
.top-content {
  max-width: 600px;
}

.earn-tag {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.red-dot {
  width: 8px;
  height: 8px;
  background-color: #e63946;
  border-radius: 50%;
  margin-right: 8px;
}

.earn-text {
  font-size: 14px;
  font-weight: 500;
}

.main-heading {
  font-size: 90px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #eee;
  font-family: Arial, Helvetica, sans-serif;
}

/* Buttons */
.buttons-container {
  display: flex;
  gap: 45px;
}

.apply-btn {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 5px;
  /* font-weight: bold; */
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.apply-btn:hover {
  background-color: #003d82;
}

.pricing-btn {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 5px;
  /* font-weight: bold; */
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pricing-btn:hover {
  background-color: #c1272d;
}

/* Play Button */
.play-button {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-color: #e63946;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
}

.play-button:hover {
  transform: translateY(-50%) scale(1.05);
  background-color: #c1272d;
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

/* Steps Container */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 10;
  margin-top: 40px;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 30%; */
  /* max-width: 2500px; */
  background-color: black;
  padding: 20px 40px; 
  /* border-radius: 50%; */
}





/* .step-content {
  flex: 1;
} */

.step-title {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-description {
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .play-button {
      right: 40px;
      width: 60px;
      height: 60px;
  }
}

@media (max-width: 768px) {
  .earning-section {
      padding: 60px 30px 30px;
      height: auto;
      min-height: 100vh;
  }

  .main-heading {
      font-size: 36px;
  }

  .play-button {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin: 30px 0;
  }

  .steps-container {
      flex-direction: column;
      gap: 30px;
  }

  .step {
      max-width: 100%;
  }
}
































.testimonials-section {
width: 100%;
min-height: 100vh;
background-color: #000;
color: white;
text-align: center;
padding: 60px 40px;
border-radius: 5px;
box-sizing: border-box;
}

/* Heading Section */
.testimonials-tag {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.red-dot {
width: 8px;
height: 8px;
background-color: #e63946;
border-radius: 50%;
margin-right: 8px;
}

.testimonials-text {
font-size: 14px;
font-weight: 500;
}

.testimonials-heading {
font-size: 60px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 1px;
}

.testimonials-description {
font-size: 14px;
line-height: 1.6;
color: #ccc;
max-width: 600px;
margin: 0 auto 40px;
}

/* Slider Container */
.slider-wrapper {
position: relative;
overflow: hidden;
max-width: 100%;
padding: 0 20px;
box-sizing: border-box;
}

.slider-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

/* Individual Testimonial Card */
.testimonial-card {
background-color: #111;
border-radius: 5px;
padding: 25px;
margin: 0 10px;
text-align: left;
display: flex;
flex-direction: column;
min-height: 280px;
box-sizing: border-box;
}

/* Quote Mark */
.quote-mark > img {
width: 20px;
margin-bottom: 20px;
}

/* Testimonial Text */
.testimonial-text {
font-size: 14px;
line-height: 1.6;
color: #ccc;
flex-grow: 1;
margin-bottom: 20px;
font-style: italic;
}

/* Testimonial Footer */
.testimonial-footer {
display: flex;
justify-content: space-between;
align-items: center;
}

/* Profile Section */
.profile {
display: flex;
align-items: center;
}

.profile-image {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 12px;
object-fit: cover;
}

.profile-info {
display: flex;
flex-direction: column;
}

.profile-name {
font-size: 14px;
font-weight: bold;
}

.profile-role {
font-size: 12px;
color: #999;
}

/* Rating Stars */
.rating-star {
display: flex;
}

.star {
color: #ffd700;
font-size: 14px;
margin-left: 2px;
}

/* Navigation Arrows */
.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
background-color: #222;
border: none;
color: white;
font-size: 24px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border-radius: 50%;
}

.arrow.left {
left: 10px;
}

.arrow.right {
right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
.testimonials-heading {
  font-size: 48px;
}
}

@media (max-width: 768px) {
.testimonials-section {
  padding: 40px 20px;
}

.testimonials-heading {
  font-size: 36px;
}

/* Ensure full card visibility on mobile */
.slider-wrapper {
  padding: 0 40px; /* Increased padding for arrow buttons */
}
}






























































.partners-section {
  width: 100%;
  padding: 80px 20px;  
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.subheading {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-heading {
  color: white;
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.description {
  color: #b0b0b0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 40px;       
  max-width: 600px;          
}

.logo-grid {
  width: 80%;
  display: flex;
  flex-wrap: wrap;          
  gap: 20px;                 
  justify-content: center;   
}

.logo-card {
  flex: 1 1 120px;           
  max-width: 180px;          
  height: 100px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: #111;    
}

.logo-card.black {  background-color: #000; }
.logo-card.pink  {  background-color: #FF00E9; }
.logo-card.orange{  background-color: #DC4727; }
.logo-card.green {  background-color: #003E29; }

.logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}















/* Base partners section (you already have most of this) */
.partners-section {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.subheading {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
}
.main-heading {
  color: white;
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.description {
  color: #b0b0b0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 40px;
  max-width: 600px;
}
.logo-grid {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.logo-card {
  flex: 1 1 120px;
  max-width: 180px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: #111;
}
.logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Responsive Breakpoints */

/* Tablets and small desktops */
@media (max-width: 992px) {
  .main-heading {
    font-size: 48px;
  }
  .logo-card {
    flex: 1 1 140px;
    max-width: 160px;
    height: 80px;
  }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }
  .description {
    margin-bottom: 30px;
    max-width: 90%;
  }
  .logo-card {
    flex: 1 1 100px;
    max-width: 140px;
    height: 70px;
  }
  .partners-section{
      margin-top: 400px;
  }
}


/* Mobile phones */
@media (max-width: 480px) {
  .partners-section {
    padding: 60px 10px;
  }
  .subheading {
    font-size: 12px;
  }
  .main-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .description {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .logo-grid {
    gap: 12px;
  }
  .logo-card {
    flex: 1 1 80px;
    max-width: 100px;
    height: 60px;
    border-radius: 8px;
  }
}



















































































.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Styles */
.footer {
  background-color: #000;
  color: #fff;
}

/* Newsletter Section */
.newsletter {
  border-bottom: 1px solid #222;
  padding: 20px 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}

.newsletter-form {
  display: flex;
  align-items: center;
}

.newsletter-form input {
  padding: 8px 12px;
  width: 250px;
  border: none;
  border-radius: 0;
}

.subscribe-btn {
  background-color: #003d99;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

/* Main Footer Content */
.footer-content {
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.logo-column {
  flex: 1.5;
}

.logo {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 32px;
  font-weight: bold;
  position: relative;
}


.logo-placeholder {
  display: none; /* Hide the placeholder image */
}

.tagline {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #0066cc;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links, .contact-info {
  list-style: none;
}

.footer-links li, .contact-info li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0066cc;
}

.contact-info strong {
  font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid #222;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 12px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  color: #fff;
  font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .newsletter-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .footer-columns {
      flex-direction: column;
  }
  
  .footer-column {
      width: 100%;
      margin-bottom: 30px;
  }
  
  .footer-bottom-content {
      flex-direction: column;
      gap: 15px;
  }
}













































































































/* ===== GLOBAL RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
/* General adjustments for large screens */
.container {
  width: 95%;
}

/* Header adjustments */
header {
  width: 90%;
  padding: 15px 30px;
}

/* Hero section */
.hero-title {
  font-size: 70px;
}

/* About section */
.about-headline {
  font-size: 42px;
}

/* Services section */
.services-title {
  font-size: 42px;
}

/* Earning section */
.main-heading {
  font-size: 80px;
}

/* Testimonials section */
.testimonials-heading {
  font-size: 50px;
}

/* Partners section */
.partners-section .main-heading {
  font-size: 56px;
}
}

@media (max-width: 992px) {
/* ===== HEADER ===== */
header {
  width: 95%;
  padding: 12px 25px;
}

.logo-img {
  width: 60%;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  font-size: 13px;
}

.get-started-btn {
  padding: 8px 16px;
  font-size: 13px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 0 60px;
}

.hero-title {
  font-size: 60px;
}

.hero-description {
  font-size: 15px;
  max-width: 450px;
}

.ride-btn {
  width: 180px;
  padding: 10px 20px;
}

.rating {
  max-width: 220px;
}

.arrow {
  width: 45px;
  height: 45px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 50px;
}

.about-headline {
  font-size: 36px;
}

.about-description {
  font-size: 13px;
}

/* ===== SERVICES SECTION ===== */
.services-container {
  padding: 40px 30px;
}

.services-title {
  font-size: 36px;
}

.service-card {
  min-width: 200px;
  padding: 20px 15px;
}

.service-name {
  font-size: 24px;
}

/* ===== EARNING SECTION ===== */
.earning-section {
  padding: 60px 40px 30px;
}

.main-heading {
  font-size: 60px;
}

.buttons-container {
  gap: 30px;
}

.apply-btn,
.pricing-btn {
  padding: 12px 30px;
  font-size: 14px;
}

.play-button {
  right: 80px;
  width: 70px;
  height: 70px;
}

.step-title {
  font-size: 22px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 50px 30px;
  height: auto;
  min-height: 100vh;
}

.testimonials-heading {
  font-size: 42px;
}

.testimonial-card {
  padding: 20px;
  margin: 0 15px;
  min-height: 250px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 70px 20px;
}

.partners-section .main-heading {
  font-size: 42px;
}

.logo-card {
  flex: 1 1 140px;
  max-width: 160px;
  height: 80px;
}

/* ===== FOOTER ===== */
.newsletter-form input {
  width: 220px;
}

.footer-column {
  min-width: 180px;
}
}

@media (max-width: 768px) {
/* ===== HEADER ===== */
/* header {
  width: 100%;
  padding: 10px 15px;
  margin-top: 10px;
  flex-direction: column;
}

.logo {
  margin-bottom: 10px;
}

.logo-img {
  width: 50%;
}

nav {
  width: 100%;
  margin: 10px 0;
}

nav ul {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

nav ul li {
  margin: 5px;
}

.get-started-btn {
  margin-top: 10px;
} */

/* ===== HERO SECTION ===== */
.hero {
  padding: 0 30px;
  justify-content: center;
}

.welcome-text {
  font-size: 14px;
}

.hero-title {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 14px;
  max-width: 100%;
}

.ride-btn {
  width: 160px;
  padding: 10px 15px;
  font-size: 13px;
}

.rating {
  bottom: 80px;
  max-width: 180px;
}

.arrow {
  width: 40px;
  height: 40px;
}

.arrow i {
  font-size: 16px;
}

.slider-dots {
  bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 30px;
  flex-direction: column;
}

.left-column,
.right-column {
  width: 100%;
  padding: 20px 0;
}

.about-title {
  font-size: 13px;
}

.about-headline {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-description {
  max-width: 100%;
  margin-bottom: 20px;
}

.left-image-container {
  height: 200px;
  margin-bottom: 30px;
}

.right-image-container {
  height: 200px;
}

.right-description {
  font-size: 13px;
}

.know-more-btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* ===== SERVICES SECTION ===== */
.services-container {
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.services-subtitle {
  font-size: 13px;
}

.services-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-description {
  font-size: 12px;
  margin-bottom: 30px;
}

.service-cards-wrapper {
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.service-card {
  width: 100%;
  min-width: 100%;
}

.service-icon {
  margin-bottom: 30px;
  width: 200px;
}

.service-name {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ===== EARNING SECTION ===== */
.earning-section {
  padding: 50px 25px 30px;
  height: auto;
  min-height: 100vh;
}

.earn-text {
  font-size: 13px;
}

.main-heading {
  font-size: 36px;
  margin-bottom: 15px;
}

.sub-heading {
  font-size: 13px;
  margin-bottom: 20px;
}

.buttons-container {
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.apply-btn,
.pricing-btn {
  width: 100%;
  max-width: 250px;
  padding: 12px 20px;
  font-size: 13px;
}

.play-button {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  margin: 30px 0;
  width: 60px;
  height: 60px;
}

.steps-container {
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.step {
  width: 100%;
  padding: 15px;
}

.step-title {
  font-size: 20px;
}

.step-description {
  font-size: 12px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 40px 20px;
  height: auto;
}

.testimonials-text {
  font-size: 13px;
}

.testimonials-heading {
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonials-description {
  font-size: 13px;
  margin-bottom: 30px;
}

.slider-wrapper {
  margin: 0 -20px; /* Extend beyond container padding */
}

.testimonial-card {
  min-height: auto;
  padding: 20px 15px;
  margin: 0 10px;
}

.quote-mark > img {
  width: 16px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 13px;
  margin-bottom: 15px;
}

.profile-image {
  width: 35px;
  height: 35px;
}

.profile-name {
  font-size: 13px;
}

.profile-role {
  font-size: 11px;
}

.arrow.left {
  left: 5px;
}

.arrow.right {
  right: 5px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 60px 15px;
}

.partners-section .subheading {
  font-size: 13px;
}

.partners-section .main-heading {
  font-size: 32px;
  margin-bottom: 15px;
}

.partners-section .description {
  font-size: 13px;
  margin-bottom: 25px;
}

.logo-grid {
  width: 100%;
  gap: 15px;
}

.logo-card {
  flex: 1 1 100px;
  max-width: 130px;
  height: 70px;
}

/* ===== FOOTER ===== */
.newsletter-content {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.newsletter-form {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.newsletter-form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.subscribe-btn {
  width: 100%;
  padding: 10px;
}

.footer-columns {
  flex-direction: column;
}

.footer-column {
  width: 100%;
  margin-bottom: 30px;
}

.logo-text {
  font-size: 28px;
}

.tagline {
  font-size: 13px;
}

.footer-bottom-content {
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
}

@media (max-width: 480px) {
/* ===== HEADER ===== */
/* header {
  padding: 10px;
  border-radius: 5px;
}

.logo-img {
  width: 45%;
}

nav ul {
  gap: 5px;
}

nav ul li {
  margin: 3px;
}

nav ul li a {
  font-size: 12px;
}

.get-started-btn {
  padding: 7px 14px;
  font-size: 12px;
} */

/* ===== HERO SECTION ===== */
.hero {
  padding: 0 20px;
}

.welcome-text {
  font-size: 12px;
}

.hero-title {
  font-size: 32px;
}

.hero-description {
  font-size: 13px;
}

.ride-btn {
  width: 150px;
  padding: 8px 15px;
  font-size: 12px;
}

.rating {
  bottom: -20px;
  max-width: 150px;
}

.arrow {
  width: 35px;
  height: 35px;
}

.arrow i {
  font-size: 14px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 40px 20px;
}

.about-headline {
  font-size: 28px;
}

.about-description {
  font-size: 12px;
}

.left-image-container {
  height: 180px;
}

.right-image-container {
  height: 180px;
}

/* ===== SERVICES SECTION ===== */
.services-container {
  padding: 30px 15px;
}

.services-title {
  font-size: 28px;
}

.service-card {
  padding: 15px;
}

.service-icon {
  margin-bottom: 20px;
  height: 25px;
}

.service-name {
  font-size: 20px;
}

.service-details {
  font-size: 11px;
}

/* ===== EARNING SECTION ===== */
.earning-section {
  padding: 40px 20px 20px;
}

.main-heading {
  font-size: 28px;
}

.sub-heading {
  font-size: 12px;
}

.apply-btn,
.pricing-btn {
  padding: 10px 15px;
  font-size: 12px;
}

.play-button {
  width: 50px;
  height: 50px;
}

.play-icon {
  border-width: 8px 0 8px 14px;
}

.step {
  padding: 12px;
}

.step-title {
  font-size: 18px;
}

.step-description {
  font-size: 11px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 30px 15px;
}

.testimonials-heading {
  font-size: 28px;
}

.testimonials-description {
  font-size: 12px;
}

.testimonial-card {
  padding: 15px 12px;
  margin: 0 8px;
}

.testimonial-text {
  font-size: 12px;
}

.profile-image {
  width: 30px;
  height: 30px;
}

.profile-name {
  font-size: 12px;
}

.profile-role {
  font-size: 10px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 50px 10px;
}

.partners-section .main-heading {
  font-size: 28px;
}

.partners-section .description {
  font-size: 12px;
}

.logo-grid {
  gap: 10px;
}

.logo-card {
  flex: 1 1 80px;
  max-width: 100px;
  height: 60px;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.newsletter-text h3 {
  font-size: 14px;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links li,
.contact-info li {
  margin-bottom: 8px;
  font-size: 13px;
}

.social-icon {
  width: 28px;
  height: 28px;
}

.copyright {
  font-size: 11px;
}

.payment-icon {
  font-size: 18px;
}
}

/* ===== TESTIMONIALS SLIDER SPECIFIC RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
.slider-wrapper {
  margin: 0 -10px;
}

.testimonial-card {
  flex: 0 0 calc(50% - 20px);
}
}

@media (max-width: 768px) {
.testimonial-card {
  flex: 0 0 100%;
}

.arrow {
  width: 35px;
  height: 35px;
  font-size: 16px;
}
}

/* ===== SPECIFIC FIXES FOR SLIDER FUNCTIONALITY ===== */
/* These ensure the slider works properly at all screen sizes */
.slider-wrapper {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 auto;
}

.slider-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

.testimonial-card.clone {
/* Ensure cloned cards look identical */
flex-shrink: 0;
}

/* Fix for mobile testimonials section height */
@media (max-width: 768px) {
.testimonials-section {
  height: auto;
  min-height: auto;
  padding-bottom: 60px;
}
}

/* Fix for partners section on small screens */
@media (max-width: 768px) {
.partners-section {
  margin-top: 0;
  padding-top: 60px;
}
}

/* Fix for header on very small screens
@media (max-width: 380px) {
header {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
}

nav ul li {
  margin: 2px;
}

nav ul li a {
  font-size: 11px;
}
} */

