@font-face {
    font-family: poppins;
    src: url(fonts/Poppins.ttf);
}

@font-face {
    font-family: pro;
    src: url(fonts/pro.ttf);
}

:root {
    --background: #FFFFFF;
    --background2: #003366;
    --text: #051145;
    --text2: #000;
    --btn: #2a786b;
    --btnhover: #1c5f54;
}


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

html,
body {
    height: 100%;
    width: 100%;
}

/* book service message */

.book-service a{
    background-color: rgb(191, 239, 20);
    font-size: 2vw;
    padding: 0.7vw 0;
    border: 1px solid #354b10;
    width: 100%;
    color: black;
    font-weight: bold;
    text-align: center;
    position: fixed;
    font-family: 'Times New Roman', Times, serif;
    z-index: 99;
    text-decoration: none;
    overflow-x: hidden;
    }
    .book-service a{
        animation-duration: 3s;
        animation-name: slidein;
      }
      .book-service a {
        display: inline-block;
        animation-duration: 3s;
        animation-name: growshrink;
      }
      
      @keyframes slidein {
        from {
          translate: 150vw 0;
          scale: 200% 1;
        }
      
        to {
          translate: 0 0;
          scale: 100% 1;
        }
      }
      
      @keyframes growshrink {
        25%,
        75% {
          scale: 10%;
        }
      
        60% {
          scale: 120%;
          color: rgb(191, 203, 23);
        }
      }
      .book-service a:before {
        content: '';
        background: linear-gradient(45deg, #d2a8a8, #eb94be, #fffb00, #FFA07A, #F08080, #FAFAD2, #FFFFE0, #90EE90, #E0FFFF, #87CEFA, #ADD8E6, #B0C4DE, #FAFAD2, #EEDD82, #48ff00, #FFB6C1, #00ffd5, #507e96, #b773ff, #6ec0ea);
        position: absolute;
        top: -2px;
        left:-2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(15px);
        width: calc(100%);
        height: calc(100%);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
        opacity: 1;
    
    }
    
    .book-service a:active {
        color: #d70808
    }
    
    .book-service a:active:after {
        background: transparent;
    }
    
    .book-service a:hover:before {
        -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;
        opacity: 1;
        
    }
    
    .book-service a:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    
    @keyframes glowing {
        0% { background-position: 0 0; }
        50% { background-position: 400% 0; }
        100% { background-position: 0 0; }
    }
      
    .call-text a{
        text-decoration: none;
        position: fixed;
        background-color: rgb(93, 233, 109);
        color: rgb(21, 26, 6);
        padding: 0.4vw 0.8vw;
        border: 1px solid #676060;
        z-index: 99;
        font-family: poppins;
        border-radius: 0.2vw;
        right: -4vw;
        rotate: -89.4deg;
        top: 50vh;
        }
        .call-text a:hover{
            background-color: #096822;
            color: #f3f710;
            box-shadow: 15px 15px 666px;
            border-radius: 10px;
        }
        .call-text a {
            -webkit-animation: action 1s infinite  alternate;
            animation: action 1s infinite  alternate;
        }
        
        @-webkit-keyframes action {
            0% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }
        
        @keyframes action {
            0% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }
    
/* end book service message */


/* start page1 */

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 5vh;
    height: 20vh;
}

.navbar a {
    text-decoration: none;
}


.nav-left img{
    height: 35vh;
    width: 14vw;
    margin-top: 10vh;
}

.nav-center {
    display: flex;
    gap: 2vw;
    font-size: 1.3vw;
    text-transform: capitalize;
margin-top: 8vh;
}

.nav-center a {
    color: var(--text2);
}

.nav-right {
    font-size: 1.2vw;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--btn);
    padding: 1vw 2.5vw;
    border-radius: 2vw;
margin-top: 8vh;
}

.nav-right a {
    font-family: poppins;
    color: var(--background);
}

.nav-right:hover {
    background-color: var(--btnhover);
}

.hamburger {
    margin-left: 93vw;
    margin-top: -7vh;
    display: none;
}

.hamburger i {
    font-size: 2.2vw;
    cursor: pointer;
}


/* navbar for mobile */

