* {
    margin: 0;
    padding: 0;
    transition-duration: 0.5s;
}
#horizontal{
    margin: 0 6em 0 6em;
}
.background {
    background-image: url(images/background.svg);
    background-size: cover;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5% 0 5%;
    
}
.nav button {
    background-color: white;
    padding: 15% 30% 15% 30%;
    border: solid 1px blue;
    border-radius: 10px;
    color: blue;
    transition: 0.05s;
}
.nav button:hover{
    background-color: rgb(49 46 129);
    color: white;
    transform: scale(1.04);
    
}
@media (max-width: 768px) {
    .nav img{
        width: 90%;
        margin-top: .5em;
        
    }
    .nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
  
    
    
}

@media (max-width: 480px) {
    .nav img{
        width: 90%;
        margin-top: .5em;
        
    }
    .nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}


.sec1 {
    height: 100vh;
    margin: 0 5% 0 5%;
   display: flex;
   justify-content: center;
   /* align-items: center; */
    /* gap: 5em; */
}
#animation{
    width:50vw;
}
.subsec2:hover{
    scale: 1.1;
}
.subsec1 {
    margin-top: 10em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-bottom: 1em;
    
}
#welcomemob{
    display: none;
}
.subsec1 h1 {
    font-size: 4.5rem;
    line-height: 1;
    width: 50%;
}
.highlight-text {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to right, #f1f814, #e1e71c); 
    background-size: 0% 100%;  
    border-radius: 10px;
    background-position: left center;  
    background-repeat: no-repeat;
   
    animation: highlight-animation 4s ease-in-out infinite; /* Animation properties */
}

@keyframes highlight-animation {
    0% {
        background-size: 0% 100%; /* Start with no highlight */
    }
    50% {
        background-size: 100% 100%; /* Highlight reaches full width at halfway */
    }
    100% {
        background-size: 0% 100%; /* Highlight resets at the end */
    }
}
.sec1 p {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

@media (max-width: 768px) {
    
.sec1 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
}

#animation{
    width: 25em;
}
.subsec1 { 
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    margin-bottom: 0em;
    margin: 2em 2em 0 0em;
    margin-top: 0em;
}

.subsec1 h1 {
    font-size: 1.5rem;
    line-height: 1;
    width: 50%;  
    margin: 5px;

}
.subsec1 h1:first-child{
    margin-left: 2em;
}

.highlight-text {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to right, #f1f814, #e1e71c); 
    background-size: 0% 100%;  
    border-radius: 10px;
    background-position: left center;  
    background-repeat: no-repeat;
    animation: highlight-animation 4s ease-in-out infinite; /* Animation properties */
}

@keyframes highlight-animation {
    0% {
        background-size: 0% 100%; /* Start with no highlight */
    }
    50% {
        background-size: 100% 100%; /* Highlight reaches full width at halfway */
    }
    100% {
        background-size: 0% 100%; /* Highlight resets at the end */
    }
}


}

@media (max-width: 480px) {
    
}

.marqee1 {
    text-align: center;
    margin-top: 5rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;

}

.marquee {
    display: flex;
    /* width: calc(200% );  */
    animation: marquee-animation 10s linear infinite;
}

.marquee img {
    /* height: 100px; */
    flex-shrink: 0;
    margin-right: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0%);
        /* Start at the beginning of the container */
    }

    100% {
        transform: translateX(-70%);
        /* End at the midpoint of the container */
    }
}

@media (max-width: 768px) {
    
    .marqee1 {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .marquee {
        display: flex;
        animation: marquee-animation 7s linear infinite;
    }
    
    .marquee img {
        height: 100px;
        flex-shrink: 0;
        margin: 0px;
    }
    
    }
    
    @media (max-width: 480px) {
        
    }
    

.section {
    padding: 5rem 4rem 2.5rem 4rem;
}

.section h3 {
    font-size: 15px;
    line-height: 1.75rem;
    color: rgb(67 56 202);
}

.serving {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10em;
    background-color: ;

}

.serving h1 {
    font-size: 48px;
    /* width: 70%; */
}

.serving p {
    font-size: 20px;
    width: 70%;

}
@media (max-width: 768px) {
    
.section {
    padding: 1em;
}

.section h3 {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.75rem;
    color: rgb(67 56 202);
}

.serving {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.serving h1 {
    margin-top: 1em;
    font-size: 2.1em;
}

.serving p {
    font-size: 20px;
    width: 100%;
    overflow: hidden;
    text-align: center;

}   
    }
    
    @media (max-width: 480px) {
        
    }
.industries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    row-gap: 1.75rem;
    column-gap: 2rem;
    margin-top: 2.5rem;
    padding: 5rem 4rem 2.5rem 4rem;
}

.info {
    display: flex;
    align-items: center;
    justify-content: start;
    border: solid rgb(209 213 219) 1px;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.info:hover{
    scale: 1.1;
    background-color: rgba(192, 189, 189, 0.448);
    border: black solid 1px;
}
.info h1 {
    font-size: 15px;
}

.info img {
    width: 2.5rem;
    margin-right: 1em;
    height: auto;
}
@media (max-width: 768px) {
    .industries {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 1.75rem;
        column-gap: .5rem;
        margin-top: 1rem;
        padding: .6em .6em .6em .6em;
    }
    
    .info {
        display: flex;
        align-items: center;
        justify-content: start;
        border: solid rgb(209 213 219) 1px;
        border-radius: 0.5rem;
        padding: .4rem;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    }
    .info:hover{
        scale: 1.1;
        background-color: rgba(192, 189, 189, 0.448);
        border: black solid 1px;
    }
    .info h1 {
        font-size: 15px;
    }
    
    .info img {
        width: 2.5rem;
        margin-right: 1em;
        height: auto;
    }
        }
        
        @media (max-width: 480px) {
            
        }
.section2 {
    padding: 2.5rem 4rem 2.5rem 4rem;
}

.section2 h3 {
    color: rgb(67 56 202);
    margin-bottom: 1.25rem;
}

.subsection2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5em 0 5em;
}
#faq{
    width: 25vw;
    margin-left: 5vw;
}
.subsec2 {
    flex-basis: 50%;
}
.subsec2 img{
    width: 100%;
}


