@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #fff;
    color: #000000;
    position: relative; /* Ensure no lower z-index context is applied */
     z-index: auto;
    /* overflow-x: hidden; */
}
/* ---------------header-------------- */
.header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 5%;
    position: relative;
    /* margin-top: 1%; */
    background-color: #555;
    height: 100px;
}
.header  a .logo{
    margin-left: 100px;
    width: 80px;
    height: 90px;
}
.header  a  img{
    margin-left: 50px;
}
/* .logo{
    width: 22%;
} */
.main-nav{
    list-style: none;
    display: flex;
    align-items: center;
    text-align: center; 

}
.main-nav-list{
    list-style: none;
    /* display: flex;*/
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: center; 
    margin-right: 50px;
    /* row-gap: 15%; */
    } 
.main-nav-link:link , 
.main-nav-link:visited{
display: inline-block;
text-decoration: none;
color: #fff;
font-weight: 600;
font-family: Arial, sans-serif;
font-size: 24px;
transition: all 0.3s;
}
nav ul li a{
    color: #fff;
    position: relative;
 }
 nav ul li a::after{
 content: '';
 width: 0%;
 height: 3px;
 background: #eb2024;
 position: absolute;
 left: 0;
 bottom: -6PX;
 transition: 0.5S;
 }
 nav ul li a:hover::after{
     width: 100%;
 }
 .main-nav-list li {
    margin: 0 15px;

    position: relative;
}
.language-selector span {
    color: #fff;
    font-weight: 600;
font-family: Arial, sans-serif;
font-size: 20px;
}
.language-selector .dropdown {
    margin-left: -20px;
    display: none;
    position: absolute;
    background-color: #eb2024;
    list-style: none;
    padding: 9px 12px;
    border: 1px solid #ccc;
    top: 28px;
    border-radius: 6px;
}
.language-selector:hover .dropdown {
    display: block;
}
.dropdown li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
}
.dropdown li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
}



.header  .selector{
    width: 150px;
    margin-top: 15px;
    margin-bottom: auto;
    color: #fff;
    font-size: 18px;
    margin-right: 50px;
    /* align-items: center; */
    /* margin-right: 250px; */
    /* margin-right:350px; */
}
#arrowIcon{
    color: #fff;
    font-weight: 600;
}
#selectField{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.399);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
#selectField a{
    color: #fff;
    text-decoration: none;
}
#selectField #selectText a i{
    margin-left: 60px;
    margin-right: auto;
    
}
#list{
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    
}
.options{
    width: 100%;
    padding: 15px 0 15px ;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}
.options a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
#list .options img{
    width: 30px;
    height: 18px;
}
.options a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #eb2024;
    position: absolute;
    left: 0;
    top: 1px;
    /* bottom: -6px; */
    transition: 0.5s;
}
.options:hover{
    background: rgba(0, 0, 0, 0.7);
}
.options:hover a{
    color: #eb2024;
}
.options a:hover::after{
    width: 100%;
    
}
.hide{
    visibility: hidden;
}
.rotate{
    transform: rotate(180deg);
}
.selector ul li a{
    text-decoration: none;
}
 /*----------------------------------------- mobile navvv--------------------------------- */
.btn-mobile-nav {
    width: 5%;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    }
    .icon-mobile-nav {
        height: 48px;
        width: 48px;
        color:#fff ;
    }
    .icon-mobile-nav[name="close-outline"]{
        display: none;
    }
 /* ---------------------- contact-----------------------*/

 .img-color{
    background-image: url('/img/contact-img.jpg');
    background-size: cover;
    background-position: center;
    background-size: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    /* position: relative; */
    will-change: background-position;
    height: 100%;
    padding-top: 50px;
 }
 
 .contact-section{
    padding-bottom: 50px;
 }