.navbar-mobile {
    background-color: var(--background2);
    position: absolute;
    z-index: 2;
    margin-top: -30vh;
    height: 100vh;
    width: 100%;

    display: none;
}

.navbar-mobile i {
    font-size: 3vw;
    color: var(--background);
    margin-left: 75vw;

}

.close-icon {
    margin-top: 5vh;
    margin-left: 6vw;
    cursor: pointer;


}

.navbar-mobile a {
    text-decoration: none;
    color: #FFFFFF;
    text-transform: capitalize;
    font-size: 3vw;
    font-family: poppins;
    display: flex;
    justify-content: center;
    margin-top: 4vh;
    margin-bottom: 1vw;

}

/* end page1 */

/* start page2 */
#page2{
    min-height: 100vh;
    width: 100%;
    
    margin-top: 5vh;
}

#page2 h3{
    font-size: 3vw;
    padding-top: 5vh;
    font-family: poppins;
    text-align: center;
    color: #222;
    padding-bottom: 3vh;
    box-shadow: 0 0 0.2vw #333333ae;


}

.about-content{
    margin-top: 5vh;
    box-shadow: 0 0 0.2vw #333333ae;
    padding: 5vh 0;
    margin-right: 3vw;
    margin-left: 3vw;
}
.about-content h4{
    font-size: 3vw;
    font-family: poppins;
    text-align: center;
    color: var(--text);
}

.about-content p{
    margin-top: 3vh;
    text-align: center;
    margin-right: 3vw;
    margin-left: 3vw;
    
}



.page4-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-left: 5.5vw;
    margin-top: 10vh;
}

#page2 h6{
    text-align: center;
    color: var(--btn);
    font-size: 1vw;
}

.card {
    height: 80vh;
    width: 28vw;
    background-color: rgba(128, 128, 128, 0.286);
    border-radius: 8px;
    cursor: pointer;
    transition: all linear 0.3s;
}

.card img{
    margin-left: 10vw;
}

.card p{
    text-align: center;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 2vh;
}

#card1 img{
    height: 20vh;
    width: 9vw;
    border-radius: 50%;
   
    margin-top: 8vh;
}

#card2 img{
    height: 20vh;
    width: 9vw;
    border-radius: 50%;
   
    margin-top: 8vh;
}

#card3 img{
    height: 20vh;
    width: 9vw;
    border-radius: 50%;
   
    margin-top: 8vh;
}

#card1 h2{
    text-align: center;
    margin-top: 3vh;
    color: var(--text);
    font-family: poppins;
}


#card2 h2{
    text-align: center;
    margin-top: 3vh;
    color: var(--text);
    font-family: poppins;
}


#card3 h2{
    text-align: center;
    margin-top: 3vh;
    color: var(--text);
    font-family: poppins;
}


#card4 h2{
    text-align: center;
    margin-top: 3vh;
    color: var(--text);
    font-family: poppins;
}


/* end page2 */



.page4-part2 {
    height: 40vh;
    width: 100%;
    background-color: beige;
    margin-top: 2vh;

}

.page4-part2 h6 {
    font-size: 2.2vw;
    color: #000;
    text-transform: capitalize;
    padding-top: 5vh;
    text-align: center;
    font-weight: 700;
    font-family: poppins;
}

.page4-part2 h5 {
    font-size: 3vw;
    text-align: center;
    font-weight: 700;
    font-family: poppins;
    color: var(--text);
    margin-bottom: 7vh;
}

.page4-part2 a {
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--btn);
    padding: 1vw 2vw;
    border-radius: 3vw;
    text-decoration: none;
    color: var(--background);
    font-family: poppins;
    margin-left: 41vw;
}

.page4-part2 a:hover{
    background-color: var(--btnhover);
    transition: all linear 0.3s;
}

#page5{
    height: 90vh;
    width: 100%;
    background-color: var(--background2);
}

.footer img{
    height: 30vh;
    width: 48vh;
    margin-top: -3vh;
}


.footer h6{
    color: var(--background);
    font-weight: normal;
    font-size: 1.2vw;
    margin-left: 3vw;
    
}

.footer-icons{
 position: relative;
 top: 4vh;
 margin-left: 10vw;

}


.footer i{
    color: var(--background);
    font-size: 2vw;
 margin-left: -4vw;   
}

