a{
    text-decoration: none;
    color: black;
}

.side-nav {
    position: fixed;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background-color: #fafafa;
    color: #000000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    /* align-items: center; */
    justify-content: center;
}

.side-nav a{
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    width: 80%;
}

.side-nav.open {
    left: 0;
}

.page-links,
.auth-links {
    display: none;
}
#dash, #profile{
display: none;
}
#profile img{
width: 55px;
height: 55px;
border-radius: 30px;
}
#profile a{
display: flex;
align-items: center;
}
#profile p{
padding-left: 10px;
font-size: 20px;
font-weight: 500;
}

@media screen and (min-width: 768px) {

    .side-nav {
        display: none;
    }

    .page-links,
    .auth-links {
        display: flex;
    }
}

.block-carousel {
    --animation-duration: 40s; /* Easier to adjust */
}

#companies-container {
    display: flex;
    width: max-content;
}

.company {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    flex-shrink: 0;
    scroll-snap-align: start; /* Better scrolling experience */
}

/* Animation styles */
@media (prefers-reduced-motion: no-preference) {
    .block-carousel[data-animated="true"] .companies-container {
        animation: scroll var(--animation-duration) linear infinite;
    }
}

.block-carousel[data-animated="true"] .companies-container:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* Reduced motion styles */
@media (prefers-reduced-motion: reduce) {
    .block-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .block-carousel .companies-container {
        animation: none !important;
    }
}

  
  /* Each slide */
  #websites-container > div {
    flex: 0 0 100%; /* Each slide takes full width */
    display: flex;
    align-items: center;
  }

  #websites-container::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  #websites-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 15px !important;
    height: 15px !important;
    margin: 0 9px 0 9px !important;
  }
  .swiper-pagination-bullet-active {
    background-color: #E1B40F !important;
  }


  .testimonial-pagination .swiper-pagination-bullet {
    background-color: white;
    opacity: 1;
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
  }
  
  .testimonial-pagination .swiper-pagination-bullet-active {
    background-color: white !important;
    outline: 1px solid white !important; /* Outer highlight border */
    outline-offset: 2px !important; /* Space between border and outline */
  }

#testimonialmobile-container{
    display: flex;
    scroll-snap-type: x mandatory; /* Enable snap scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    overflow-x: scroll; /* Enable horizontal scrolling */
    width: 100%;
}

#testimonialmobile-container > div{
    flex: 0 0 100%; /* Each slide takes full width */
    scroll-snap-align: start; /* Snap to the start of each slide */
    display: flex;
    justify-content: center;
    align-items: center;
}

#testimonialmobile-container::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  #testimonialmobile-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

.dotts{
    transition: background-color 0.3s ease;
}

.dotts.active{
    outline: 1px solid white; /* Outer highlight border */
    outline-offset: 2px; /* Space between border and outline */
}

@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Scroll by 50% of the total width */
    }
  }

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-auto-rows: minmax(100px, auto); /* Fixed row height with minimum 100px */
    gap: 20px; /* Space between grid items */
}

.accordion-item {
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    position: relative; /* Ensure content flows downward */
    z-index: 1; /* Keep accordion above others */
}

.accordion-item.expanded {
    grid-row: span 2; /* Expand to span two rows */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.accordion-item.expanded .accordion-content {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
}

.accordion-icon {
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.first-accordion .accordion-icon.bg-orange-500 {
    background-color: #f97316; /* Orange color */
}

.first-accordion .accordion-icon.opacity-0 {
    opacity: 0; /* Hide the vertical bar */
}

/* Ensure the first accordion is always open */
.accordion-item.expanded .accordion-content {
    max-height: none; /* Remove max-height restriction */
    opacity: 1;
}

.rotate-90 {
    transform: rotate(90deg);
}

.opacity-0 {
    opacity: 0;
}



#register-overlay, #login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 300;
  }

  .google-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 4px;
    padding: 10px 16px;
    width: 96%;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
  }
  
  .google-btns:hover {
    background-color: #f1f1f1;
  }
  
  .google-btns img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  
  
  #register-modal, #login-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    z-index: 400;
    width: 400px;
    height: 400px;
  }
  
  .close, .close2{
    float: right;
    cursor: pointer;
    font-size: 1.6rem;
  }

  #login-modal input, #register-modal input {
    width: 96%;
  }

  #log-submitBtn, #reg-submitBtn {
    background: #0C3D33;
    color: white;
    padding:10px;
    width: 96%;
    border: none;
    border-radius: 5px;
    margin: 10px 0;
  }


.login, .register{
    color: #FFFFFF;
    background: #088D51;
    padding: 6px 18px;
    border-radius: 6px;
}

.register{
    background: white;
    color: #000;
}

