@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;
    /* overflow-x: hidden; */
}
/* colors */
/* #027184 */
/*------------------------ header------------------ */
.header{
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 999;
    align-items: center;
    padding: 15px 0;
    justify-content: space-around;
    align-items: center;
    column-gap: 5%;
    /* position: relative; */
    transition: all 0.3s ease;
    /* margin-top: 1%; */
    /* background-color: #006666; */
    height: 80px;
}
header.scrolled {
    background-color: rgba(51, 51, 51, 0.9); /* Or use your preferred color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
  }

  header.scrolled nav ul li a::after{
    background: #fff;
    }
.header  a .logo{
    margin-left: 100px;
    width: 120px;
}
.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: #b7ea7a;
 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: #006666;
    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;
}



.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: 35%;
    padding: 10px 15px;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
#selectField i{
    width: 12px;
    transition: transform 0.5s;
}
#selectField img{
    width: 30px;
    height: 18px;
}
#selectField a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
/* header.scrolled #selectField a{
    color: #b7ea7a;
} */
#list{
    width: 35%;
    background: rgba(36, 35, 35, 0.348);
    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: #b7ea7a;
    position: absolute;
    left: 0;
    top: 1px;
    /* bottom: -6px; */
    transition: 0.5s;
}
.options:hover{
    background: #333;
}
.options:hover a{
    color: #b7ea7a;
}
.options a:hover::after{
    width: 100%;
    
}
.hide{
    visibility: hidden;
}
.rotate{
    transform: rotate(180deg);
}
.selector ul li a{
    text-decoration: none;
}
 /* -------------------header------------------------------- */
 .header-text{
    display: flex;
    flex-direction: column;
    gap: 50px;
 }
 .header-text h1{
    font-family: 'Roboto Condensed', sans-serif;
   align-items: center;
   text-align: center;
   font-size: 48px;
   color: #eee;
  /* margin-bottom: 6%; */
 }
 .header-text p{
    color: #eee;
    text-align: center;
    font-size: 34px;
 }
 .header-text ul li{
    list-style: none;
    cursor: pointer;
}
.header-text ul li a{
    width: 185px;
    text-decoration: none;
    font-size: 20px ;
    font-family: 'Lato', sans-serif;
    background-color: #006666;
    color: #fff;
    padding: 24px;
    border-radius: 40px;
    margin-left: 32%;
    margin-top: 20px;
    transition: transform 0.3s ease;
}



/*----------------------------------------- mobile navvv--------------------------------- */
.btn-mobile-nav {
    width: 5%;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    }
    .icon-mobile-nav {
        height: 48px;
        width: 48px;
        color:#333 ;
    }
    .icon-mobile-nav[name="close-outline"]{
        display: none;
    }
 /* ---------------------- contact-----------------------*/
 .img-a1{
    background: url('logo/contak1.jpg');
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    background-blend-mode: darken;
    will-change: background-position;
 }
 
 .contact-section {
    padding: 120px 0;
    text-align: center;
}
.contact-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    position: none;
}
.contact-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #006666;
    position: relative;
}
.contact-container h2::after{
    content: '';
    width: 10%;
    height: 3px;
    background: #006666;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 60px;
    color: #fff;
    font-weight: 500;
    transition: transform ease 0.5s;
    /* transition: color ease 0.5s; */
}
.contact-container p:hover{
    /* transform: translateY(-30px); */
    color: #006666;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-align: left;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 18px;
    background-color: #ffffff75;
    border: none;
    outline: none;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
    color: #006666;
    font-weight: 500;
    /* margin-top: 10px; */
}
section .contact-form input::placeholder, section .contact-form textarea::placeholder{
    color: #006666;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.contact-form input:hover, .contact-form textarea:hover{
    border: 2px solid #006666;
}
.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    padding: 15px 30px;
    background-color: #006666;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: all ease 0.6s;
}
.submit-btn:hover {
    background-color: #ffffff4d;
    color: #006666;
    border: 1px solid #006666;
    /* transform: translateX(30px); */
}
.contact-section {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: left;
    margin-left: 8%;
    font-size: 18px;
}

