body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
    font-family: "Gothic A1", sans-serif;
    

}

.top-nav {
    background: #3da8da;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 17px;

    font-weight: 600;
}

.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: white;
    font-size:17px ;
}
.top-nav i,
.top-nav p a{
text-decoration: none;
color: white;
}
.top-nav i,
.top-nav span {
    vertical-align: middle;

}

.top-nav .social-link a {
    height: 34px;
    width: 34px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    color: white;
    font-size: 17px;
    transition: .5s;
    gap: 10px;
}

.top-nav .social-link a:hover {
    background-color: black;
}

.top-nav .social-link p {
    font-size: 17px;
}

/* navbar-brand */
.navbar-brand img {
    height: 60px;
    width: 60px;
}

.navbar ul li a {
    font-size: 17px;
    font-weight: 500;
    font-family: inherit;
    transition: all .5s;
}
.navbar .navbar-nav .nav-item a:hover,
.navbar .navbar-nav .nav-item a:active{
    color: red;   
}


.navbar .navbar-nav .nav-item .dropdown-menu .dropdoen-item {
    font-size: 17px;
    font-weight: 600;
    font-style: inherit;
}


.navbar {
    z-index: 13;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
/* dropdown-menu */
.dropdown-menu{
    display: none;
}
.dropdown:hover .dropdown-menu{
    display: block;
}
/*=========== Whatsapp Chat Start ================*/
.box-container {
    position: fixed;
    bottom: 200px;
    right: 0px;
    z-index: 12;

   
}
.box1{
    width:50px;
    height:50px;
    background: green;
}
.box1  img{
   height: 50px;
   width: 50px;
}
.box2{
    width:50px;
    height:50px;
    background: blue;
   margin-top: 5px;
   color: white;
}
.box2 a {
  margin:50px 0  0 12px ;
   font-size: 28px;
   background: blue;
   color: white !important;
}
.box3{
    width:50px;
    height:50px;
    margin-top: 5px;
    background: rgb(255, 86, 86);
}
.box3  img{
   height: 45px;
   width: 45px;
      padding: 5px 0 0px 5px;

}



/*=========== Whatsapp Chat End ================*/

/*========== Top arrow Start =============*/
.top-arrow {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 12;
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: blue;
    display: flex;
    align-items: center;
    justify-content: center;

}

.top-arrow a {
    font-size: 30px;
    color: white;
    animation-duration: 5s;
}

.top-arrow a:hover {
    color: white;
}

/*========== Top arrow End =============*/
/* banner form */

.banner img {
    height: 100vh;
    z-index: 1;
    position: relative;

}
.carousel-item img{
    height: 100vh;
}

.carousel-inner button {
    font-size: 20px;
    font-weight: 550;
    padding: 10px 20px 10px 20px;
}


/*============= About section ===============*/
.about-container .container .hero .form {
    height: 520px;
width: 100%;
    /* background-color: rgb(112, 151, 235); */
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
border: 1px solid black;
    color: black;
    z-index: 11;
    /* margin-top: 5%; */
    /* margin-left: 60%; */
    padding: 50px;
   border-radius: 20px;
    position: absolute;
}
.about-container .container .hero .form .second{
    margin-top: 200px;
}
.about-container .container .hero  .lab{
    line-height: 10px;
    font-weight: 600;
}
.about-container .container .hero  .form .form-control{
    color: black;
}

.about-container .container .hero  .form .btn{
    padding: 15px 20px ;
    border: none;
    outline: none;
    color:#fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    

}
.about-container .container .hero  .form .btn::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    top: 0;
    left: 0;
    border-radius: 10px;
}
.about-container .container .hero  .form .btn::before{
content: "";
position: absolute;
background: linear-gradient(
    45deg,
    #ff0000, #ff7300, #fffB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #ff0000
);
top: -2px;
left: -2px;
background-size: 600%;
z-index: -1;
width: calc(100% + 4px);
height: calc(100% + 4px);
filter: blur(8px);
animation:glowing 20s linear infinite ;
transition: opacity .3s ease-in-out;
border-radius: 10px;
opacity: 1;
}
@keyframes glowing{
    0%{background-position: 0,0,0;}
    50%{background-position: 400%,0,0;}
    100%{background-position: 0,0,0;}
}
/* hover */
.about-container .container .hero  .form .btn:hover::before {
opacity: 1;
}
.about-container .container .hero  .form .btn:active:after {
    background-color: transparent;
}
.about-container .container .hero  .form .btn:active {
    color: #000;
    font-weight: bold;
}
.about-container .container .hero  .form .btn:hover {

box-shadow:none;
    border: 0;

}