#hrline {
    width: 100%;
}

.subsec21 {
    width: 40%;
}

.subsec21111 {
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span img {
    width: 20px;
}


@media (max-width: 768px) {
    .section2 {
        padding: 2rem 1rem 1rem 1rem;
        /* height: 100vh; */
    }
    
    .section2 h3 {
        color: rgb(67 56 202);
        margin-bottom: 1.25rem;
        text-align: center;
    }
    .subsection2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0 0 0 0;
    } 
     .subsec2 img{
        width: 400px;
    }
    #hrline {
        width: 100%;
    }
    .subsec21 {
        width:80%;
        margin: 1em;

    }
    
    .subsec21111 {
        padding: .8em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #faq{
        width: 18em;
        margin: 5vw;
    }
    span img {
        width: 15px;
    }
        }
        
        @media (max-width: 480px) {
            
        }





#how {
    margin-top: 2em;
    text-align: center;
}

.step1 h3 {
    font-size: 16px;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:3rem ;
    margin-top: 1rem;
}

.stepsec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10em;
    margin: 0% 10% 0 10%;
}

.stepright1 {
    width: 50%;
}

.stepsec1 h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.stepsec1 p {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.stepsec1 img {
    width: 300px;
    scale: 1.1;
}

.step2 h3 {
    font-size: 16px;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:3rem ;
    margin-top: 1rem;
}

.stepsec2 {
    display: flex;
    justify-content: center;
    gap: 10em;
    align-items: center;
    margin: 0% 10% 0 10%;
}

.stepright2 {
    width: 50%;
}

.stepsec2 h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.stepsec2 p {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.stepsec2 img {
    width: 300px;
    scale: 1.1;
}



.step3 h3 {
    font-size: 16px;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:3rem ;
    margin-top: 1rem;
}

.stepsec3 {
    display: flex;
    justify-content: center;
    gap: 5em;
    align-items: center;
    margin: 0% 10% 0 10%;
}

.stepright3 {
    width: 50%;
}

.stepsec3 h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.stepsec3 p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    width: 80%;
}

.stepsec3 img {
    width: 300px;
    scale: 1.1;
}


.stepsec4 {
   
    display: flex;
    justify-content: center;
    gap: 5em;
    align-items: center;
    margin: 5% 10% 0 10%;
}

.stepright4 {
    width: 50%;
}

.stepsec4 h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.stepsec4 p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1em;
}

.stepsec4 img {
    width: 35em;
    scale: 1.1;
}


.stepright4 button{
padding: 0.5rem 1rem 0.5rem 1rem;
border-radius: 5px;
}

.stepright4 button {
    padding: 0.5rem 1rem 0.5rem 1rem;
    color: white;
    margin-top: 0rem;
    border-width: 1px;
    border-radius: 0.5rem;
    background-color: rgb(49 46 129);
}
.stepright4 button:hover{
    background-color:white;
    color:  rgb(31, 25, 216);
    border-width: 2px;
}

@media (max-width: 768px) {
  

#how {
    margin-top: 2em;
    text-align: center;
}

.step1 h3 {
    font-size: 1rem;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:2rem ;
    margin-top: 1rem;
}

.stepsec1 {
    display: flex;
    gap: 2em;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin: 1em;
}
.stepright1 {
    width: 100%;
}

.stepsec1 h2 {
    font-size: 2rem;
    line-height: 1;
    margin: 0rem 0 1rem 0;
}