.showcase{
    height: 89vh;
    background-image: url('../images/showcase.jpg');
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}

.showcase p{
    margin-bottom: 10px;
    max-width: 567px;
}

.partners{
    padding: 3rem;
}

.partners-list{
    display: flex;
    gap: 2rem;
    max-width: 1010px;
    margin: 0 auto;
    align-items: center;
}

.partner1{
    width: 220px;
    height: 50px;
}
.partner2{
    width: 220px;
    height: 40px;
}
.partner3{
    width: 200px;
    height: 60px;
}
.partner4{
    width: 220px;
    height: 44px;
}

.ps{
    display: flex;
    gap: 8px;
}



.why-us-content{
    display: flex !important;
    max-width: 900px !important;
    margin: 1rem auto !important;
    gap: 5rem !important;
}

.why-us-content .reason{
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.reason img{
    width: 44px !important;
}

.reason h3{
    margin-bottom: 10px;
}

.why-us-img img{
    width: 321px !important;
}


.feature-section h1{
    font-family: 'Nunito';
    font-weight: 700;
    color: #088D51;
    scroll-snap-type: y proximity;
}
.featureItem{
    height: 100vh;
    scroll-snap-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 5rem;
}
.featureItem h2{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    width: 400px;
    color: #115648;
    text-align: left;
}
.featureItem p{
    font-family: 'Nunito';
    width: 417px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    color: #333333;

}
.features{
    margin-top: 216.06px;
}
.featureImage img{
    margin-right: 147px;
    width: 420px;
    height: 420px;
    margin-top: -80px;
}



.para{
    margin-left: 130px;
}

.about h1{
    color: #088D51;
}
.about-text span{
    color:#115648;
    font-weight: 600;
}

.about-text p{
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 420px;
}

.image-one{
margin-left: 90px;
transition: 0.5s;
width: 350px;
height: 400px;
}
.image-one:hover{
    transform: scale(1.1);
    transition: 0.7s ease-in-out;
}
.image-two{
    width: 250px;
    height: 250px;
    margin-top: -80px;
    margin-right:5px ; 
}
.image-two:hover{
    transform: scale(1.1);
    transition: 0.7s ease-in-out;
}

.image-three{
    width: 350px;
    height: 350px;
    margin-top: -90px;
    margin-right: 10px;
    transition: 0.5s;
}
.image-three:hover{
    transform: scale(1.1);
    transition: 0.7s ease-in-out;
}
.image-four{
    width: 300px;
    height: 300px;
    margin-left: 100px;
    margin-top: -90px;
    transition: 0.5s;
}
.image-four:hover{
    transform: scale(1.1);
    transition: 0.7s ease-in-out;
}
.redirect-product{
    margin-top: 116.84px;
    background: #0C3D33; 
}
.redirect-productText{
    padding-top: 51px;
}
.redirect-productText span{
    color: #088D51;
}
.redirect-productText h2{
    color: white;
}
.redirect-productText p{
    font-size: 20px;
    color: white;
    text-align: center;    
}
.redirect-product img{
    /* width: 962px; */
    height:500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 63px;
}

.redirect-product a{
    display: block;
    width: 332.91px;
    padding: 16px;
    background: #088D51;
    border-radius: 50px;
    text-align: center;
    color: white;
    margin: 2rem auto;
}

.FAQ-header h1{
    text-align: center;
    color: #088D51;
}


.faq-content{
    height: 80vh;
}
.FAQ-text{
    width: 50.8vw;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 2% 0;
    margin-top: 30px;
}
.FAQ-text .text{
    margin-left: 15.39px;
}
.FAQ-text .text h1{
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 44px;
    color: #444444;
    
}
.FAQ-text p{
    width: 40vw;
    margin-left: 26.68px;
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    color: #000000;
}
.FAQ-text .text img{
    margin-right: 32px;
}
.FAQ-text .text i{
    margin-right: 32px;
    font-size: 30px;
    color: #088D51;
}

#contact{
    margin-top: 194.51px;
}