.about-container .container .hero .form .enquiry hr{
    height: 3px;
    width: 100px;
    margin: auto;
    margin-top: 15px;
    color: black;
}

#InputEmail14 {
    font-size: 20px;
}

.enquiry h3 {
    font-size: 25px;
    font-weight: 550;
    margin-top: -25px;
    color: green;
}

.about-container .hero-text p {
    font-size: 17px;
    /* margin-top: 50px; */
    margin-left: 20px;
    color: black;
    align-items: center;
    font-family: "Gothic A1", sans-serif;
}

.about-container .hero-text p strong {
    color: black;
    font-family: "Gothic A1", sans-serif;
}

.about-container .hero img {
    outline: 1px solid yellow;
    width: 40vw;
    border-radius: 12px;
    height: 400px;
}







/*======== Accordion  ==========*/
.accordion h1 {
    text-align: center;
    font-size: 40px;
    font-family: "Gothic A1", sans-serif;
    font-weight: 700;
    color: white;
    background: rgb(13, 13, 61);
    padding: 20px 30px 20px 30px;
    width: 60vw;
    align-items: center;
    margin: auto;
    border-radius: 30px;

}

.accordion-item {
    border: 2px solid black;
}

.fq img {
    height: ;
    border: 2px solid gray;
}

.accordion .accordion-item .accordion-header {
    font-family: "Gothic A1", sans-serif;

}

.accordion .accordion-item .accordion-body {
    font-family: "Gothic A1", sans-serif;

}

/*================ Services section ======================*/
.featurces h1 {
    text-align: center;
    font-size: 40px;
    font-family: "Gothic A1", sans-serif;
    font-weight: 700;
    color: white;
    background: rgb(13, 13, 61);
    padding: 20px 30px 20px 30px;
    width: 40vw;
    align-items: center;
    margin: auto;
    border-radius: 30px;
}

.featurces .card {
    height: 250px;
    color: white;
    transition: all .5s;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    
}




.featurces .card img {
    height: 260px;
    width: 300px;
    border-radius: 12px;
overflow: hidden;
    margin: auto;
    background: white;
}






/* featurces secton hero */
/* .featurces .container .hero-card{
    border: 2px solid red;
} */
.hero {
    line-height: 10px;
}

.hero p {
    font-size: 20px;
    font-weight: 700;
    font-family: "Gothic A1", sans-serif;

}

.hero h2 {
    font-size: 35px;
    font-family: "Gothic A1", sans-serif;
    font-weight: 700;
    color: green;
}

.hero-card {
    border-radius: 10px;
    height: 280px;
    border: 2px dashed red;

}

.hero-card img {
    width: 80px;
    height: 60px;
    padding-left: 20px;
    margin-top: 25px;
}

.hero-card h2 {
    font-size: 22px;
    font-weight: 700;
    padding-top: 20px;
    font-family: "Gothic A1", sans-serif;
    color: green;
    padding-left: 20px;

}

.hero-card p {
    font-size: 18px;
    font-weight: 500;
    padding-top: 20px;
        padding-left: 20px;

    font-family: "Gothic A1", sans-serif;

}

.hero-img img {
    border-radius: 20px;
    height: 580px;
    width: 40vw;
    margin-top: 60px;
}



/*=============== services section ==================*/
.services {
    max-width: 100vw;
}

.services-fluid h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    font-family: "Gothic A1", sans-serif;
    color: black;
    width: 40vw;
    align-items: center;
    margin: auto;
    border-radius: 30px;
}

.services .services-fluid hr {
    width: 100px;
    height: 3px;
    margin: auto;
    margin-bottom: 15px;
}

.services-fluid p {
    font-size: 18px;
    font-weight: 500;
    font-family: "Gothic A1", sans-serif;

   
}

.services .container .card {
    border-radius: 15px;
    height: 250px;
}

.services .container .card i {
    font-size: 50px;
}

