@font-face{
  font-family: norwester;
  src: url(assets/norwester\ font.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: norwester;
  color: white;
}

body {
  overflow-x: hidden;
  background-color: rgb(26, 26, 26);
}

/* Header Styles */

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%;
  }
}


/* Landing Page and Hero Section with Background Image Transition */
.landing-page {
  position: relative;
  height: 75vh;
  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/about-hero.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2; 
  opacity: 1;
  transition: opacity 1s ease; 
}

/* 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 */
}



.hero {
  position: relative;
  height: 68vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content:flex-end;
  padding: 10px 100px;
  z-index: 1; /* Above the background */
}

.welcome-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 60px;
  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: #ba1f27;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  display: inline-block;
}

.ride-btn:hover {
  background-color: #8d161c;
}





/* 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: 120px;
      max-width: 200px; /* Smaller on mobile */
  }
}












































.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 {
  max-width: 1300px;
  width: 100%;
  background-color: #000;
  border-radius: 10px;
  padding: 40px 20px;
  margin: 0 auto;
}

/* Header styles */
.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services-description {
  font-size: 14px;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  
}

/* Service card */
.service-card {
  background-color: #111;
  border: 1px solid #555555;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  

}

.service-icon {
  margin-bottom: 20px;
  font-size: 24px;
}

.service-icon > img{
  width: 40px;
}

.service-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

/* Icons */
.icon {
  width: 30px;
  height: 30px;
  fill: white;
}




























































.team-container {
  max-width: 1300px;
  width: 100%;
  padding: 40px 20px;
  position: relative;
  margin: 0 auto;
}

/* Header styles */
.team-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
}

.team-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-description {
  font-size: 14px;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Slider container */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

/* Slider */
.slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

/* Team member card */
.team-card {
  min-width: calc(33.333% - 14px);
  background-color: #111;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Profile image */
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team member info */
.member-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.member-title {
  font-size: 14px;
  color: #ba1f27;
  margin-bottom: 15px;
}

.member-bio {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: #ba1f27;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.nav-arrow:focus {
  outline: none;
}

/* Modal/Popup styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: #111;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.modal-profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.modal-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-title-container {
  flex: 1;
}

.modal-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.modal-title {
  font-size: 16px;
  color: #ff9800;
}

.modal-content {
  margin-bottom: 20px;
}

.modal-section {
  margin-bottom: 15px;
}

.modal-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.modal-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 10px;
}

.modal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.modal-stat {
  background-color: #222;
  border-radius: 5px;
  padding: 10px 15px;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ff9800;
}

.stat-label {
  font-size: 12px;
  color: #aaa;
}

/* Scrollbar styling */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: #222;
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}





































.testimonials-section {
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 5px;
}

/* 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;
}

/* Testimonials Container */
.testimonials-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

/* Individual Testimonial Card */
.testimonial-card {
  flex: 1;
  background-color: #111;
  border-radius: 5px;
  padding: 25px;
  margin: 0 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

/* 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 Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
}

.dot.active {
  background-color: #ccc;
  width: 20px;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonials-container {
      flex-wrap: wrap;
  }

  .testimonial-card {
      flex: 0 0 calc(50% - 10px);
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
      padding: 40px 20px;
  }

  .testimonials-container {
      flex-direction: column;
  }

  .testimonial-card {
      flex: 0 0 100%;
  }
}





.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: #222;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}








































.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;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

  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.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;
}



































.play-button {
    display: none !important;
}


.payment-icon {
    display: inline-block;
    font-size: 2rem; /* adjust size as needed */
    color: #555; /* default color */
    transition: transform 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.payment-icon:hover {
    color: #0070f3; /* hover color */
    transform: scale(1.2); /* slight zoom effect */
}

.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);
}

.earning-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.219)), url('assets/about-bottom.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: 80px;
  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%;
  }
}



















.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;
  color:#000 !important;
}

.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;
  }
}
























































































/* ===== RESPONSIVE STYLES - EXCLUDING HEADER ===== */