.footer-part2{
    display: flex;
    justify-content: flex-end;    
    align-items: center;
    margin-top: -32vh;
    gap: 2vw;
}

.footer-part2 a{
    font-size: 1.8vw;
    text-transform: capitalize;
    text-wrap: balance;
}

.footer a{
    text-decoration: none;
    margin-right: 5vw;
    text-transform: capitalize;
    color:#B5E203;
    font-family: poppins;
}

.service-part{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-right: 13vw;
    margin-top: 3vh;
    gap: 2vh;
}

.service-part a{
    color: #fff;
    font-size: 1.2vw;

}
.service-part a:hover{
    color:#676060;
}


.city-part{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: -53vh;
    gap: 1vh;
}

.city-part a{
 color: #fff;   
 font-size: 1.2vw;
}

.city-part a:hover{
    color: #676060;
}


.copyright p{
margin-top:18vh;
text-align: center;
color: var(--background);
}


/* end page6 */

/* responsive  */

@media (max-width:440px) {


    /* book service message */

    .book-service a {
        font-size: 4vw;
        padding: 3vw 0;
        z-index: 99;
    }

    /* end book service message */

    /* page1 media query - 440px */

    #page1 {
        height: 20vh;
        width: 100%;
    }

.nav-left img{
    width: 50vw;
}


    .nav-center a {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger i {
        font-size: 10vw;
        margin-left: -8vw;
        
    }

    .hamburger {
        margin-top: -7vh;
        display: block;
    }

    .nav-left a {
        font-size: 7vw;
        margin-left: -24vw;
    }

    .page1-content h1 {
        font-size: 8.5vw;
        margin-left: -6vw;
        margin-top: -8vh;
    }

    .page1-content h1:nth-child(2) {
        font-size: 7vw;
    }

    .page1-content p {
        font-size: 4.1vw;
        margin-left: -10vw;
        margin-top: 0;
    }

    .page1-btns {
        display: flex;
        flex-direction: column;
        gap: 4vh;
        margin-left: 12vw;
        margin-top: 7vh;
    }

    .page1-btns a {
        padding: 4vw 0vw;
        width: 60%;
        font-size: 4vw;
        text-align: center;
    }

    .page1-btns a:nth-child(2) {
        width: 75%;
        margin-left: -6vw;
    }


    .navbar-mobile i {
        font-size: 11vw;
        margin-left: 5vw;


    }

    .navbar-mobile a:hover {
        background-color: orange;


    }

    .close-icon {
        margin-top: 27vh;
        margin-left: 80vw;
    }

    .navbar-mobile {
        height: 109vh;

    }

    .navbar-mobile a {
        font-size: 8vw;
    }

    /* end media for page1 */

/* start page2 */

#page2 h3{
    margin-top: -3vh;
    font-size: 10vw;
    border-bottom: 1px solid #656464;
}


#page2 h6{
    font-size:3vw;
}
.about-content h4 {
    margin-top: -3vh;
    font-size: 8vw;
}

.about-content p {
    font-size: 4.5vw;
    padding-bottom: 0vw;
}

.page4-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 5vw;
    margin-left: 15vw;
    margin-top: 5vh;
}

.card {
    height: 42vh;
    width: 70vw;
    background-color: rgba(128, 128, 128, 0.286);
    border-radius: 8px;
    cursor: pointer;
    transition: all linear 0.3s;
}

.card img{
    margin-left: 22vw; 
    
}


#card1 img{
    height: 13vh;
    width: 25vw;
    border-radius: 50%;
    margin-top: 2vh;
}

#card2 img{
    height: 13vh;
    width: 25vw;
    border-radius: 50%;
    margin-top: 2vh;
}

#card3 img{
    height: 13vh;
    width: 25vw;
    border-radius: 50%;
    margin-top: 2vh;
}

.card p{
    text-align: center;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 2vh;
    font-size:3vw;
    font-weight: normal;
    text-wrap: balance;
}



/* end page2 */

/* page4 part 2 start */
.page4-part2{
    height: 27vh;
    width: 100%;
    position: relative;
    margin-top: 4vh;
    bottom: 1vh;
    margin-bottom: 5vh;
    background-color: #c5c3c3a7;
}