.contact-header h2{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #0C3D33;
    
}
.contact-header h5{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 38px;
    text-align: center;
    color: #444444;
    
}
.contact-form{
    margin-top: 56px;
    /* width: 95vw; */
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    box-shadow: 4px 5px 4px 4px rgba(0, 0, 0, 0.24);
    border-radius: 24px;
}
.contactInfoText{
    width: 517px;
    background: #088D51;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    margin-left: 18px;
    padding-left: 40.27px;
    margin-top: 21px;
    margin-bottom: 35px;
    padding-top: 35px;
}
.contactInfoText h2{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 60px;
    /* identical to box height, or 167% */
    
    
    color: #FFFFFF;
    
}
.contactInfoText h5{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #DDDDDD;
}
.contactInfo{
    margin-top: 37px;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    
}
.contactInfo div{
    padding-top: 20px;

}
.contactInfo div p{
    margin-left: 21px;

}
.contact-socials{
    margin-top: 133.18px;
    margin-bottom: 24px;
}
.contact-socials img{
    border: 2px solid #AAAAAA;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 20px;
    background: transparent;
    margin-left: 14px;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: 0.5s;
}
.contact-socials img:hover{
    /* background: #000000; */
    background: rgba(130, 85, 251, 0.7);

}
.shapes .one{
    position: relative;
    z-index: 1;
    margin-top: 7px;
    margin-left: 0.7px;
    z-index: 1;


}
.shapes .circle{
    position: relative;
    top: 30%;
    right:20%;
    z-index: 2;
}
.contact-form form{
    margin-top: 40px;
    margin-left: 39.54px;
}


.footer a{
    display: block;
    margin: 10px 0;
}

.about-sm{
    display: none;
}

@media screen and (max-width:777px ) {

    body{
        overflow-x: hidden !important;
    }

    .nav .page-links, .nav .auth-links{
        display: none;
    }

    .why-us-content{
        flex-direction: column;
        align-items: center;
    }

    .reasons{
        max-width: 440px;
    }

    .reason img{
        display: none;
    }

    .reason{
        text-align: center;
    }

    .order-2{
        display: none;
    }

    .order-1{
        order: 2 !important;
    }

    .about-sm{
        order: 1 !important;
        display: block;
        width: 70%;
        margin-bottom: 1rem;
    }

    .about-text{
        text-align: center;
    }

    .para{
        margin: 0;
        padding: 0 2rem;
    }

    .about-sm{
        display: block;
        margin: 1rem auto;
    }


    .featureItem{
        grid-template-columns: 1fr !important;
        align-items: center !important;
        text-align: center !important;
        width: 420px;
        margin: 10rem auto;
        gap: 2rem;
        height: fit-content;
    }

    .para{
        grid-template-columns: 1fr !important;
    }



    .featureItem h2, .featureItem p{
        text-align: center !important;
    }

    .featureImage{
        order: 1;
    }

    .featureText{
        order: 2;
    }

    .image-one{
        margin-left: 90px;
        width: 200px;
        height: 220px;
    }

    .image-two{
        width: 180px;
        height: 180px;
        margin-top: -40px;
        margin-right:5px ; 
    }

    .image-three{
        width: 200px;
        height: 200px;
        margin-top: -30px;
        margin-right: 10px;
    }

    .image-four{
        width: 120px;
        height: 120px;
        margin-left: 60px;
        margin-top: -40px;
    }

    .FAQ-sec{
        flex-wrap: wrap;
    }

    .FAQ-text, .faq-content{
        width: 95%;
    }

} 



@media screen and (max-width:444px ){


    body{
        overflow-x: hidden;
    }

    .nav{
        padding: 4px 2rem;
    }
    .nav img{
        width: 157px;
    }

    .nav button{
        font-size: 1.1rem;
    }

    .showcase h1{
        font-size: 2rem;
    }

    .partners h2{
        font-size: 1.3rem;
        line-height: 1.56;
    }

    .why-us h2{
        font-size: 1.3rem;
    }

    .why-us-img img{
        width: 246px !important;
    }

    .reasons{
        max-width: 321px;
    }

    .feature-section h1{
        font-size: 1.3rem;
    }

    .featureImage img{
        width: 300px !important;
        height: 300px !important;
        margin: 0;
    }

    .featureItem h2{
        font-size: 20px;
        max-width: 300px;
    }

    .featureItem p{
        max-width: 300px;
    }

    .featureItem{
        max-width: 300px !important;
    }

    .about h1{
        font-size: 1.3rem;
    }

    .para{
        margin: 0;
        padding: 0 2rem;
        font-size: 1.1rem;
    }

    .about-sm{
        display: block;
        margin: 1rem auto;
    }

    .redirect-productText h2{
        font-size: 1.4rem;
    }

    .redirect-product img{
        height:250px;
    }

    .FAQ-header h1{
        font-size: 1.6rem;
    }
    
    .faq-sec div:first-child img{
        width: 300px !important;
    }
    
    .footer{
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .FAQ-text h1, .FAQ-text p{
        font-size: 14px !important;
        line-height: 1.3;
        width: 90%;
    }

    .FAQ-text h1{
        line-height: 20px !important;
    }
    
    .FAQ-text .text{
        margin-bottom: 1rem;
        padding: 5px;
    }

    .FAQ-text .text i{
        margin-right: 16px;
        font-size: 15px;
        color: #088D51;
    }
}