.contact-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.contact-section .contact-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ccc;
    border-left: 5px solid #eb2024;
    padding-left: 5px;
    
}
.contact-container p {
    font-size: 18px;
    margin-bottom: 60px;
    color: #888;
    transition: transform ease 0.5s;
    /* transition: color ease 0.5s; */
}
.contact-container p:hover{
    transform: translateY(-10px);
    color: #eb2024;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form label {
    font-size: 16px;
    color: #ccc;
    text-align: left;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    background-color: #333;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
    /* margin-top: 10px; */
}
.contact-form input::placeholder{
    color: #eee;
    text-align: center;
}
.contact-form textarea::placeholder{
    color: #eee;
    text-align: center;
    padding-top: 50px;
}
.contact-form input:hover, .contact-form textarea:hover{
    border: 2px solid #eb2024;
}
.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    padding: 15px 30px;
    background-color: #eb2024;
    color: #fff;
    font-size: 18px;
    font-weight: 450;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: all ease 0.6s;
}
.submit-btn:hover {
    background-color: #ccc;
    color: #eb2024;
    border: 2px solid #eb2024;
    /* transform: translateX(30px); */
}
/*  --------------------container---------------------------------- */
.contact-section {
    font-family: Arial, sans-serif;
    color: #bdbcbc;
    line-height: 1.6;
    text-align: left;
    margin-left: 8%;
    font-size: 18px;
}

/* .contact-section h2 {
    color: #dd9043;
    font-size: 30px;
    margin-bottom: 6%;
    margin-left: 30%;
} */
.contact-section h3{
    color: #eee;
    font-size: 30px;
    margin-bottom: 6%;
    margin-left: 30%;
    border-left: 2px solid #eb2024;
    padding-left: 5px;

}
.contact-section p {
    margin: 5px 0;
}
.contact-section p strong{
    color: #eee;
    transition: 0.5s ;
}
.contact-section p:hover strong{
    color: #eb2024;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 2.5rem;
  background: #ccc;
  color: #333;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 550;
  text-transform: capitalize;
  border-radius: 15px;
  transition: all .2s ease;
  outline: none;
  list-style: none;
  
}
.btn:hover {
  background: #eb2024;
  color: #fff;
}
.container {
    display: flex;
    background-color: #000;
    justify-content: space-between;
    align-items: flex-start;
    column-rule-color: 50px;
    border-top: 1px solid #555;
    /* margin-bottom: 3%; */
    padding-bottom: 50px;
    padding-top: 50px;
}
.left, .right {
    width: 48%;
}
.right{
    margin-top: 3%;
    margin-left: 3%;
}
.right h3{
    color: #fff;
    padding-bottom: 10px;
    border-left: 2px solid #eb2024;
    padding-left: 10px;
}
iframe{
    border-radius: 20px;
}
.social-links{
    list-style: none;
    display: flex;
    gap: 2.4rem;
    /* margin-top: 2.3rem; */
    }
    .social-link{
    color: #ccc;
    height: 60px;
    width: 36px;
    }
  
.insta:hover,
.insta:active{
    color: rgb(225, 48,108);
}
.facebook:hover,
.facebook:active{
    color: rgb(24, 119, 242);
}
.twitter:hover,
.twitter:active{
    color: #28cd83;
}
/* ---------------------------------------- */
.locishn-maxzan{
    background: #000;
    border-top: 5px solid #333;
    text-align: center;
}
.locishn-maxzan .contact-section{
    padding-top: 50px;
    padding-right: 50px;
}
.locishn-maxzan .contact-section h3{
    padding-top: 10px;
    color: #fff;
    margin-bottom: 0px;
}
.locishn-maxzan iframe{
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 45px;
}