.page4-part2 h6{
    font-size: 5vw;
    padding-top: 4vh;
}

.page4-part2 h5{
    font-size: 5vw;
margin-bottom: 3vh;    
}

.page4-part2 a{
    font-size: 4vw;
    padding: 2vw 8vw;
    margin-left:30vw;

}

/* page4 part 2 end */

/* end page 4 */

/* page 5 start */
#page5{
    height: 90vh;
    width: 100%;
    background-color: var(--background2);
    margin-top: -6vh;
    overflow-y: hidden;
}

.footer img{
    margin-left: 18vw;
    height: 20vh;
    width: 30vh;
    margin-top: -2vh;
}



.footer h6{
    color: var(--background);
    font-weight: normal;
    font-size: 3.3vw;
    text-wrap: nowrap;
    margin-left: 15vw;
    margin-top: -4vh;

}

.footer-icons{
 position: relative;
 top: 3vh;
 margin-left: 25vw;

}


.footer i{
    color: var(--background);
    font-size: 6vw;
 margin-left: -1vw;   
}



.footer-part2{
    display: flex;
    justify-content: flex-start;    
    margin-top: 7vh;
    margin-left:-1vw;
    gap: 0.5vw;
}

.footer-part2 a{
    font-size: 5vw;
    text-transform: capitalize;
    font-size: 4vw;
    margin-left: 22vw;
}


.footer-part2 a:nth-child(1){
display: none;
}


.footer-part2 a:nth-child(2){
    display: none;
    }
    

.footer-part2 a:nth-child(3){
    position: absolute;
    margin-top: 0vh;
    margin-left: 20vw;
    }
    


.footer-part2 a:nth-child(4){
    margin-left: 75vw;
}


.footer a{
    text-decoration: none;
    margin-right: 5vw;
    text-transform: capitalize;
    color:#B5E203;
    font-family: poppins;
}

.service-part{
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    margin-top: 3vh;
    gap: 1vh;
    margin-right: 40vw;
}

.service-part a{
    color: #fff;
    font-size: 3.5vw;

}
.service-part a:hover{
    color:#676060;
}


.city-part{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: -33vh;
    margin-right: 3vw;
    gap: 1vh;
}

.city-part a{
 color: #fff;   
 font-size: 3.5vw;
}

.city-part a:hover{
    color: #676060;
}


.copyright p{
margin-top: 12vh;
text-align: center;
color: var(--background);
font-size: 3.5vw;
}

/* page 5 end */


}

/* responsive for dektop */
@media (min-width:1500px){

    .nav-left img{
        width: 20vw;
    }

    .nav-center a{
        font-size: 1.7vw;
    }

    #page2 h3{
        font-size: 4vw;
    }

    .about-content h4 {
        font-size: 4vw;
    }


    .about-content p {
        font-size: 1.2vw;
    }

    .card{
        height: 58vh;
        width: 28vw;
        background-color: rgba(128, 128, 128, 0.286);
        border-radius: 0.5vw;
    
    }

    .card p{
        font-size: 1.2vw;
    }

    #card1 img {
        height: 30%;
        width: 40%;
        border-radius: 50%;
        margin-top: 6vh;
        margin-left: 8vw;
    
    }

    #card1 h2{
        font-size: 2.2vw;
    }

    #card1 h6{
        font-size: 1.2vw;
    }


    #card2 img {
        height: 30%;
        width: 40%;
        border-radius: 50%;
        margin-top: 6vh;
        margin-left: 8vw;
    }

  
    #card2 h2{
        font-size: 2.2vw;
    }

    #card2 h6{
        font-size: 1.2vw;
    }

    #card3 img {
        height: 30%;
        width: 40%;
        border-radius: 50%;
        margin-top: 6vh;
        margin-left: 8vw;
    }

   
    #card3 h2{
        font-size: 2.2vw;
    }

    #card3 h6{
        font-size: 1.2vw;
    }

.page4-part2{
    height: 35vh;
}

#page5{
    height: 85vh;
    padding-top: 4vh;
}

.city-part{
    margin-top: -39vh;
}

.copyright p{
    margin-top: 22vh;
    font-size: 1.2vw;
}

}

/* End responsive for dektop */