.services .container .card .card-body h4 {
    font-size: 22px;
    font-weight: 600;
    font-family: "Gothic A1", sans-serif;

}
.services .container .card {
    border: 2px solid green;

}

.services .container .card .card-body p {
    font-size: 18px;
    font-weight: 500;
    font-family: "Gothic A1", sans-serif;

}

/*============== our best services ======================*/
.services .our-services .container h1 {
    font-family: "Gothic A1", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: black;

}
.services .our-services .container .card{
    border: 2px solid navajowhite;
    overflow: hidden;

}
.services .our-services .container hr {
    width: 100px;
    height: 3px;
    color: black;
}

.services .our-services .container .card: {
    border-radius: 20px;
}

.services .our-services .container .card .card-body h5 {
    font-family: "Gothic A1", sans-serif;

}

.services .our-services .container .card .card-body p {
    font-family: "Gothic A1", sans-serif;

}

.manu-services .container-fluid .container .image {
    height: 400px;
}

.manu-services .container-fluid .container .image{
    background-image: url('/images/merion2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 430px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.manu-services .container-fluid .container h4{
    font-size: 25px;
    font-weight: 600;
        font-family: "Gothic A1", sans-serif;

}
.manu-services .container-fluid .container h5{
    font-size: 25px;
    font-weight: 600;
    text-align: center;
        font-family: "Gothic A1", sans-serif;

}
.manu-services .container-fluid .container p{
    font-family: "Gothic A1", sans-serif;

}
.manu-services .container-fluid .container  h6 {
    font-size: 15px;
    font-family: "Gothic A1", sans-serif;
    align-items: center;
    /* border: 2px solid red; */
    padding: 10px 10px 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.manu-services .container-fluid .container .con p{
        font-family: "Gothic A1", sans-serif;
        font-size: 16px;

}

/*================= footer =================*/

/*========== contact footer start =======*/
.contact-footer {
    height: 280px;
    width: 100vw;
    font-family: "Gothic A1", sans-serif;

}

.contact-footer .container .contant {
    background: rgb(20, 207, 20);
    color: white;
}

.contact-footer .container .contant h2 {
    font-size: 30px;
    color: white;
    font-family: "Gothic A1", sans-serif;

}

.contact-footer .container .image {
    background-image: url('/images/conta.png');
    height: 400px;
    /* background-color: red; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: fit-content;
    margin: 0 -110px -50px -24px;
    padding: 100px;
    display: flex;
}

.contact-footer .container .image .box {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-footer .container .image .box a {
    font-size: 30px;
    color: white;
    font-family: "Gothic A1", sans-serif;

}

.contact-footer .container .image .con a {
    text-decoration: none;
    color: white;
    font-size: 35px;
    font-weight: 600;
    margin: auto;
}

.contact-footer .container .contant {
    margin: 0 0 -30px -125px;
    padding: 73px;
}

.contact-footer .container .contant h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Gothic A1", sans-serif;

}

.contact-footer .container .contant p {
    font-size: 18px;
    font-weight: 500;
    font-family: "Gothic A1", sans-serif;

}
.contact-footer .container .foot p a{
    font-weight: 400;
}


/*========== contact footer end =========*/
footer {
    background: rgb(89, 89, 221);
}

.foot {
    padding-top: 40px;
}

.foot h1 {
    font-size: 25px;
    color: gold;
    font-weight: 600;
    padding-bottom: 20px;
    font-family: "Gothic A1", sans-serif;

}

.foot h5 {
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: "Gothic A1", sans-serif;

}

.foot p {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    transition: all ease-in-out .5s;
    font-family: "Gothic A1", sans-serif;

}

.foot p a {
    color: white;
    font-size: 16px;
    
    text-decoration: none;
    list-style: none;
    transition: .5s;
    font-family: "Gothic A1", sans-serif;

}

.foot p:hover {
    color: gray;
    padding-left: 5px;
}

.foot p a:hover {
    color: rgb(243, 18, 18);
}

.footer-p {
    font-size: 16px;
    color: white;
    font-family: "Gothic A1", sans-serif;

}

.footer-p a {
    color: white;
    text-decoration: none;
    transition: all .5s;
    font-weight: 400;
}

.footer-p a:hover {
    color: rgb(245, 85, 85);
}