* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  font-style: normal
}
header {
  background-color: #1A1A1A;
  color: #fff;
  margin-bottom: 0px;
  position: fixed;  
  top: 0;           
  left: 0;
  width: 100%;      
  z-index: 1000;   
  height: 63px; 
}

.red-line {
  height: 3px; 
  background-color: red; 
  margin: 0; 
  width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1A1A1A;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 15px;  
  right: 20px; 
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
}

.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.logo-img {
  height: 50px;
  margin-left: 70px;
  
}

/* Styling for the navigation links */
.nav-links {
  display: flex;
  list-style: none;
  margin-left: 30px;
}

.nav-links li {
  position: relative; 
  margin: 0 15px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
}

.nav-links a:hover {
  color: #ff9100;
}
.menu-icon {
  width: 20px; 
  height: auto; 
  margin-right: 1px; 
  vertical-align: middle; 
  display: inline-block; 
}

/* Styling for the sub-menu */
.sub-menu {
  display: none; 
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  top: 100%;
  left: 0;
  z-index: 1;
  border-radius: 8px;
}

.sub-menu li {
  padding: 5px;
  margin: 0;
}

.sub-menu li a {
  padding: 6px 0px;
  display: block;
  color: #000;
}

.sub-menu li a:hover {
  color: #575757;
  background-color: #ff9100;
  width: 100%;
}

/* Show the sub-menu on hover */
.nav-item:hover .sub-menu {
  display: block;
}
.nav-sidebar .nav-item a {
  color: rgb(219, 215, 215);
  text-decoration: none; 
}

.nav-sidebar .nav-item a:hover {
  color: #ff9100; 
}
.nav-sidebar .sub-list li a {
  color: rgb(219, 215, 215);
  text-decoration: none; 
}

.nav-sidebar .sub-list li a:hover {
  color: #ff9100;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 250px;
}

.dropbtn {
  background-color: #ff9100;
  color: #1A1A1A;
  padding: 8px 20px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
}

.dropdown-content a {
  color: #000;
  padding: 12px 1px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ff9100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #f1f1f1;
}

.nav-sidebar {
  position: fixed;
  bottom: -100%;
  left: 10%;
  width: 70%;
  height: 50%;
  background-color: rgba(0, 0, 0); 
  padding: 20px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.3s ease;
  z-index: 1000; 
}



.nav-sidebar.active {
  bottom: 0;
}

.nav-menu {
  list-style-type: none;
  padding: 0;
}

.nav-menu li {
  margin-bottom: 15px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  color: #ff9100;
}

.menu-img {
  width: 20px;
  margin-right: 10px;
}

.arrow-icon {
  margin-left: auto;
  font-size: 18px;
}

/* Sub-menu hidden initially */
.sub-list {
  display: none;
}

/* Back button */
.back-button {
  font-size: 18px;
  cursor: pointer;
  color: #ff9100;
  margin-bottom: 20px;
  display: none;
}

.ship-button {
  text-decoration: none;
  position: absolute;
  font-size: 16px;
  color: #fff;
  background-color: #ff9100;
  padding: 6px 20px;
  border-radius: 10px;
}

.ship-button:hover {
  background-color: #ffad33;
}

@media (min-width: 800px) {
  .nav-sidebar {
      display: none; /* Hide the sidebar on laptop screens */
  }
}
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  .dropdown {
      display: none;
  }
  .hamburger {
      display: flex;
  }
}



.body {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('image4.jpg') no-repeat center center fixed;
  background-size: cover;
  margin-top: 85px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  padding: 20px;
  color: white;
}

.left-section {
  flex: 1;
  margin-bottom: 20px;
}