.stepsec1 p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.stepsec1 img {
    width: 300px;
    scale: 1.1;
}





.step2 h3 {
    font-size: 1rem;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:2rem ;
    margin-top: 1rem;
}

.stepsec2 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    margin: 1em;
    gap: 2em;
}
.stepright2 {
    width: 100%;
}

.stepsec2 h2 {
    font-size: 2rem;
    line-height: 1;
    margin: 1rem 0 1rem 0;
}

.stepsec2 p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.stepsec2 img {
    width: 300px;
    scale: 1.1;
}






.step3 h3 {
    font-size: 1rem;
    line-height: 1.75rem;
    color: rgb(67 56 202);
    margin-bottom: 1rem;
    margin-left:2rem ;
    margin-top: 1rem;
}

.stepsec3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin: 1em;
    gap: 2em;
}
.stepright3 {
    width: 100%;
}

.stepsec3 h2 {
    font-size: 2rem;
    line-height: 1;
    margin: 1rem 0 1rem 0;
}

.stepsec3 p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.stepsec3 img {
    width: 300px;
    scale: 1.1;
}
.stepsec4 {
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25em;
    align-items: center;
    margin: 5% 10% 0 10%;
}

.stepright4 {
    width: 100%;
}

.stepsec4 h2 {
    font-size: 2rem;
    text-align: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.stepsec4 p {
    font-size: 1.125rem;
    line-height: 1.25rem;
    text-align: center;
    margin-bottom: 0em;
}

.stepsec4 img {
    width: 20em;
    scale: 1.1;
}


.stepright4 button{
padding: 0.5rem 1rem 0.5rem 1rem;
border-radius: 5px;
}

.stepright4 button{
    padding: 0.5rem 1rem 0.5rem 1rem;
    color: white;
    margin-top: 0rem;
    border-width: 1px;
    border-radius: 0.5rem;
    background-color: rgb(49 46 129);
}
#welcomepc{
    display: flex;
    margin-top: 2em;
    flex-direction: column;
    align-items:center;
    justify-content:center;
}
.stepright4 button:hover{
    background-color:white;
    color:  rgb(31, 25, 216);
    border-width: 2px;
}

        }
  
 @media (max-width: 480px) {
            
        }

.contactus {
    padding: 4rem 0 4rem 0;
    margin: 2.5rem 1.25rem 2.5rem 1.25rem;
    border-radius: 0.75rem;
    background-color: rgb(229 234 247);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactus button {
    font-size: 15px;
    margin-top: 1rem;
    line-height: 1.75rem;
    padding: 0.75rem 2.5rem 0.75rem 2.5rem;
    color: white;
    border-width: 1px;
    border-radius: 0.5rem;
    background-color: rgb(49 46 129);
}
.contactus button:hover{
    background-color:white;
    color:  rgb(31, 25, 216);
    border-width: 2px;
}
@media (max-width: 768px) {
    .contactus {
        padding: 1rem;
        margin-top:4em;
        border-radius: 0rem;
        background-color: rgb(229 234 247);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contactpara h1{
font-size: 1.5rem;
text-align: center;
    }
    .contactus button {
        font-size: 1rem;
        margin-top: 1rem;
        line-height: 1.75rem;
        padding: 0.75rem 2rem 0.75rem 2rem;
        color: white;
        border-width: 1px;
        border-radius: 0.5rem;
        background-color: rgb(49 46 129);
    }
    .contactus button:hover{
        background-color:white;
        color:  rgb(31, 25, 216);
        border-width: 2px;
    }
        }
  
 @media (max-width: 480px) {
            
        }
.footer {
    padding: 2.5rem 4rem 2.5rem 4rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 231 107);
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;

}

.foot {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.foot1 {
    display: flex;
    justify-content: left;
    flex-direction: column;
    /* align-items: center; */
    width: 50%;
}
.foot1 img{
    width: 8rem;
}

.foot2 {
    display: flex;
    justify-content: space-around;
    align-items: left;
    width: 50%;

}

.footer p {
    margin: .5rem;
    text-align: left;
}
#copyright{
    margin: 2rem ;
    text-align: center;
}
.social img{
width: 3rem;
}
@media (max-width: 768px) {
    .footer {
        padding: 0.1rem;
        background-color: rgb(255 231 107);
        border-top-left-radius: 0rem;
        border-top-right-radius: 0rem;
    }
    .foot {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .foo{
        margin-top: 1em ;
    }
    #center{
        text-align: center;
    }
    .foot1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .foot1 img{
        width: 8rem;
    }
    
    .foot2 {
        display: flex;
        gap: 4em;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 1em;
    
    }
    
    .footer p {
        margin: .5rem;
        text-align: center;
    }
    #copyright{
        margin: 2rem ;
        text-align: center;
    }
    .social img{
    width: 3rem;
    margin: .4em;
    }
        }
  
 @media (max-width: 480px) {
            
        }