
@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;
}


/* .......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);
}



/* .......hero section.........  */

.hero-section{
    background-image: url(./images/Contact-us.jpg);
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position:right center;

    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}



.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.265);
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 25px;

}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}






/* ///////////Contact Us///////// */


.contact-us-container{
    display: flex;
    justify-content: space-around;
    height: 600px;
}


#cont-headingh{
    margin-top: 90px;
    margin-left: 70px;
    color: #9c3c9b;
    font-size: 45px;
}

.contact-box{
    width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 55px;

}
.contact-size{
    /* width: 25%; */
    margin-top: 30px;
}

.contact-size a{
    text-decoration: none;
}

.contact-size hr{
    margin-top: 5px;
    margin-bottom: 25px;
    width: 70%;
}

.contact-size p{
    margin-top: 10px;
    color: #17223a;
    font-size: 28px;
    font-family: 900;
}

#cont-para{
    margin-top: 10px;
    color: #17223a;
    font-size: 18px;
    font-family: 900;
}

#add-id{
    font-size: 25px;
    color: #9c3c9b;
    margin-top: 30px;
}

#cont-para a{
    color: #17223a;
    text-decoration: none;
}






/* ////// Contact us form/////// */


.form-container{
    display: flex;
    padding: 0 10px;
    min-height: 90vh;
    /* background: #3a89ff; */
    align-items: center;
    justify-content: center;
    width: 60%;
    border: 2px solid #9c3c9b;
    border-radius: 8px;
  }
  ::selection{
    color: #fff;
    background: #9c3c9b;
  }
  .wrapper{
    width: 100%;
    height: 580px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
  }
  .wrapper header{
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
  }
  .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: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
  }
  .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: #9c3c9b;
  }
  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;
    transition: background 0.3s ease;
  }
  .button-area button:hover{
    background: #9c3c9b;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }



  
/* // Captcha /// */

.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;
    color: #000;
    border-radius: 2px;
    height: 35px;
    width: 80px;
    position: relative;
    overflow: hidden;
    user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
  }
  .captcha-over{
    position: absolute;
    height: 35px;
    width: 80px;
    background: #c9c9c954;
    border: 1px solid #ccc;
  
  }
  .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
  }
  #captchaInput{
    padding: 4px;
    font-size: 20px;
  }
  
  .captcha-container button {
    padding: 6px 7px;
    background: #c3c3c3;
    color: #000;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .captcha-container button img{
    width: 25px;
    height: auto;
  }
  



  @media (max-width: 760px){
    .form-container{
        height: 1300px;
        width: 900px;
        margin-top: 120px;
    }
    .wrapper{
        height: 1200px;
        width: 900px;
    }
    .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;
    }


     
.captcha-container{
    margin-top: 50px;
    margin-bottom: 30px;
  }
  
  .captcha-over,
  .captcha-box{
    font-size: 40px;
    width: 200px;
    height: 60px;
  }
  .captcha-container input{
    height: 60px;
    width: 610px;
  }
  #captchaInput{
    font-size: 40px;
  }
  .captcha-container button{
    height: 60px;
    width: 90px;
  }
  .captcha-container button img{
    height: 50px;
    width: auto;
  }
  


  }








/* ///////map///// */

.map{
    margin-top: 20px;
    width: 100%;
    height: 500px;
}





/* ........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;
    line-height: 1.3;
}
.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;

}

.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;
    }
    .contact-us-container{
        width: 1064px;
    }
    .map{
        margin-top: 20px;
        width: 1064px;
    }
    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }

}










@media only screen and (max-width: 760px){
    .hero-section{
        height: 1100px;
        background-position: center;
    }
    .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: 765px;
        display: flex;
        justify-content: center;
        align-items: center;
    }





    .contact-us-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 3000px;
    }
    .contact-box{
        margin-top: -90px;
        padding: 0;
        width: 900px;
    }
    .contact-size{
        margin: 0;
        padding: 0;
        margin-bottom: 60px;
    }
    .contact-size p{
        font-size: 55px;
    }
    #cont-headingh{
        font-size: 65px;
    }
    #add-id{
        font-size: 50px;
    }
    #cont-para{
        font-size: 45px;
    }





    .map{
        height: 800px;
    }
    .map iframe{
        height: 800px;
    }

    




    .footer-container{
        height: 1600px;
    }
    .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;
    }
    .footer-box{
        display: flex;
        flex-wrap: wrap;
    }
    .fsize{
        width: 400px;
    }

}