/* ===== LANDING PAGE / HERO SECTION ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 50px;
  }

  .hero {
    padding: 10px 80px;
  }
}

@media (max-width: 992px) {
  .landing-page,
  .hero {
    height: 70vh;
  }

  .hero-title {
    font-size: 45px;
  }

  .hero {
    padding: 10px 60px;
  }

  .hero-description {
    max-width: 450px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .landing-page,
  .hero {
    height: 60vh;
  }

  .hero {
    padding: 10px 30px;
    justify-content: end;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .welcome-text {
    font-size: 14px;
  }

  .ride-btn {
    width: 170px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .landing-page,
  .hero {
    height: 50vh;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .welcome-text {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .ride-btn {
    width: 150px;
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* ===== ABOUT SECTION ===== */
@media (max-width: 1200px) {
  .about-section {
    padding: 80px;
  }

  .about-headline {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 60px;
  }

  .about-headline {
    font-size: 36px;
  }

  .about-description,
  .right-description {
    font-size: 13px;
  }

  .left-image-container {
    height: 300px;
  }

  .right-image-container {
    height: 55%;
  }
}

@media (max-width: 768px) {
  /* About section already has responsive styles for mobile */
  .about-section {
    padding: 40px 20px;
  }

  .about-headline {
    font-size: 32px;
  }

  .know-more-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 15px;
  }

  .about-title {
    font-size: 12px;
  }

  .about-headline {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-description,
  .right-description {
    font-size: 12px;
  }

  .left-image-container {
    height: 200px;
  }

  .right-image-container {
    height: 250px;
  }

  .know-more-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* ===== SERVICES SECTION ===== */
@media (max-width: 1200px) {
  .services-container {
    max-width: 90%;
    padding: 35px 20px;
  }

  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .services-container {
    padding: 30px 20px;
  }

  .services-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 13px;
  }

  .services-description {
    font-size: 13px;
    max-width: 600px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    margin-bottom: 15px;
  }

  .service-icon > img {
    width: 35px;
  }

  .service-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 25px 15px;
  }

  .services-header {
    margin-bottom: 25px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .services-subtitle {
    font-size: 12px;
  }

  .services-description {
    font-size: 12px;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 20px 10px;
  }

  .services-title {
    font-size: 22px;
  }

  .services-subtitle {
    font-size: 11px;
  }

  .services-description {
    font-size: 11px;
  }

  .service-card {
    padding: 15px;
  }

  .service-icon > img {
    width: 30px;
  }

  .service-title {
    font-size: 14px;
  }

  .service-description {
    font-size: 11px;
  }
}