.contact-section h2 {
    color: #006666;
    font-size: 30px;
    margin-bottom: 6%;
    margin-left: 30%;
}
.contact-section h3{
    color: #006666;
    font-size: 30px;
    margin-bottom: 6%;
    margin-left: 30%;
}
.contact-section p {
    margin: 5px 0;
}
.container {
    /* margin-top: 5px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-rule-color: 50px;
    border-top: 15px solid #ccc;
    margin-bottom: 3%;
}
.left, .right {
    width: 48%;
}
.right{
    margin-top: 3%;
    margin-left: 3%;
}
.social-links{
    list-style: none;
    display: flex;
    gap: 2.4rem;
    /* margin-top: 2.3rem; */
    }
    .social-link{
    color: #555;
    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: #006666;
}

/* ------------------footeeerrrr-------------------------------- */
.container-footer{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background-color: rgba(51, 51, 51, 0.95);
    box-shadow: rgba(0, 0, 0, 0.9);
    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: #fff;
}
.socail-media p a{
    color:#b7ea7a ;
    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: #fff;

}
.fa-whatsapp:hover{
    color:  #b7ea7a;
    cursor: pointer;  
}
.fa-facebook-f:hover{
    color: #b7ea7a;
    cursor: pointer;
}
.fa-twitter:hover{
    color: #b7ea7a;
    cursor: pointer;
}
.service-email{
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2%;
    font-weight: 400;
}
.conatact h6{
font-size:26px ;
color: #fff;
margin-top: 2%;
margin-bottom: 1%;
margin-left: 6%;
}
.conatact p{
display: flex;
flex-direction: row;
gap: 20px;
font-size:16px ;
color: #fff;
margin-left: 6%;
margin-bottom: 5%;
}
.icon-c{
    color: #fff;
    font-size: 24px;
}
.button{
    background-color: #006666;
    width: 20%;
    padding: 8px;
    color: #fff;
    border-radius: 15px;
    margin-left: 50px;
    font-size: 18px;
    margin-top: 3%;
}
input{
    margin-top: 2%;
    width: 40%;
}
.icon a{
    color: #fff;
}
/* -------------------------------------- medida------------------------------------------ */

    /* ----------------------------------------------1200-------------------------------- */
@media(max-width:1200px){
    .header{
        column-gap: 0.5%;
    }
    .main-nav-list{
        gap: 10px;
    }
    .header a .logo{
        margin-left: 5px;
    }
    .header .selector{
        width: 50px;
    }
    #selectField{
        width: 50px;
    }
    #list{
        width: 50px;
    }
    
}
/* ---------------------------------------------1000----------------------------------- */
@media(max-width:1100px){
    .f-img{
        width: 140px;
    }
    .socail-media p{
    font-size: 16px;
    }
    .conatact h6{
        margin-top: 6%;
        font-size: 24px;
    }
    .service-email p{
        font-size: 14px;
    }
    .icon-c{
        font-size: 24px;
        margin-top: 0.5%;
    }
    .icon{
        font-size: 30px;
    }
    .container-footer{
        gap: 20%;
    }
    .container{
        display: block;
    }
    .container .left{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .conatact .right{
        margin-right: auto;
        margin-left: auto;
    }
    .container .right iframe{
        margin-left: 25%;
        margin-right: auto;
        border-radius: 16px;
    }
}
/* ------------------------------------------800------------------------------------------ */
@media(max-width:900px){
    .header a .logo{
        width: 100px;
    }
    .header .main-nav .main-nav-link{
        font-size: 18px;
    }
    .header .main-nav-list{
        gap: none;
    }
    .selector{
        margin-right: 20px;
    }
.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;
    margin-left: 24%;
 }
 footer .socail-media  .f-img{
    width: 100px;
 }
 footer .socail-media a{
    font-size: 25px;
 }
 footer .conatact h6{
    font-size: 25px;
 }
 footer .conatact p{
    font-size: 18px;
 }
}
@media(max-width:810px){
    .container h5{
        margin-top: 2%;
        font-size: 30px;
        margin-right: 28%;
        font-weight: 600;
     }
     .header .selector{
       margin-left: -35px;
    }
}
/* -----------------------------------------750--------------------------------------------- */
@media(max-width:750px){
    
    /* mobile nav */
   .header{
    position: fixed;
    width: 100%;
    z-index: 999;
   }
    .header button ion-icon{
        color: #fff;
    }
    .btn-mobile-nav{
        display: block;
        z-index: 9999;
       }
    .main-nav{
     background-color:rgba(0, 102, 102, 0.8);
     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;
    }
    .header a .logo{
        margin-left: 5px;
    }
    section .header-text h1{
        font-size: 30px;
    }
    section .header-text p{
        font-size: 15px;
    }
    .container h5{
        margin-top: 2%;
        font-size: 28px;
        margin-right: 28%;
        font-weight: 600;
     }
     .paragraph{
        text-align: center;
        font-size: 30px;
        margin-left: 18%;
     }
     .contact-section h3{
        font-size: 24px;
        }
        .social-links{
            margin-left: 28%;
        }
        .container .left{
            margin-right: 20px;
            margin-left: 10px;
            width: 90%;
        }
     footer .socail-media  .f-img{
        width: 100px;
     }
     footer .socail-media a{
        font-size: 18px;
     }
     footer .socail-media p{
        font-size: 15px;
     }
     footer .conatact h6{
        font-size: 20px;
     }
     footer .conatact p{
        font-size: 15px;
     }
     footer .conatact .icon-c{
        font-size: 20px;
     }
     footer .conatact .icon{
        display: flex;
        font-size: 20px;
     }
}
/* --------------------------------------630--------------------------------------- */