/* ------------------footer--------------------- */
.container-footer{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background-color: #555;
    gap: 18%;
    /* width: 100%;
    height: auto; */
    /* margin-top: 2%; */
}
.f-img{
width: 22%;
margin-top:1% ;
margin-left: 30%;
}
.socail-media p{
    margin-left: 25%;
    margin-top: 5%;
    /* margin-bottom: 2%; */
    font-size: 18px;
    font-weight: 200;
    color: #ccc;
}
.socail-media p a{
    color:#eb2024 ;
    font-weight: 400;
    text-decoration: none;
}
.socail-media p a:hover{
    text-decoration: underline ;
}
.icon{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 6%;
    font-size: 28px;
    color: #ccc;

}
.fa-whatsapp:hover{
    color:  #eb2024;
    cursor: pointer;  
}
.fa-facebook-f:hover{
    color: #eb2024;
    cursor: pointer;
}
.fa-twitter:hover{
    color: #eb2024;
    cursor: pointer;
}
.service-email{
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2%;
    font-weight: 400;
}
.conatact h6{
font-size:26px ;
color: #ccc;
margin-top: 2%;
margin-bottom: 1%;
margin-left: 6%;
padding-left: 5px;
border-left: #eb2024 2px solid;
}
.conatact p{
display: flex;
flex-direction: row;
gap: 20px;
font-size:16px ;
color: #ccc;
margin-left: 6%;
margin-bottom: 5%;
}
.icon-c{
    color: #eb2024;
    font-size: 24px;
    font-weight: 900;
}
.button{
    background-color: #ccc;
    width: 20%;
    padding: 8px;
    color: #ccc;
    border-radius: 15px;
    margin-left: 50px;
    font-size: 18px;
    margin-top: 3%;
}
.service-email a{
    outline: none;
    text-decoration: none;
}
input{
    margin-top: 2%;
    width: 40%;
}
.icon a{
    color: #ccc;
}
/* -------------------------------------- medida------------------------------------------ */
@media(max-width:1200px)  {
    /* mobile nav */
   .header{
    position: fixed;
    width: 100%;
    z-index: 999;
   }
   .bag-img{
    height: 40vh;
   }
    .header button ion-icon{
        color: #ccc;
    }
    iframe{
        width: 350px;
    }
}
/* --------------------------------------1000px------------------------------------------- */
@media(max-width:1100px){
    
    .container{
        grid-template-columns: repeat(1,1fr);
      }
      
      .about-header p{
        text-align: center;
        margin-left: 7%;
        font-size: 16px;
     }
     .img-color{
        background-image: none;
    background-size: none;
    background-position: none;
    background-size: none;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    background-blend-mode: none;
    /* position: relative; */
    will-change: background-position;
    height: 100%;
    padding-top: 50px;
    }
    .img-color .contact-container{
        padding-top: 80px;
       }
    
}
/* --------------------------------------------------------------------------------- */
@media(max-width:950px){
    .header  a .logo{
        margin-left: 5px;
    }
    .main-nav-list{
        text-align: center;
        padding-left: 50px;
        gap: 30px;
    }
.container{
        grid-template-columns: repeat(1,1fr);
      }
.btn-mobile-nav{
    margin-right: 5%;
}
.container h5{
    margin-top: 2%;
    font-size: 34px;
    text-align: center;
    margin-right: 28%;
 }
 .about-header p{
    text-align: center;
    margin-left: 7%;
    font-size: 16px;
 }
 .paragraph{
    text-align: center;
    font-size: 40px;
 }
 .f-img{
    width: 30%;
 }
}
/* -------------------------------------------------------------------------------------------- */
@media(max-width:850px){
    .main-nav-list{
        text-align: center;
        padding-left: 20px;
        gap: 20px;
    }
    #selectField{
        width: 150px;
    }
    .header .selector #selectField #selectText i{
        margin-right: 15px;
    }
    .options{
        padding-right: 15px;
    }
    .container h5{
        margin-top: 2%;
        font-size: 30px;
        margin-right: 28%;
        font-weight: 600;
     }
     .locishn-maxzan .contact-section h3{
        font-size: 20px;
     }
}
/* ---------------------------------------------------------------------------------------------- */
@media(max-width:750px){
    .header a .logo{
        margin-left: 5px;
    }
    .container h5{
        margin-top: 2%;
        font-size: 28px;
        margin-right: 28%;
        font-weight: 600;
     }
     .paragraph{
        text-align: center;
        display: block;
        padding-left: 60px;
        
     }
     .paragraph span{
        font-size: 50px;
     }
     #about .img-header{
        height: 450px;
        width: 550px;
    }
    .img-color{
        background-image: none;
    background-size: none;
    background-position: none;
    background-size: none;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    background-blend-mode: none;
    /* position: relative; */
    will-change: background-position;
    height: 100%;
    padding-top: 50px;
    }
       .img-color .contact-container{
        padding-top: 80px;
       }
       .bag-img p{
        font-size: 25px;
       }
     .btn-mobile-nav{
        display: block;
        z-index: 9999;
       }
    .main-nav{
     background-color:#5555559d;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     display: flex;
     align-items: center;
     text-align: center;
     justify-content: center;
     transform: translateX(100%);
     transition: all 0.5s ease-in-out;
     /* hide navgation */
     /* allow no tramnsition at all */
     /* display: none; */
     /* 1} to hide it visually */ 
      opacity: 0;
     /* 2} mak it unaccessible to mouse and keyboard*/ 
     pointer-events: none;
     /* 3} hide iy form screen readers */
     visibility: hidden;
    }
    .nav-open .main-nav{
     opacity: 1;
     pointer-events: auto;
     visibility: visible;
     transform: translateX(0);
    }
    .nav-open .icon-mobile-nav[name="close-outline"]{
     display:block;
    }
     .nav-open .icon-mobile-nav[name="menu-outline"]{
     display:none;
    }
    .main-nav-list{
       flex-direction: column;
       gap: 48px;
    }
    .main-nav-link:link , 
    .main-nav-link:visited{
     font-size: 30px;
     font-weight: 600;
    }
    .our-services{
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-right: 50px;
    }
    .container {
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .left, .right {
        width: 100%;
        padding-right: 20px;
    }
}
/* -------------------------------------------------------------------------------------------------- */
@media(max-width:660px){
    .header{
        height: 80px;
    }
    .bag-img{
        padding-top: 30px;
        height: 100%;
    }
    .bag-img h1{
        text-align: center;
        align-items: center;
        font-size: 15px;
    }
    .bag-img p{
        padding-top: 0;
        font-size: 10px;
        padding-bottom: 50px;
    }
    .container h5{
        margin-top: 2%;
        font-size: 24px;
        margin-right: 28%;
        font-weight: 600;
     }
}


