*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    max-width: 100%;
}

.moving_line{
   
    background-color: red;
    font-weight: bold;
    height: 40px;
    color: yellow;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    max-width: 100%;
    border: 1px solid transparent;
    border-radius: 16px;
}

#nav_number{
    min-width: 20%;
    border-right: 1px solid white;
    display: flex;
    justify-content: center;
}
.middle_nav div{
   
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 0px;
    padding: 2px;
    max-height: 30vh;
    
   
}
.middle_nav img{
    max-width: 30%;
}

.middle_nav>div>img:last-child{
    min-width:40%;
  
}

.banner img{
    
    min-width: 100%;
    max-height: 80vh;
    margin-bottom: 2rem;
    z-index:-10
}
.banner-1{
    min-width: 100%;
    margin-bottom: 2rem;
    z-index:-10
}
.hilight div{
    
    max-width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    font-size: xx-large;
    color: white;
    justify-items: center;
    align-items: center;
    line-height: 3rem;
    word-spacing: 1rem;
    padding: 1.5rem;
    font-family: 'TiroDevanagari', sans-serif;
    text-align: center; /* To center-align the text */
    border:2px solid transparent;
    z-index: 100;
    border: 2px solid black;
    border-radius: 2rem;
}
.hilight > div > span:last-child {
    color: yellow;
    /* Glow effect specifically for the last span */
    text-shadow: 0 0 10px yellow, 0 0 20px yellow, 0 0 30px yellow;
    animation: blink 2s ease-in-out infinite; /* Apply the blinking animation */
}
.about{
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.about img{
    margin-top: 2rem;
    max-width: 100%;

}
.services_section{
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
}
.services_section h1{
  margin: auto;
  color: black;
  text-align: center;
  font-size: 3.5rem;
  margin: 1rem;
  text-decoration: underline;
}
.services{
     
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    font-family: 'Times New Roman', Times, serif;
}
.services img{
    width: 100%;
    border: 2px solid transparent;
  border-radius:2rem 2rem 0rem 0rem;
  min-height: 60%;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1rem;
    padding: 0.5rem;
}
.content h2{
    color: red;
}
.content p{
    text-align: center;
}
.content button {
    background-color: green;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 2rem;
    color: white;
    font-weight: bold
    
}
.content button:hover{
    cursor: pointer;
}
.card{
  border: 1px solid black;
  border-radius: 2rem;
  padding: 0rem 0rem 1rem 0rem ;
}

footer{
     
    display: flex;   
     max-width: 100%;
     padding: 3rem;
     margin-top: 3rem;
     gap:1rem;
     font-size: large;
     background-color: black;
     color: lightgoldenrodyellow;
     justify-content: space-between;
     font-family: 'Times New Roman', Times, serif;
}

.about-us{
    max-width: 33%;
    
    font-weight: 100;
    text-align: center;
    line-height: 1.5rem;
}
footer h2{
    color: tomato;
    font-size: larger;
    margin:0.2rem ;
    line-height: 1rem;
}
.our-services{

    max-width: 33%;
    line-height: 1.5rem;
}
.cta-container{
    display: flex;
    align-items: center;
}
.cta-logo{
    
    padding: 1rem;
    margin-right: 1rem;
    min-width: 50px;
    
}
.cta-logo i{
   font-size: 30px;
   color-scheme: inherit;
   color:white;
}
.contact h2{
    text-align: center;
    margin-bottom: -0.2rem;
}

.WhatsApp{
    position: sticky;
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 5%;
    z-index: 1000;
    background-color:#25D366;
    border-radius: 50%;
    font-size: 50px;
    color:white;
    border-color:#25D366 ;
}
.phone{
    position: sticky;
    width: 80px;
    height: 80px;
    font-size: 30px;
    bottom: 10%;
    left:93%;
    z-index: 1000;
    background-color: white;
    border-radius: 50%;
    color: blue;
}


.WhatsApp:hover{
    cursor: pointer;
}
/* Keyframes for the blinking animation */
@keyframes blink {
    0% {
        opacity: 1; /* Fully visible at the start */
    }
    50% {
        opacity: 0; /* Fade out in the middle */
    }
    100% {
        opacity: 1; /* Fully visible at the end */
    }
}

@media screen and (max-width: 680px){
    .moving_line{
        font-size: 1rem;
    }
    #nav_number{
        min-width: 30%;
    }
    .middle_nav div{
       flex-direction: column;
       max-height: inherit
    }
    .middle_nav img{
        max-width: 100%;
    }
    .services{
        
        grid-template-columns: repeat(1,1fr);
        
    }
    footer{
        flex-direction: column;
    }
    .about-us{
        min-width: 100%;
        

    }
    .our-services{
        min-width: 100%;
        text-align: center;
    }
    ul{
        list-style-type: none;
    }
    .ctas{
        display: flex;
        flex-direction: column;
       align-items:self-start;
       padding-left: 4.2rem;
        
    }
}