/* ---------------------for iphone se ---------------------- */
@media(max-width:660px){
    .container h5{
        margin-top: 2%;
        font-size: 24px;
        margin-right: 28%;
        font-weight: 600;
     }

     .container .right iframe{
        width: 350px;
        height: 350px;
    }
    
}


/* ---------------------------------------------------------iphone se----------------------------- */
@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%;
     }
     .socail-media p{
        margin-left: 20%;
        margin-top: -10px;
     }
     .logo-container::before{
        background: none;
      }
      .logo-container::after{
        background: none;
      }
}
/*----------------------------------------------------iphoneXR----------------------------------------- */

/*----------------------------------------------iphone 14 pro max--------------------------------------- */
@media(max-width:438px){
    .header a .logo{
        width: 80px;
    }
    .btn-mobile-nav{ 
        margin-right: 10%;
        width: 9%;
}
.header a img{
    margin-right: -4px;
}
.header .selector {
    margin-left: 80px;
    width: 100%;
}
.contact-section .contact-container h2{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.contact-section .contact-container p{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
}
.contact-section .contact-container label{
    font-size: 18px;
}
.contact-section .contact-container input{
    margin-top: -18px;
    height: 45px;
}
.contact-section .contact-container textarea{
    margin-top: -15px;
    height: 45px;
}
.contact-section .contact-container button{
    margin-top: -10px;
    height: 45px;
}

.paragraph{
    margin-right: 15%;
}
.paragraph p span{
    font-size: 40px;
}
.our-services{
    /* display: block; */
    text-align: center;
    margin-right: 20%;
    /* margin-left: auto; */
 }
 .service-desc{
    font-size: 15px;

 }

 .container-footer{
    display: block;
 }
 
 .conatact{
    display: none;
 }
 .socail-media{
    height: 150px;
    margin-right: auto;
    margin-left: auto;
 }
 .socail-media img{
    margin-left: 37%;
 }
 .socail-media p{
    margin-left: 20%;
    margin-top: -10px;
 }
 .logo-container::before{
    background: none;
  }
  .logo-container::after{
    background: none;
  }
  .container .right iframe{
    width: 300px;
    height: 300px;
}
}

@media(max-width:375px){
    .container .right iframe{
        margin-left: 20px;
        
    }
}


@media(max-width:330px){
    .header .selector {
        margin-left: 30px;
        width: 100%;
    }
    .header a img{
        margin-left: 8px;
    }
    .contact-section .contact-container h2{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        margin-top: -35px;
    }
    .contact-section .contact-container p{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 10px;
    }
    .contact-section .contact-container label{
        font-size: 18px;
        margin-top: -10px;
    }
    .contact-section .contact-container input{
        margin-top: -25px;
        height: 45px;
    }
    .contact-section .contact-container textarea{
        margin-top: -15px;
        height: 45px;
    }
    .contact-section .contact-container button{
        margin-top: -10px;
        height: 45px;
    }
    section .header-text h1{
        font-size: 25px;
    }
    .socail-media p{
        margin-left: 10%;
     }
     .container .right iframe{
        width: 250px;
        height: 250px;
    }
}