
/* Complete nav bar controller please use this*/
/* CSS for Navigation Bar */
*{
    padding: 0%;
    margin: 0%;
}
#navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 8px 16px;
    margin: 2px 4px;
    height: 65px; /* Decreased height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif; /* Set font for navigation */
    border-radius: 5px;
}

#logo img {
    height: 50px; /* Adjusted height to fit new nav height */
    border-radius: 20px;
}

.upper {
    margin: 0 15px;
    position: relative;
    
}

.upper a {
    text-decoration: none;
    color: white;
    margin: 0;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif; /* Set font for menu items */
}

.upper a:hover {
    background-color: #368f31;
    
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 6px;
    z-index: 1;
    border-radius: 5px;
}

.submenu a {
    color: white;
    margin: 0;
    padding: 5px 0;
}


#search {
    position: relative;
}

#search input {
    width: 200px;
    height: 40px;
    padding: 5px 10px 5px 40px;
    border: none;
    border-radius: 30px;
    font-family: 'Arial', sans-serif; /* Set font for search input */
}

#search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    pointer-events: none;
}

#cart img {
    height: 40px;
    margin: 0px 10px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    #navigation {
        flex-direction: column;
        align-items: flex-start;
        height: 50px;
    }
    #logo img {
        height: 30px; /* Adjusted height to fit new nav height */
        border-radius: 5px;
    }

    .upper {
        display: none;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .upper a {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    #search, #cart {
        display: none;
    }
}

/* Now form section Complete gallery section */
form {
    padding: 0;
}

#gallery_sec {
    width: 100%;
    max-width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: url('../image/backGround.jpg');
    background-size: cover;
    /* background: linear-gradient(135deg, #ff7e5f, #feb47b); */
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    padding: 0;
}

.galleryImg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-sizing: border-box;
    border-radius: 15px;
    margin: 0 5px; /*Adjust margin to control spacing between images */

}

@media (max-width: 1024px) {
    .galleryImg {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .galleryImg {
        flex: 0 0 100%;
        width: 100%;
    }
}


/* Issue in product Section  */
/* Gallery Section */
#gallery_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Ensure items are in a single row */
    padding: 20px;
    background-color: #f9f9f9;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
}

.galleryImg {
    flex: 0 0 calc(25% - 20px); /* Adjust the percentage to fit the number of items per row */
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 200px; /* Adjust the max-height as needed */
}

@media (max-width: 768px) {
    .galleryImg {
        flex: 0 0 calc(50% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .galleryImg {
        flex: 0 0 calc(100% - 20px); /* Adjust for very small screens */
    }
}

/* Issue section and modifing */
#issueSec{
    padding: 0%;
    text-align: center;
    font-size: 1.5rem;
    margin: 10px 0;
}
@media (max-width:768px){
    #issueSec{
        font-size: 1.0rem;
    }
}



/* Service Section */

#serviceSec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Ensure items are in a single row */
    padding: 20px;
    background-color: #f9f9f9;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
}

.services {
    flex: 0 0 calc(20% - 20px); /* Adjust the percentage to fit the number of items per row */
    margin: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.services img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Adjust the max-height as needed */
    object-fit: cover;
    border-radius: 5px;
}

.services a {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}


@media (max-width: 768px) {
    .services {
        flex: 0 0 calc(50% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .services {
        flex: 0 0 calc(100% - 20px); /* Adjust for very small screens */
    }
}

#tokenOne{
    margin-top: 10px;
    height: 400px;
    width: 100%;
}
@media (max-width: 768px) {
    #tokenOne{
        margin-top: 5px;
        height: 200px;
        width: 100%;
    }
}

/* Team Section */
#team {
    padding: 50px 20px;
    /* background: linear-gradient(135deg, #ff7e5f, #feb47b); */
    background: url('../image/File25.jpg');
    color: white;
    text-align: center;
}

#team h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.team-member {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.2em;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .team-member {
        margin-bottom: 15px;
    }
}






/* FAQs Section */
#faqs {
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    color: #333;
    padding: 50px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .faq {
    margin: 10px 0;
  }
  
  .faq-question {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .faq-question:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .faq-question:hover + .faq-answer {
    display: block;
  }
  
  .faq-answer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #faqs {
      padding: 30px 10px;
    }
  
    .faq-question {
      font-size: 1em;
      padding: 10px;
    }
  
    .faq-answer {
      padding: 10px;
    }
  }


/* Review section and Please all ai */
.testimonials-section {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.testimonials-section .container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #333;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rating span {
    color: #f39c12;
    font-size: 1.5em;
}

.testimonial h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrows .prev,
.arrows .next {
    cursor: pointer;
    font-size: 2em;
    color: #333;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    user-select: none;
}

.arrows .prev:hover,
.arrows .next:hover {
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 10px;
    }

    .testimonials-section h2 {
        font-size: 2em;
    }

    .testimonial p {
        font-size: 1em;
    }

    .testimonial h3 {
        font-size: 1.2em;
    }
}


/* About section */


/* About Us Section Styles */
.about-us-section {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
  }
  
  .about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-us-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
  }
  
  .about-us-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #66a6ff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-us-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .about-us-section p:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-us-section {
      padding: 40px 10px;
    }
  
    .about-us-section h2 {
      font-size: 2em;
    }
  
    .about-us-section p {
      font-size: 1em;
    }
  }
  

/* How we work section */

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    transition: background-color 0.5s ease;
} */

.about-us-section {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    transition: background-color 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.how-we-work-section {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    transition: background-color 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.how-we-work-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-we-work-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.how-we-work-section .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.how-we-work-section .step {
    flex: 1 1 calc(25% - 40px);
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.how-we-work-section .step h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.how-we-work-section .step p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-we-work-section .steps {
        flex-direction: column;
        align-items: center;
    }

    .how-we-work-section .step {
        max-width: 100%;
    }
}


/* Footer section */

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9em;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 10px;
  }
  
  .footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s;
  }
  
  .footer-section a:hover {
    color: #fff;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section a[href^="mailto:"], .footer-section a[href^="tel:"] {
    color: #f5f5f5;
    font-weight: bold;
  }
  
  .footer-section a[href^="mailto:"]:hover, .footer-section a[href^="tel:"]:hover {
    color: #ffcc00;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #ccc;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  }