.left-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.left-section p {
  margin-bottom: 20px;
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.app-buttons img {
  width: 150px;
  cursor: pointer;
}

.right-section {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.right-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.toggle-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.toggle-button {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.toggle-button.active {
  background-color: black;
  color: white;
}

.toggle-button.inactive {
  background-color: #f0f0f0;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.signup-link {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

.signup-link a {
  color: rgb(255, 162, 0);
  text-decoration: none;
  font-weight: bold;
}

.signup-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
  }
  .left-section, .right-section {
      width: 100%;
  }
  .app-buttons img {
      width: 120px;
  }
}


.body1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f9f9f9;
  margin-top: 0px;
}
.how-it-works-container {
  width: 80%;
  max-width: 1200px;
  text-align: center;
  padding: 40px 0;
}

.how-it-works-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

.how-it-works-container h2 span {
  color: rgb(255, 157, 0);
}

.underline {
  width: 50px;
  height: 3px;
  background-color: red;
  margin: 10px auto 40px auto;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step img {
  width: 350px;
  height: 400px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.step h3 span {
  font-weight: bold;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps {
      flex-direction: column;
      align-items: center;
  }

  .step {
      max-width: 100%;
      
  }
  .step img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
  .how-it-works-container h2 {
    font-size: 20px;
    margin-top: 90px;
    font-weight: bold;
    color: #333;
  }
}

.body3 {
  background-color: #0f0f0f;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.convenience-container {
  width: 80%;
  max-width: 1200px;
  padding: 40px 0;
  text-align: left;
}

.convenience-header h2 {
  font-size: 2rem;
  color: #ffffff;
}

.convenience-header h2 span {
  color: #ff950b;
}

.convenience-header .underline {
  width: 50px;
  height: 3px;
  background-color: #ff4a4a;
  margin: 10px 0 30px 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #1c1c1c;
  border-radius: 8px;
  padding: 20px;
  width: 45%;
  min-width: 250px;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box img {
  width: 30px;
  height: 30px;
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.feature-box h3 span {
  font-weight: bold;
}

.feature-box p {
  color: #cccccc;
  font-size: 0.9rem;
}

.button-container {
  margin-top: 30px;
  text-align: center;
}

.button-container a {
  display: inline-block;
  background-color: #ffffff;
  color: #0f0f0f;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-container a:hover {
  background-color: #e0e0e0;
}

@media (max-width: 768px) {
  .features {
      flex-direction: column;
      align-items: center;
  }

  .feature-box {
      width: 100%;
  }
}

.body4 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f5f7fb;
}

.slider-container {
  width: 80%;
  max-width: 1000px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-image {
  flex: 1;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slider-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slider-text {
  flex: 2;
  padding-left: 30px;
}

.slider-text h3 {
  font-size: 1.5rem;
  color: #333333;
}

.slider-text h3 span {
  color: #ff4a4a;
  font-weight: bold;
}

.slider-text .underline {
  width: 50px;
  height: 3px;
  background-color: #ff4a4a;
  margin: 10px 0;
}

.slider-text p {
  margin: 20px 0;
  font-size: 1rem;
  color: #666666;
}

.slider-text .author {
  font-weight: bold;
  color: #333333;
}

.slider-text .location {
  color: #999999;
}

.slider-arrows {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

.slider-arrows button {
  background-color: white;
  border: 2px solid #000000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ff8000;
  transition: background-color 0.3s;
}

.slider-arrows button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .slider-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      margin-top: 0%;
      
  }

  .slider-image {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .slider-text {
      padding-left: 0;
  }
}


.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-color: #1a1a1d;
  color: #ffffff;
  text-align: center;
}

/* Heading styling */
.banner h2 {
  font-size: 1.5em;
  font-weight: 400;
}

/* Button container styling */
.button-container {
  margin-top: 20px;
}

/* Button styling */
.button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: 500;
  color: #1a1a1d;
  background-color: #ffffff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Button hover effect */
.button:hover {
  color: #ffffff;
  background-color: #444;
  transform: translateX(5px);
}

/* Arrow icon styling */
.button .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Arrow hover effect */
.button:hover .arrow {
  transform: translateX(5px);
}

/* Responsive styling */
@media (max-width: 768px) {
  .banner h2 {
      font-size: 1.2em;
  }
  .button {
      font-size: 0.9em;
      padding: 8px 16px;
  }
}










footer {
  background-color: #f7f7f7;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  margin-bottom: 0px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-logo {
  text-align: left;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #555;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  
}

.footer-column {
  width: 15%;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #000;
}
.footer-line {
  width: 100%;
  height: 1px;
  background-color: #ccc; 
  margin-bottom: 60px;
}
.disclaimer{
  padding: 10px;
}
.disclaimer p{
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.disclaimer h4{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.footer-policy-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px; 
  text-align: left;
  margin-top: 0px; 
  margin-left: 0px;
}
.footer-policy-disclaimer .policy,
.footer-policy-disclaimer .disclaimer {
  margin-bottom: 20px;
}

.footer-policy-disclaimer h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.footer-policy-disclaimer{
  display: flex;
}

.footer-policy-disclaimer p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.footer-policy-disclaimer .social-icons {
  margin-left: 500px;
  margin-top: 20px;
}
.footer-policy-disclaimer .social-icons a {
  
  display: inline-block;
}

.footer-policy-disclaimer .social-icons img {
  width: 25px;
  height: 25px;
}
.footer1 {
  background-color: #1A1A1A;
  color: white;             
  text-align: center;
  padding: 20px 0;         
  position: relative;        
  width: 100%;              
}

.footer-line1 {
  height: 5px;    
  background-color: #ff7300; 
}

.footer1 p {
  margin: 10px 0 0 0;       
  font-size: 14px;          
}

@media (max-width: 768px) {

  .footer-column {
      width: 50%; 
  }

  .footer-columns {
      flex-wrap: wrap; 
  }
  
}
@media (max-width: 600px) {
  .footer {
      padding: 15px 0;      
  }

  .footer p {
      font-size: 12px;       
  }
}
@media (max-width: 768px) {
  .footer-policy-disclaimer {
      flex-direction: column; 
      align-items: flex-start;
  }

  .footer-policy-disclaimer .social-icons {
      margin-left: 0;
      margin-top: 10px;
      text-align: left; 
  }
  
  .footer-policy-disclaimer h4 {
      font-size: 16px;
  }

  .footer-policy-disclaimer p {
      font-size: 13px;
  }
}
@media (max-width: 480px) {
  .footer-policy-disclaimer h4 {
      font-size: 14px;
  }

  .footer-policy-disclaimer p {
      font-size: 12px;
  }

  .footer-policy-disclaimer .social-icons img {
      width: 20px;
      height: 20px;
  }
}