


header .logo h1 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.co {
  
   margin-left: 20px;
   padding: 10px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    width: 80%;
  }

/* Hero Section */
.hero {
    /* background: url('https://via.placeholder.com/1600x800') no-repeat center center/cover; */
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e05a4f;
}

/* Product Image Section */
.product-image {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.product-image .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.image-wrapper {
    display: flex;
    justify-content: center;
}

.scooter-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-section {
    margin-top: 30px;
}

.price-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.price-section .price {
    color: #ff6f61;
    font-size: 2.5rem;
    font-weight: bold;
}

.banner-section {
    width: 100%;
    overflow: hidden; /* Hide anything overflowing horizontally */
    position: relative;
}

.banner-wrapper {
    display: flex; /* Arrange banners horizontally */
    transition: transform 1s ease-in-out; /* Smooth sliding effect */
}

.banner {
    min-width: 100%; /* Each banner takes up 100% of the container */
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.swiper-container {
    width: 80%;
    margin: 50px auto;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 300px;
    margin-right: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}


header {
    text-align: center;
    padding: 50px 0;
    background-color: #007bff;
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

.product-slider {
    padding: 50px 0;
    text-align: center;
}

.product-slider h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.swiper-container {
    width: 90%;
    margin: 0 auto;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 250px;
    margin-right: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-content .price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.card-content .discount {
    font-size: 14px;
    color: #d9534f; /* Red color for discount */
    text-transform: uppercase;
}

.about {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    /* padding: 20px 0; */
}

footer p {
    font-size: 1rem;
}


/* Basic button styling */
.order-button {
    background-color: #40e862; /* Light Green background */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px; /* Rounded button edges */
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for light effect */
    transition: background-color 0.3s, transform 0.2s ease-in-out, box-shadow 0.2s ease;
  }

  /* Hover effect for a slightly brighter button */
  .order-button:hover {
    background-color: #20ae31; /* Slightly darker green on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Increased shadow for glowing effect */
  }

  /* Focus effect (when the button is clicked) */
  .order-button:focus {
    outline: none;
  }



  /* Button styles */
  .book-now-button {
    background: linear-gradient(to right, rgb(243, 31, 31), rgb(27, 234, 27)); 
    color: white;
    /* background-color: #20ae31; */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 25px; /* Rounded button edges */
    cursor: pointer;
    
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for a raised look */
    transition: background 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.3s ease;
  }

  /* Hover effect */
  .book-now-button:hover {
    /* background-color: #158221; */
    background: linear-gradient(to right, rgb(26, 226, 26), rgb(255, 30, 30)); 
    transform: scale(1.05); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
  }

  /* Focus effect */
  .book-now-button:focus {
    outline: none;
  }






 /* Keyframe animation for gradient transition effect */
    @keyframes gradientShift {
      0% {
        background: linear-gradient(to right, red 60%, rgb(14, 189, 14) 50%);
        -webkit-background-clip: text;
        color: transparent;
      }
      100% {
        background: linear-gradient(to right, rgb(21, 208, 21) 40%, red 50%);
        -webkit-background-clip: text;
        color: transparent;
      }
    }

    /* Style for the heading */
    .hed {
      font-size: 3rem;
      font-weight: bold;
      background: linear-gradient(to right, red 60%, rgb(4, 216, 4) 40%);
      -webkit-background-clip: text; /* Clips the gradient to the text */
      color: transparent; /* Makes the text color transparent so the gradient is visible */
      animation: gradientShift 2s infinite alternate; /* Animation for shifting gradient */
      letter-spacing: 2px;
      text-transform: uppercase;
    }


      
    /* Section Styling */
    #features {
        background: linear-gradient(135deg, green, red); /* Green-Red Gradient background */
        padding: 50px 15px;
        text-align: center;
        color: white;
      }
  
      #features h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 40px;
        animation: textGlow 3s ease-in-out infinite;
      }
  
      /* Text Glow Effect for Header */
      /* @keyframes textGlow {
        0% {
          text-shadow: 0 0 10px green, 0 0 20px red, 0 0 30px green, 0 0 40px red;
        }
        50% {
          text-shadow: 0 0 20px green, 0 0 30px red, 0 0 40px green, 0 0 50px red;
        }
        100% {
          text-shadow: 0 0 10px green, 0 0 20px red, 0 0 30px green, 0 0 40px red;
        }
      }
   */
      /* Container for the feature cards */
      .headland-one-regular {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
      }
  
      /* Individual Feature Cards */
      .feature-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .feature-card {
       
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s forwards; /* Animation for the fade-in effect */
      }
      
  
      /* Animation for feature cards */
      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      /* Hover effect on feature cards */
      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      }
  
      .feature-card h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 15px;
      }
  
      .feature-card p {
        font-size: 1rem;
        color: #666;
      }
  
      /* Mobile Responsiveness */
      @media (max-width: 768px) {
        #features h2 {
          font-size: 2rem; /* Smaller header on mobile */
        }
  
        .feature-card h3 {
          font-size: 1.5rem; /* Adjusted heading size */
        }
  
        .feature-card p {
          font-size: 0.9rem; /* Adjusted text size */
        }
  
        .feature-cards {
          grid-template-columns: repeat(1, 1fr); /* Stacked layout on small screens */
        }
  
        .feature-card {
          padding: 15px; /* Reduced padding */
        }
      }
  
      /* For even smaller screens (e.g., mobile phones in portrait mode) */
      @media (max-width: 480px) {
        #features h2 {
          font-size: 1.8rem; /* Even smaller header for very small devices */
        }
  
        .feature-card h3 {
          font-size: 1.4rem; /* Smaller heading size */
        }
  
        .feature-card p {
          font-size: 0.85rem; /* Smaller text size */
        }
      }
  


      



      /* Section Styling */
      #specs {
        background-image: url('assets/slide.png'); /* Replace with your image path */
       
        background-position: center;
        
        /* background-image: url('assets//slide.png'); */
        background: bl;
        background-color: #ffffff;
        padding: 50px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        /* opacity: 0.6; */
      }
  
      /* Heading Styling */
      .caveat {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        text-align: center;
        /* margin-bottom: 30px; */
        animation: textGlow 3s ease-in-out infinite;
      }
  
      /* Text Glow Animation */
      /* @keyframes textGlow {
        0% {
          text-shadow: 0 0 10px green, 0 0 20px red, 0 0 30px green, 0 0 40px red;
        }
        50% {
          text-shadow: 0 0 20px green, 0 0 30px red, 0 0 40px green, 0 0 50px red;
        }
        100% {
          text-shadow: 0 0 10px green, 0 0 20px red, 0 0 30px green, 0 0 40px red;
        }
      } */
  
      /* Flex container for specifications */
      .co {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
      }
  
      /* Each specification box styling */
      .spec-box {
      
        width: 45%; /* Takes up half the space */
        padding: 20px;
        margin: 10px 0;
        background-color: #f0f0f0;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
      }
  
      .spec-box:hover {
        transform: scale(1.05); /* Hover effect */
      }
  
      .spec-box ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        font-size: 1.1rem;
        color: #333;
      }
  
      .spec-box ul li {
        padding: 8px 0;
        border-bottom: 1px solid #ccc;
      }
  
      .spec-box ul li strong {
        color: #7b0000;
      }
  
      /* Responsiveness: Stack sections on mobile */
      @media (max-width: 768px) {
        .co {
          flex-direction: column; /* Stack sections vertically */
        }
  
        .spec-box {
          width: 100%; /* Full width on mobile */
          margin: 10px 0;
        }
  
        .caveat {
          font-size: 2rem; /* Adjusted font size for small screens */
        }
      }




      .spec-box {
        
        width: 45%; /* Takes up half the space */
        padding: 20px;
        margin: 10px 0;
        background-color: rgba(211, 182, 182, 0.8); /* Light gray background with some opacity */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative; /* Position context for the pseudo-element */
        overflow: hidden; /* Prevents the pseudo-element from overflowing */
        transition: transform 0.3s ease-in-out;
      }
      
 
      .spec-box::before {
        content: "";
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('assets/slide.png'); 
        
        background-position: center;
        filter: blur(8px); 
        z-index: -1; 
        opacity: 0.6;; 
      }
      
      /* To make the content inside the box visible and clear */
      .spec-box ul {
        position: relative; /* Ensure the text stays on top of the blurred background */
        z-index: 2; /* Ensure the text is on top of the blurred background */
        list-style-type: none;
        padding: 0;
        margin: 0;
        font-size: 1.1rem;
        color: #000000;
      }
      
      .spec-box ul li {
        padding: 8px 0;
        border-bottom: 1px solid #ccc;
      }
      
      .spec-box ul li strong {
        color: #7a0000;
      }
      
      .spec-box:hover {
        transform: scale(1.05); /* Hover effect */
      }
      