/* ===== TEAM SECTION ===== */
@media (max-width: 1200px) {
  .team-container {
    max-width: 90%;
    padding: 35px 15px;
  }

  .team-card {
    min-width: calc(33.333% - 14px);
    padding: 25px;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 992px) {
  .team-container {
    padding: 30px 15px;
  }

  .team-title {
    font-size: 28px;
  }

  .team-subtitle {
    font-size: 13px;
  }

  .team-description {
    font-size: 13px;
    max-width: 600px;
  }

  .team-card {
    min-width: calc(50% - 14px);
    padding: 20px;
  }

  .profile-image {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .member-name {
    font-size: 16px;
  }

  .member-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .member-bio {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .read-more {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .team-container {
    padding: 25px 10px;
  }

  .team-header {
    margin-bottom: 25px;
  }

  .team-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .team-subtitle {
    font-size: 12px;
  }

  .team-description {
    font-size: 12px;
  }

  .slider-container {
    padding: 0 30px;
  }

  .team-card {
    min-width: 100%;
    padding: 20px 15px;
  }

  .nav-arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .team-container {
    padding: 20px 10px;
  }

  .team-title {
    font-size: 22px;
  }

  .team-subtitle {
    font-size: 11px;
  }

  .team-description {
    font-size: 11px;
  }

  .slider-container {
    padding: 0 25px;
  }

  .team-card {
    padding: 15px 10px;
  }

  .profile-image {
    width: 80px;
    height: 80px;
  }

  .member-name {
    font-size: 15px;
  }

  .member-title {
    font-size: 12px;
  }

  .member-bio {
    font-size: 11px;
  }

  .read-more {
    font-size: 12px;
  }

  .nav-arrow {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  /* Modal responsive styles */
  .modal-container {
    padding: 20px 15px;
  }

  .modal-profile-image {
    width: 60px;
    height: 60px;
  }

  .modal-name {
    font-size: 20px;
  }

  .modal-title {
    font-size: 14px;
  }

  .modal-section-title {
    font-size: 16px;
  }

  .modal-text {
    font-size: 12px;
  }

  .modal-stat {
    min-width: 100px;
    padding: 8px 10px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 50px 30px;
    height: auto;
    min-height: 100vh;
  }

  .testimonials-heading {
    font-size: 50px;
  }

  .testimonial-card {
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .testimonials-section {
    padding: 40px 25px;
  }

  .testimonials-heading {
    font-size: 40px;
  }

  .testimonials-description {
    font-size: 13px;
    max-width: 500px;
  }

  /* Testimonials section already has responsive styles for tablets */
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 20px;
    height: auto;
    min-height: auto;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  .testimonials-description {
    font-size: 12px;
    margin-bottom: 25px;
  }

  /* Testimonials section already has responsive styles for mobile */

  .slider-wrapper {
    margin: 0 -10px;
  }

  .arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 25px 15px;
  }

  .testimonials-tag {
    margin-bottom: 10px;
  }

  .testimonials-text {
    font-size: 12px;
  }

  .testimonials-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .testimonials-description {
    font-size: 11px;
    margin-bottom: 20px;
  }

  .testimonial-card {
    padding: 15px;
    margin: 0 10px;
    min-height: 220px;
  }

  .quote-mark > img {
    width: 16px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .profile-image {
    width: 35px;
    height: 35px;
  }

  .profile-name {
    font-size: 12px;
  }

  .profile-role {
    font-size: 10px;
  }

  .arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
    padding: 6px 10px;
  }

  .arrow.left {
    left: 5px;
  }

  .arrow.right {
    right: 5px;
  }
}

/* ===== PARTNERS SECTION ===== */
/* Partners section already has responsive styles, just fixing the margin issue */
@media (max-width: 768px) {
  .partners-section {
    margin-top: 50px; /* Fix the excessive margin */
  }
}

/* ===== EARNING SECTION ===== */
/* Earning section already has responsive styles */
@media (max-width: 480px) {
  .earning-section {
    padding: 40px 20px 25px;
  }

  .earn-tag {
    margin-bottom: 10px;
  }

  .earn-text {
    font-size: 12px;
  }

  .main-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .sub-heading {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .apply-btn,
  .pricing-btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    margin: 20px 0;
  }

  .play-icon {
    border-width: 8px 0 8px 14px;
  }

  .step {
    padding: 12px 15px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 10px;
  }
}

/* ===== FOOTER SECTION ===== */
/* Footer section already has responsive styles */
@media (max-width: 480px) {
  .newsletter-text h3 {
    font-size: 14px;
  }

  .subscribe-btn {
    font-size: 13px;
  }

  .logo-text {
    font-size: 24px;
  }

  .tagline {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-column h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-links li,
  .contact-info li {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
  }

  .payment-icon {
    font-size: 18px;
  }

  .footer-content {
    padding: 30px 0;
  }
}

/* Fix for spacing issues between sections */
@media (max-width: 768px) {
  .logo-grid {
  grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
}
  header{
      width: 95%;
      flex-wrap: wrap;
    }
  .about-section {
    margin-top: 50px;
  }
   .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;
}

  .services-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .team-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .testimonials-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .earning-section {
    margin-top: 50px;
    margin-bottom: 50px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  header{
      width: 95%;
      flex-wrap: wrap;
    }
  .about-section {
    margin-top: 30px;
  }

  .services-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .team-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .testimonials-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .earning-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

