@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    scrollbar-width: none;
}

/* .......Navbar messege........ */

.nav-msg{
    width: 100%;
    height: 40px;
    color: #ffffff;
    background-color: #00035c;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-msg a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
}

.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}



/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #17223a;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 120px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}


.menu ul li a {
    color: #17223a;
    text-decoration: none;
    padding: 10px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    background: linear-gradient(to left, #ffffff 50%, #9c3c9b 50%) right;
    background-size: 260%;
    border-radius: 5px;
}

.menu ul li a:hover{
    background-position: left;
    color: #ffffff;
}



.nav-contact {
    display: flex;
    align-items: center;
}

#nav-para a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

#nav-btn{
    background-color: #9c3c9b;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    margin-left: 20px;
    font-size: 18px;
}


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #9c3c9b;
    color: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 40px;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 50px;
}

@media (max-width: 768px) {
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        background-color: #9c3c9b;
        font-size: 35px;
        padding: 10px;
    }

}

.sidebar.open {
    display: block;
    transform: translateX(0);
}








/* .......Popup........ */



 #popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 570px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
    box-sizing: border-box;
  }

  #popup .popup-content {
    display: flex;
    height: 100%;
  }

  #popup .popup-left {
    width: 50%;
    height: 100%;
    background-image: url('images/Kumbh-popup.png');
    background-size: cover;
    background-position: right;
    border-radius: 8px 0px 0 8px;
  }

  #popup .popup-right {
    width: 50%;
    padding: 20px;
  }

  #popup .popup-right h2 {
    margin-bottom: 10px;
    font-size: 35px;
  }

  #popup .popup-right p {
    margin-bottom: 30px;
    font-size: 23px;
    line-height: 1.4;
    color: #2b2b2b;
    font-weight: 400;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 34px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 0px 0px 8px 8px;

    &:hover{
        background-color: #f0f0f0;
    }
  }

  /* Background Overlay */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }

  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
  }

  .Email-Phone{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #email,#phone{
    width: 48%;
  }


  input, textarea {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 2px;
    border: 1px solid #9c9c9c;
    font-size: 15px;
  }



  .submit-message{
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .submit-message button {
    padding: 10px;
    background-color: #d326d0;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 30%;
    margin-right: 10px;

    &:hover{
        background-color: #9c3c9b;
    }
  }


  .captcha-container {
    margin: 2px 0;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 50px;
    gap: 10px;
  }
  .captcha-box {
    font-weight: bold;
    font-size: 18px;
    padding: 8px;
    
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 35px;
    width: 75px;
    user-select: none;
    position: relative;
    overflow: hidden;
  }
  .captcha-over{
    position: absolute;
    height: 35px;
    width: 75px;
    background: #c9c9c954;
  }
  .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
  }
  #captchaInput{
    margin-top: 12px;
  }

  .captcha-container button {
    padding: 8px 10px;
    background: #c3c3c3;
    color: #000;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
  }


  @media(max-width: 760px){
    #popup {
        width: 90%;
        height: auto;
    }

    #popup .popup-content {
        flex-direction: column;
    }

    #popup .popup-left {
        width: 100%;
        height: 600px;
        background-image: url('images/Kumbh-popup.png');
        background-size: cover;
        background-position: center;
        border-radius: 8px 8px 0 0;
    }


    #popup .popup-right {
        width: 100%;
        height: 50%;
        padding: 20px;
    }

    #popup .popup-right h2 {
        font-size: 60px;
    }

    #popup .popup-right p {
        font-size: 40px;
    }

    .close-btn {
        top: 0px;
        right: 40px;
        font-size: 80px;
        padding: 10px 15px;
        background-color: #fff;
        border-radius: 0px 0px 15px 15px;
    }

    input, textarea {
        font-size: 40px;
        border: 1px solid #545454;
        padding: 20px;
    }
    .Email-Phone{
        flex-direction: column;
    }
    #email,#phone{
        width: 100%;
    }
    .submit-message button{
        font-size: 40px;
        padding: 20px;
        margin-top: 40px;
        width: 100%;
    }
    .submit-message{
        flex-direction: column;
    }
    .submit-message span{
        margin-top: 20px;
        font-size: 40px;
    }


    .captcha-container{
        margin-top: 40px;
    }

    .captcha-box{
        height: 80px;
        width: 230px;
        font-size: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .captcha-over{
        height: 80px;
        width: 180px;
    }

    .captcha-container button{
        font-size: 40px;
        padding: 20px;
    }



  }







