@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;
}

.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);
}

.logo-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.logo-card:hover img {
  transform: scale(1.1);
}

.contact-button {
  padding: 12px 24px;
  background-color: #0070f3;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* Popup background */
.contact-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Popup content box */
.contact-popup-content {
  background-color: #fff;
  color: #000; /* Make all text inside black */
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #000; /* Make the close button black */
}

/* Form styles */
.contact-popup-content input,
.contact-popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #000; /* Make input text black */
}

.contact-popup-content button[type="submit"] {
  background-color: #0070f3;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-popup-content h2,
.contact-popup-content label {
  color: #000 !important;
}

.close-btn {
  color: #000 !important; /* Force black */
}

/* 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/how-it-work-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 */
  }
}











































.container-2nd {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header styles */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.subtitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: white;
}

.title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

/* Steps container */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Step card */
.step-card {
  width: 350px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 5px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

/* Step number */
.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

/* Icon container */
.icon-container {
  margin-bottom: 20px;
  font-size: 24px;
}

/* Step title */
.step-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.step-title .number {
  /* font-weight: bold; */
  margin-right: 8px;
}

.step-title .text {
  font-size: 18px;
  /* font-weight: 700; */
  text-transform: uppercase;
}

/* Step description */
.step-description {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: sans-serif;
}

/* Checklist */
.checklist {
  margin-bottom: 25px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 12px;
  color: #aaa;
  line-height: 1.4;
  /* font-family: Arial, Helvetica, sans-serif; */
}

.checklist-item i {
  color: #fff;
  margin-right: 8px;
  font-size: 10px;
  margin-top: 4px;
  /* font-family: Arial, Helvetica, sans-serif; */
}
.checklist-item > span {
  font-family: Arial, Helvetica, sans-serif;
}

/* Button */
.step-button {
  display: inline-block;
  padding: 8px 15px;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.apply-now-button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #0047AB;
  color: white;
  text-align: center;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 15px;
}










































.faq-container {
  max-width: 1200px;
  width: 100%;
  background-color: #000;
  border-radius: 10px;
  margin-bottom: 20px !important;
  padding: 40px;
  margin: 0 auto;
}

/* Header styles */
.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-subtitle {
  font-size: 14px;
  margin-bottom: 5px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-description {
  font-size: 14px;
  color: #aaa;
}

/* Content layout */
.faq-content {
  display: flex;
  gap: 20px;
}

.faq-left {
  flex: 2;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(85, 85, 85);
  border-radius: 10px;
  padding: 20px;
}

/* Accordion styles */
.accordion {
  margin-bottom: 10px;
}

.accordion-item {
  background-color: #111;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgb(85, 85, 85);
  border-radius: 10px;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.accordion-header .number {
  margin-right: 10px;
  /* font-weight: bold; */
}

.accordion-header .icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-content p {
  padding-bottom: 20px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

/* Right side styles */
.qa-icon {
  text-align: center;
  margin-bottom: 20px;
}

.qa-icon img {
  width: 60px;
  height: auto;
}

.more-questions {
  text-align: center;
  margin-bottom: 20px;
}

.more-questions h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.more-questions p {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

.contact-button {
  background-color: #0047AB;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
























































.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%;
   transition: transform 0.3s ease;
  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;
  }
}



















































































.play-button {
    display: none !important;
}








.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/how-it-work-bottom-section.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%;
  }
}





































































/* ===== 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) {
  .logo-grid {
  grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
}
 .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;
  color : #000 !important;
}

.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;
}
.newsletter-form input{
  width: 100%;
}
  header{
      width: 95%;
      flex-wrap: wrap;
    }
  .landing-page,
  .hero {
    height: 50vh;
  }

  .hero {
    padding: 30px 30px !important;
    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) {
  header{
      width: 95%;
      flex-wrap: wrap;
    }
  .landing-page,
  .hero {
    height: 50vh;
  }

  .hero {
    padding: 10px 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;
  }
}

/* ===== CONTAINER-2ND / STEPS SECTION ===== */
@media (max-width: 1200px) {
  .container-2nd {
    max-width: 90%;
    padding: 40px 20px;
  }

  .steps-container {
    gap: 15px;
  }

  .step-card {
    width: 320px;
  }
}

@media (max-width: 992px) {
  .container-2nd {
    padding: 30px 15px;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 13px;
  }

  .step-card {
    width: 300px;
    padding: 25px 15px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-title .text {
    font-size: 16px;
  }

  .step-description {
    font-size: 12px;
  }

  .checklist-item {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .container-2nd {
    padding: 25px 10px;
  }

  .header {
    margin-bottom: 30px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 12px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-card {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .container-2nd {
    padding: 20px 10px;
  }

  .header {
    margin-bottom: 25px;
  }

  .title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 11px;
  }

  .step-card {
    padding: 20px 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
    top: 10px;
    right: 10px;
  }

  .icon-container {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .step-title .text {
    font-size: 15px;
  }

  .step-description {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .checklist {
    margin-bottom: 20px;
  }

  .checklist-item {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .step-button {
    padding: 6px 12px;
    font-size: 11px;
  }

  .apply-now-button {
    padding: 10px;
    font-size: 12px;
  }
}

/* ===== FAQ SECTION ===== */
@media (max-width: 1200px) {
  .faq-container {
    max-width: 90%;
    padding: 35px;
  }

  .faq-title {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .faq-container {
    padding: 30px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-subtitle {
    font-size: 13px;
  }

  .faq-description {
    font-size: 13px;
  }

  .faq-content {
    gap: 15px;
  }

  .accordion-header h3 {
    font-size: 13px;
  }

  .accordion-content p {
    font-size: 13px;
  }

  .more-questions h3 {
    font-size: 15px;
  }

  .more-questions p {
    font-size: 11px;
  }

  .contact-button {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    padding: 25px 20px;
  }

  .faq-header {
    margin-bottom: 25px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-subtitle {
    font-size: 12px;
  }

  .faq-description {
    font-size: 12px;
  }

  .faq-content {
    flex-direction: column;
  }

  .faq-right {
    flex-direction: row;
    align-items: center;
    padding: 15px;
  }

  .qa-icon {
    margin-bottom: 0;
    margin-right: 15px;
  }

  .qa-icon img {
    width: 40px;
  }

  .more-questions {
    margin-bottom: 0;
    flex: 1;
    text-align: left;
  }

  .contact-button {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .faq-container {
    padding: 20px 15px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-subtitle {
    font-size: 11px;
  }

  .faq-description {
    font-size: 11px;
  }

  .accordion-header {
    padding: 15px;
  }

  .accordion-header h3 {
    font-size: 12px;
  }

  .accordion-content {
    padding: 0 15px;
  }

  .accordion-content p {
    font-size: 12px;
    padding-bottom: 15px;
  }

  .faq-right {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }

  .qa-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .more-questions {
    text-align: center;
    margin-bottom: 15px;
  }

  .more-questions h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .contact-button {
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 15px 10px;
  }

  .faq-title {
    font-size: 20px;
  }

  .accordion-item {
    margin-bottom: 8px;
  }

  .accordion-header {
    padding: 12px;
  }

  .accordion-header h3 {
    font-size: 11px;
  }

  .accordion-content p {
    font-size: 11px;
  }
}

/* ===== EARNING SECTION ===== */
@media (max-width: 1200px) {
  .earning-section {
    padding: 70px 40px 30px;
  }

  .main-heading {
    font-size: 70px;
  }

  .play-button {
    right: 150px;
  }
}

@media (max-width: 992px) {
  .earning-section {
    padding: 60px 30px 30px;
    height: auto;
    min-height: 80vh;
  }

  .main-heading {
    font-size: 50px;
  }

  .sub-heading {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .buttons-container {
    gap: 20px;
  }

  .apply-btn,
  .pricing-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .play-button {
    right: 60px;
    width: 70px;
    height: 70px;
  }

  .steps-container {
    gap: 15px;
  }

  .step {
    padding: 15px 30px;
  }

  .step-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .earning-section {
    padding: 50px 25px 30px;
    min-height: auto;
  }

  .main-heading {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .sub-heading {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .apply-btn,
  .pricing-btn {
    padding: 10px 25px;
    font-size: 13px;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .play-button {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 25px 0;
    width: 60px;
    height: 60px;
  }

  .steps-container {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .step {
    width: 100%;
    padding: 15px 20px;
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .step-description {
    font-size: 11px;
  }
}

@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;
  }
}

/* ===== 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 */
  }
}

/* ===== FOOTER SECTION ===== */
@media (max-width: 992px) {
  .footer-column {
    min-width: 180px;
  }

  .newsletter-form input {
    width: 220px;
  }

  .logo-text {
    font-size: 28px;
  }

  .tagline {
    font-size: 13px;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-links li,
  .contact-info li {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .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;
    color : #000 !important;
  }

  .subscribe-btn {
    width: 100%;
    padding: 10px;
  }

  .footer-columns {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@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) {
  .container-2nd {
    margin-top: 50px;
  }

  .faq-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .container-2nd {
    margin-top: 30px;
  }

  .faq-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}



























































.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;
  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;
  }
}