/* Mobile View - Adjusting background image */
@media (max-width: 768px) {
    .spec-box {
      width: 100%; /* Make each spec-box take up full width */
      margin: 15px 0; /* Add some space between the boxes */
      padding: 15px; /* Reduce padding for mobile screens */
    }
  
    .spec-box::before {
      background-size: cover; /* Ensure background image covers the entire element */
      background-position: center; /* Center the background image */
      filter: blur(6px); /* Slightly reduce blur for mobile */
    }
  
    .spec-box ul {
      font-size: 1rem; /* Slightly smaller font for mobile */
    }
  
    /* Adjust the heading size for mobile */
    .caveat {
      font-size: 1.5rem;
      text-align: center;
    }
  }
  
  /* Very small devices like phones in portrait mode */
  @media (max-width: 480px) {
    .spec-box {
      padding: 10px; /* Further reduce padding */
    }
  
    .spec-box::before {
      /* background-size: cover;  */
      background-position: center top; /* Position the image to focus on the top of the image */
      filter: blur(4px); /* Reduce blur even further for better mobile performance */
    }
  
    .spec-box ul li {
      font-size: 0.9rem; /* Smaller font size for readability */
    }
  





    .caveat {
      font-size: 1.3rem;
    }
  }
  








  .features-benefits {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.c2 {
  
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-list, .benefit-list {
  
    margin-left: 20px;
}

.feature-item, .benefit-item {
    background-color: #ef8383;
    margin-bottom: 15px;
}

c3 {
    cursor: pointer;
    color: #000000;
    transition: color 0.3s ease;
}

c3:hover {
    color: #9a0000;
}

.feature-details, .benefit-details {
    display: none; 
    padding-left: 20px;
    font-size: 16px;
    color: #ffffff;
}

.feature-details.show, .benefit-details.show {
    display: block; 
}
h2{
    margin-top: 0;
    /* color: #b59c9c; */
    color: #f5f5f5;
    text-align: center;
}