/* .....heroSection....... */
#form-phone-view{
    display: none;
}
.hero-section{
    width: 100%;
    height: 620px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    overflow: hidden;
    background-image: url(/images/home-img-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;

}

/* #myVideo{
    width: 100%;
    z-index: -1;
} */

/* .hero-section::after{
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 0, 58, 0.732);
} */

/* .hero-info{
    position: absolute;
    top: 20%;
    left: 5%;
    right: 5%;
    color: white;
    display: flex;
} */

.color{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.475);
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 30px 0px 30px 40px;
}

.hero-content{
    display: flex;
    justify-content: start;
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 54px;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-top: 50px;
}

.hero-heading{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.hero-content .hero-heading h2{
    margin-bottom: 20px;
}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.hero-content .hero-btn button{
    background-color: #9c3c9b;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}



/* form//////////////////// */


.wrapper{
    /* margin-top: 10px; */
    width: 415px;
    background: #d1f6f26b;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.051);
    padding-bottom: 5px;
    margin-top: -20px;
  }
  .wrapper header{
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
    text-align: center;
  }
  .wrapper form{
    margin: 35px 30px;
  }
  .wrapper form.disabled{
    pointer-events: none;
    opacity: 0.7;
  }
  form .dbl-field{
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
  }
  .dbl-field .field{
    height: 40px;
    display: flex;
    position: relative;
    width: 100%;
    margin-top: -10px;
  }
  .wrapper form i{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #ccc;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
  }
  form .field input,
  form .message textarea{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .field input::placeholder,
  .message textarea::placeholder{
    color: #ccc;
  }
  .field input:focus,
  .message textarea:focus{
    padding-left: 47px;
    border: 2px solid #9c3c9b;
  }
  .field input:focus ~ i,
  .message textarea:focus ~ i{
    color: #d326d0;
  }
  form .message{
    position: relative;
  }
  form .message i{
    top: 30px;
    font-size: 20px;
  }
  form .message textarea{
    min-height: 130px;
    max-height: 230px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
  }
  form .message textarea::-webkit-scrollbar{
    width: 0px;
  }
  .message textarea:focus{
    padding-top: 14px;
  }
  form .button-area{
    margin: 25px 0;
    display: flex;
    align-items: center;
  }
  .button-area button{
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #9c3c9b;
    width: 100%;
    transition: background 0.3s ease;
  }
  .button-area button:hover{
    background: #e92ce6;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }


/* ......highlights Box........ */



.edu-box{
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    height: 200px;
    margin-top: -50px;
    position: absolute;
}

.size{
    margin: 0 30px;
    margin-right: 30px;
    width: 300px;
    height: 100%;
    border-radius: 5px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgb(160, 206, 255) 0px 20px 30px -10px;
    transition: all .5s ease;
    border-bottom: 4px solid #d326d0;
}

.img-headin {
    text-align: center;
    color: rgb(0, 0, 0);
}

.img-headin img{
    text-align: center;
    margin-bottom: 15px;
    /* background-color: #003153; */
    /* padding: 0px; */
    /* border-radius: 50%; */
}

#highlights-img{
    width: 50px;
}

.img-headin h3{
    font-size: 20px;
}

.img-headin p{
    color: gray;
    font-size: 16px;
    padding: 10px;
}

.img-headin a{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #9c3c9b;
}

.img-headin button{
    padding: 10px 20px;
    margin-top: 10px;
    background-color: white;
    border: none;
    border-radius: 8px;
}




/* .....service Section........ */



.service-container{
    width: 100%;
    height: 600px;
    margin-top: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-info{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.service-headingh{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 60%;
}

.service-headingh h2{
    margin-top: 60px;
    font-size: 48px;
    color: #17223a;
    font-family: sans-serif;
}

.service-headingh p{
    font-size: 17px;
    color: gray;
}

.service-photo{
    display: grid;
    width: 85%;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    /* position: relative; */
    row-gap: 60px;
}

.service-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-box h3{
    text-align: center;
    font-size: 25px;
}
.photo-box img{
    border-radius: 8px;

}



/* ......impression......... */


.imp-back-color{
    display: flex;
    justify-content: center;
    margin-top: 300px;
    width: 100%;
    height: 630px;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    position: relative;
}

.imp-container{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: white;
    text-align: center;
}

.imp-name-para-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: start;
    width: 70%;
    justify-content: center;
}

.imp-highlight-container{
    width: 80%;
    height: 250px;
}

.imp-highlight-point {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-around;
    
}

.imp-highlight-point img{
    width: 30px;
    height: 30px;
}

.imp-container p{
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 1px;
}

.imp-box-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 240px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.236);
    border-radius: 6px;
    margin-top: -50px;
}

.imp-heading{
    width: 100%;
    display: flex;
    justify-content:center ;
    padding: 15px 0;

}

.imp-para p{
    line-height: 1.5;
}
.imp-box-info img{
    margin-bottom: 10px;
}

.imp-box-info h3{
    margin-bottom: 15px;
    text-align: center;
}



/* ......About Section......... */

.about-container{
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 600px;
    padding: 70px;
}

.about-details{
    margin-right: 15px;
}

.about-details h2{
    color: #17223a;
    font-size: 45px;
}

.about-details p{
    color: #788399;
    font-size: 16px;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.about-img img{
    width: 600px;
}

.learn-btn{
    padding: 15px 25px;
    background-color: #d326d0;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}


/* ....Our Buses........  */

.Bus-container{

    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;  
    background: rgb(65,9,121);
    background: linear-gradient(332deg, rgba(65,9,121,1) 54%, rgba(0,86,255,1) 100%);
    color: #ffffff;
    }

.Bus-container h3{
    margin-top: 30px;
    font-size: 45px;
}

.Bus-container p{
    width: 70%;
    text-align: center;
    margin-top: 10px;
}

.bus-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-section{
    display: flex;
    justify-content: space-around;
    height: 400px;
    width: 80%;
    margin-top: 40px;

}
.bus-img-box{
    width: 300px;
    height: 350px;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.bus-name-heading{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bus-img-box img{
    height: 230px;
}

.bus-img-box h3{
    color: #17223a;
    font-size: 26px;
    text-align: center;
}

.bus-img-box p{
    color: #000000;
    font-size: 16px;
    text-align: center;
}


/* Destinations */

.fev-des-container {
    width: 100%;
    height: auto;
    scrollbar-width: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(249, 255, 252) 50%, rgb(0, 8, 255) 100%);
}

.fev-des-headingh-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 120px;
}

.fev-des-headingh-box h2 {
    font-size: 45px;
}

.fev-des-headingh-box p {
    font-size: 16px;
    padding: 12px 100px;
    text-align: center;
    line-height: 1.5;
}

.fev-Img-box-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 40px 60px;
    width: 100%;
    height: auto;
}

.fev-box-container {
    display: flex;
    flex-direction: column;
    width: 260px;
    height: auto;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 8px;
    margin-right: 40px; /* Add space between boxes */
    padding: 5px;
    flex-shrink: 0; /* Prevent shrinking when scrolling */
    transition: all .3s ease-in-out;
}

.fev-box-container:hover{
    transform: scale(1.01);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.fev-img-in {
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
} 

.fev-img-in img {
    height: 300px;
    width: 250px;
    object-fit: cover;
}

.fev-img-contant{
    height: auto;
    padding: 10px 0 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fev-img-contant h3{
    font-size: 24px;
    color: #d326d0;
    /* padding: 10px 0 15px 0px; */
}



.fev-img-contant a {
    padding: 7px;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    background-color: #375185;
    margin-top: 10px;
    border-radius: 4px;
    width: 160px;
    text-align: center;
    font-weight: 600;

    &:hover{
        opacity: .7;
    }

}



.scroll-button {
    /* position: absolute; */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.712);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.dis-scrolling-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.dis-scrolling-btn button{
    height: 40px;
}
.scroll-left {
    margin-top: -300px;
    left: 10px;
}

.scroll-right {
    right: 10px;
    margin-top: -300px;

}
/* .......review.........  */



.review-main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 550px;
    background: rgb(255,255,255);
    background: linear-gradient(360deg, rgba(255,255,255,1) 0%, rgb(249, 255, 252) 16%, rgb(0, 8, 255) 100%);
}

.review-container{
    margin-top: 90px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 500px;
}

.review-box{
    width: 350px;
    height: 500px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    
}

.review-info{
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: start;
}


.review-info h2{
    font-size: 48px;
}
.review-info p{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.review-info button{
    background-color: #ffffff;
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 25px;
    /* margin-left: -70px; */
    border: 1px solid black;
    border-radius: 8px;
}

.review-box img{
    width: 50px;
    border-radius: 50%;
    margin-top: 15px;
}

.review-box p{
    font-size: 15px;
    color: #293348;
    line-height: 1.1;
    padding: 10px;
    text-align: justify;
}

.review-box h3{
    font-size: 25px;
    color: #17223a;
    margin-bottom: 10px;
}

.review-box a{
    text-decoration: none;
    font-size: 18px;
    margin-top: 10px;
}



/* ........Footer............  */




.footer-container{
    background-color: #10106f;
    width: 100%;
    display: flex;
    justify-content:center ;
    margin-top: 50px;
}

.footer-box{
    width: 95%;
    height: 330px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 25%;
    margin-top: 40px;
}

.fsize hr{
    margin-bottom: 25px;
    width: 80%;
}

.fsize p{
    margin-top: 10px;
    color: #ffffff;
    font-size: 28px;
    font-family: 900;
}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    color: #ffffff;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.fbox3 .cont-name{
    font-size: 20px;
    color: #ffffff;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #ffffff;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #ffffff;
}
.footer1{
    height: 50px;
    width: 100%;
    background-color: rgb(0, 1, 40);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer1 a{
    color: #cfcfcf;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all .5s ease;
    text-decoration: none;
}

.footer1 a:hover{
    text-decoration: none;
    color: yellow;
    font-size: 17px;
    text-decoration: none;

}

.F-logo img{
    margin-top: 30px;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}



/* icon  */
.footer__social{
    width: 43%;
    display: flex;
    justify-content: center;
}
.footer__icon {
    font-size: 25px;
    color: #fff;
    margin: 5px;
    transition: color .3s;
}

.footer__icon:hover {
    color: red;
}









@media only screen and (max-width: 1064px) {
    .nav-msg{
        width: 1064px;
    }
    .nav-container{
        width: 1064px;
    }
    .hero-section{
        width: 1064px;
    }
    .hero-content{
        margin-top: 50px;
    }
    .hero-heading{
        width: 400px;
    }
    .hero-form{
        margin-top: 10px;
    }
    .edu-box{
        width: 1064px;
    }
    .service-container{
        width: 1064px;
    }
    .imp-back-color{
        width: 1064px;
    }
    .imp-box-info{
        margin-right: 10px;
    }
    .about-container{
        width: 1064px;
    }
    #hide-para{
        display: none;
    }
    .Bus-container{
        width: 1064px;
    }
    .bus-img-box{
        margin-right: 10px;
    }
    .fev-des-container{
        width: 1064px;
    }
    .review-main-container{
        width: 1064px;
    }
    .review-box{
        margin-right: 10px;
    }
    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }
  }




  @media only screen and (max-width: 760px){
        .location-hide{
            display: none;
        }
        .menu ul{
            display: none;
        }
        #menu-bar{
            display: initial;
            margin-left: 30px;
        }
        .hero-section{
            height: 950px;
            background-position: center;
        }
        .hero-heading{
            width: 100%;
        }
        .hero-form{
            margin-top: 0;
        }
        #desktop-view{
            display: none;
        }
        #form-phone-view{
            display: initial;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 1060px;
            height: 700px;
            margin-top: 25px;
        }






.form-container{
    margin-top: 250px;
        height: 1000px;
        width: 90%;
    }
    .wrapper{
        height: 1000px;
        width: 100%;
        background-color: #e1e1e1;

    }
    .wrapper header{
      text-align: center;
      font-size: 50px;
    }
    .wrapper form{
      margin: 45px 20px;
      
    }
    form .dbl-field{
      flex-direction: column;
      margin-bottom: 0px;
    }
    .field .fas{
        font-size: 40px;
    }
    .message .material-icons{
        font-size: 50px;
    }
    form .dbl-field .field{
      width: 100%;
      height: 115px;
      margin-bottom: 30px;
    }
    form .field input{
        font-size: 40px;
       padding-left: 80px;
      }
    form .message textarea{
      resize: none;
      font-size: 40px;
      height: 600px;
      padding-left: 80px;
    }
    form .button-area{
      margin-top: 20px;
      flex-direction: column;
    }
    .button-area button{
      width: 100%;
      height: 85px;
      padding: 11px 0;
      font-size: 40px;
    }
    .button-area span{
      margin: 20px 0 0;
      text-align: center;
      font-size: 40px;
    }







        .edu-box{
            display: flex;
            flex-direction: column;
            position: relative;
            margin-top: 280px;
            height: auto;
            padding: 50px 0;
        }
        .size{
            margin-top: 50px;
            width: 900px;
            height: 400px;
        }


        .service-container{
            height: auto;
            margin-top: 70px;
        }
        .service-photo{
            display: grid;
            width: 900px;
            grid-template-columns: repeat(2, 1fr);
        }

        .imp-back-color{
            height: 2500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 120px;
        }
        .imp-highlight-point{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-top: -300px;
            height: auto;
        }
        .imp-box-info{
            /* margin-top: -250px; */
            height: 300px;
            width: 765px;
            margin-top: 25px;
        }
        .imp-name-para-container{
            margin-top: -120px;
        }
        .imp-highlight-container{
            /* height: 160px; */
            margin-top: -120px;
        }
        .about-container{
            height: 1350px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .about-details{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            text-align: center;
        }
        #hide-para{
            display: initial;
        }
        .about-img img{
            width: 765px;
        }
        .Bus-container{
            height: 1500px;
        }
        .img-section{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 1200px;
        }
        .bus-img-box{
            width: 765px;
            height: 500px;
            margin-top: 10px;

        }
        .bus-img-box img{
            height: 400px;
        }

        .review-main-container{
            height: 900px;
            margin: 0;
            padding: 0;
        }
        .review-container{
            display: flex;
            /* flex-direction: column; */
            flex-wrap: wrap;
            margin-top: -90px;
            padding: 0;
        }
        .review-info{
            width: 765px;
            height: 230px;
            margin-top: 0;

        }
        .review-info button{
            display: none;
        }
        .review-box{
            width: 400px;
        }



        .footer-container{
            height: 600px;
        }
        .footer-box{
            display: flex;
            flex-wrap: wrap;
        }
        .fsize{
            width: 400px;
        }
  }





  /*Media querie  only font size////////// */




  @media only screen and (max-width: 760px){
    #location{
        font-size: 25px;
    }
    .nav-msg a{
        font-size: 30px;
    }
    .form-fill .from{
        font-size:30px;
    }
    .form-fill .form-btn{
        font-size: 30px;
    }


    .img-headin img{
        width: 90px;
    }
    #highlights-img{
        width: 90px;
    }
    .img-headin h3{
        font-size: 50px;
    }
    .img-headin p{
        font-size: 40px;
    }
    .img-headin a{
        font-size: 30px;
    }



    .service-headingh{
        width: 950px;
        height: auto;
        padding: 50px 0;
    }
    .service-headingh h2{
        font-size: 50px;
    }
    .service-headingh p{
        font-size: 40px;
        text-align: justify;
        width: 100%;
    }



    .service-container{
        height: auto;
    }
    .service-photo h3{
        font-size: 50px;
    }
    .photo-box{
        height: auto;
        padding: 40px 0;
    }





    .imp-container h2{
        font-size: 55px;
    }

    .imp-name-para-container{
        width: 90%;
    }

    .imp-para{
        width: 900px;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .imp-para p{
        font-size: 40px;
        color: rgb(228, 228, 228);
        text-align: justify;
        padding: 0;
        margin: 0;

    }




    .imp-name-para-container{
        margin-top: -400px;
    }
    .imp-highlight-point{
        height: 1500px;
        margin-top: -800px;
        /* margin: 0; */
    }
    .imp-box-info img{
        width: 90px;
        height: 90px;
    }
    .imp-box-info p{
        font-size: 40px
    }




    .about-container{
        height: auto;
    }
    .about-details{
        width: 1000px;
        padding: 50px 0;
    }
    .about-details h2{
        font-size: 65px;
    }
    .about-details p{
        font-size: 45px;
        text-align: justify;
    }
    .learn-btn{
        font-size: 35px;
    }
    .about-img {
        width: 1000px;
        overflow: hidden;
        border-radius: 20px;
    }
    .about-img img{
        width: 100%;
    }





    .Bus-container{
        height: auto;
        padding: 50px 0;
    }
    .bus-details{
        width: 1000px;
    }
    .bus-details h3{
        font-size: 55px;
    }
    .bus-details p{
        font-size: 45px;
        width: 90%;
        text-align: justify;
        color: rgb(226, 226, 226);
    }
    .img-section{
        height: auto;
        padding: 40px 0;
    }
    .bus-img-box{
        width: 1000px;
        margin-top: 30px;
    }
    .bus-img-box h3{
        font-size: 55px;
        width: 100%;
    }
    .bus-img-box p{
        font-size: 45px;
        width: 100%;
    }




    .fev-Img-box-container{
        height: auto;
    }
    .fev-des-headingh-box h2{
        font-size: 55px;
    }
    .fev-img-contant h3{
        font-size: 45px;
        margin-top: 50px;
    }
    .fev-des-headingh-box p{
        font-size: 35px;
        width: 100%;
        padding: 30px;
    }
    .fev-box-container{
        height: auto;
        width: 500px;
        padding: 20px 30px 40px 25px;
    }
    .fev-img-in{
        width: 450px;
    }
    .fev-img-in img{
        width: 100%;
        object-fit: cover;
    }

    .fev-img-contant a{
        font-size: 30px;
        width: 100%;
    }
    #dis-btn{
        font-size: 35px;
    }





    .review-main-container{
        padding-top: 200px;
        height: 2500px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .review-container{
        display: flex;
        justify-content: center;
        align-items: start;
        height: 1000px;
    }
    .review-box{
        height: auto;
        width: 800px;
        margin-top: 30px;
        padding: 40px;
    }
    .review-box-phone{
        margin-top: 100px;

    }
    .review-info{
        width: 1000px;
    }
    .review-info p{
        font-size: 45px;
        color: #e7e7e7;
        width: 95%;
        margin-left: 30px;
    }
    .review-info h2{
        margin-left: 30px;
        width: 100%;
        font-size: 55px;
        color: #ffffff;
    }
    .review-info button{
        font-size: 30px;
    }
    .review-box p{
        font-size: 45px;
    }
    .review-box img{
        width: 90px;
    }
    .review-box h3{
        font-size: 45px;
    }





    .footer-container{
        height: 600px;
    }
    .footer-box{
        display: flex;
        flex-wrap: wrap;
    }
    .fsize{
        width: 100%;
    }
    .footer-container{
        height: 2000px;
    }
    .fsize p{
        margin-top: 50px;
        font-size: 45px;
    }
    .fsize ul li{
        font-size: 40px;
    }
    .fbox3 .cont-name{
        font-size: 55px;
    }
    .fbox3 .fAddre{
        font-size: 40px;
        margin-top: 30px;
    }
    .fbox3 .fphone{
        font-size: 40px;
        margin-top: 30px;
    }
    .footer1{
        display: flex;
        flex-wrap: wrap;
        height: 120px;
    }
    .footer1 p{
        font-size: 40px;
    }
    .footer1 a{
        font-size: 40px;
    }
    
    .footer__icon{
        font-size: 45px;
    }
    .footer__social{
        display: flex;
        margin-left: 20px;
        justify-content: start;
    }



    .footer1{
        display: flex;
        justify-content: center;
    }
    .footer1 p{
        text-align: center;
    }


  }