@media(max-width:550px){
    .container-footer{
        display: block;
     }
     
     .conatact{
        display: none;
     }
     .socail-media{
        height: 150px;
        margin-right: auto;
        margin-left: auto;
     }
     .socail-media img{
        margin-left: 37%;
        height: 100px;
        width: 80px;
     }
     .socail-media p{
        padding-top: 10px;
        margin-left: 20%;
        margin-top: -10px;
     }
     .logo-container::before{
        background: none;
      }
      .logo-container::after{
        background: none;
      }
}


/*----------------------------------------------------iphoneXR----------------------------------------- */
@media(max-width:438px){
    .header a .logo{
        width: 50px;
        height: 70px;
    }
    .header  .selector{
        padding-top: 10px;
        width: 100px;
    }
    .header .btn-mobile-nav{
        padding-right: 20px;
    }
    #about .container .text-header h5{
        font-size: 20px;
    }
    #about .about-header p{
        font-size: 12px;
    }
    #about .img-header{
        height: 350px;
        width: 450px;
    }
    .service-email{
        display: none;
     }
     .conatact h6{
        display: none;
     }
     .icon{
        display: none;
     }
     .container-footer{
        display: block;
     }
        .socail-media{
            display: flex;
            flex-direction: column; 
         }
         .socail-media p{
            margin-bottom: 2%;
            margin-left: 16%;
         }
         .socail-media p a{
            /* margin-right: 30px; */
            margin-bottom: 50px;
            font-size:16px ;
         }
     .f-img{
        width: 30%;
       margin-left: 33%;
     }
     iframe{
        width: 250px;
        height: 250px;
     }

    }
    @media(max-width:350px){
        .header{
        height: 80px;
    }
    .bag-img{
        padding-top: 0px;
        height: 100%;
    }
    .bag-img h1{
        text-align: center;
        align-items: center;
        font-size: 15px;
    }
    .bag-img p{
        padding-top: 0;
        font-size: 10px;
        padding-bottom: 50px;
    }
    }