@import url("https://fonts.googleapis.com/css2?family=poppins:wght@100;300;400;500;600&display=swap");

:root{
    --main-color:hsl(0, 0%, 98%);
    --black-color:#0e0e0e;
    --border:0,1rem solid rgba(255,255,255,0.4)

}



*{
    font-family: "poppins",sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize; transition: 0.2s ease;
}
/*! base html codes */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: white;
}
html::-webkit-scrollbar-track{
    background-color:transparent;
}


html::-webkit-scrollbar-thumb{
   border-radius: 3rem;
    background-color: var(--black-color);
}
body{background-color: var(--main-color);
}
section{
    padding: 3.5rem 7%;
}
.a{
    text-decoration: none;

}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: rgb(30, 223, 13)
   
}
.btn:hover{
    opacity: 0.3;
}
.heading{
    color: #101010;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #000;
    
}
.heading span{
    text-transform: uppercase;
    
}
.search-input{
    font-size: 1.6rem;
    color: var(--black-color);
    padding: 1rem;
    text-transform: none;
    border-radius: 3rem;
    
}

/*! header start */
.header .logo img{
    height: 10rem;
}
.header{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
    
   }
   .header .navbar a{
    margin: 0 1rem; 
    font-size:1.6rem ;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
   }
    .header .navbar .active,
   .header .navbar a:hover{
    border-color: rgb(12, 12, 12);
    padding-bottom: 0.5rem;
   }
.header .expert-call button{
    cursor: pointer;
    font-size: 2rem;
 background-color: transparent;
}
.expert-call{
    display: flex;
    align-items: center;
    background:none;
    padding: 15px 20px;
    border-radius: 14px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgb(0,0,0,0,0.8);
    gap: 15px;

}
.icon{
    width: 55px;
    height: 55px;
    background: #101110;
    color: #151414;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    }

    .phone-anim{
        color: #08e508;
        font-size: 22px;
        animation: ring 1.3s infinite;
        transform-origin: center;
        
    }
    @keyframes ring{
        0% {transform: rotate(0);}
        10%{transform: rotate(15deg);}
        20%{transform: rotate(-15deg);}
        30%{transform: rotate(10deg);}
        40%{transform: rotate(-10deg);}
        50%{transform: rotate(0);}
        100%{transform: rotate(0);}
    }
.text span{
    display: block;
    font-size: 16px;
    color: #190af1;
   
}
.text a{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.text a:hover{
    color: #cedb0f;
}

#menu-btn{
    display: none;
}

/*! header end */
/*! home section start */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f8f8f8;
}

/* HEADER */



/* HERO */

.hero{
    width:100%;
    min-height:100vh;
    background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('../images/arka\ plan.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:140px 8% 60px;
    gap:40px;
}

.hero-left{
    flex:1;
}

.hero-left h4{
    color:rgb(255, 0, 0);
    font-size:28px;
    margin-bottom:10px;
}

.hero-left h1{
    font-size:72px;
    line-height:1.1;
    color:#111;
    margin-bottom:20px;
}

.hero-left h1 span{
    color:rgb(241, 10, 10);
}

.hero-left p{
    font-size:18px;
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.btn-red{
    background:#2dd941;
    color:#fff;
    padding:25px 45px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    font-size: large;
}

.btn-red:hover{
    background:#111;
}

.btn-white{
    background:#fff;
    color:#111;
    padding:25px 45px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    border:2px solid #ddd;
    transition:0.3s;
     font-size: large;
}

.btn-white:hover{
    background:#111;
    color:#fff;
}

/* RIGHT */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.circle{
    width:500px;
    height:500px;
    border-radius:50%;
    overflow:hidden;
    border:12px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* FEATURES */

.features{
    width:100%;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    background:#fff;
}

.feature-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:45px;
    color:#30d92d;
    margin-bottom:20px;
}

.feature-box h3{
    color:#111;
    margin-bottom:15px;
    font-size:24px;
}

.feature-box p{
    color:#555;
    line-height:1.7;
     font-size:20px;
}



/* MOBILE */

@media(max-width:992px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-left h1{
    font-size:48px;
}

.hero-left p{
    margin:auto;
    margin-bottom:30px;
}

.hero-buttons{
    justify-content:center;
}

.circle{
    width:360px;
    height:360px;
}

.features{
    grid-template-columns:1fr;
}



}

@media(max-width:600px){

.hero-left h1{
    font-size:38px;
}

.circle{
    width:280px;
    height:280px;
}

.logo h1{
    font-size:28px;
}

nav ul li a{
    font-size:15px;
}

}
/*! home section end */

/*! hizmet section start */
.hizmet .box-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.hizmet .box-container .box{
    padding: 3rem;
    background-color: #fff;
    border-radius: 3rem;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgb(0,0,0,0,08);
}
.hizmet .box-container .box:hover{
    
    transform: translateY(-6px);
}


 .hizmet .box-container .box img{
    width: 100%;
    object-fit: cover;
}



.hizmet .box-container .box .hizmet-category{
    font-size: 2rem;
    color: rgb(11, 231, 103);
    background-color: #0c0c0c;
}
.hizmet .box-container .box h1{
    font-size: 3rem;
    padding: 1rem 0;
}
.hizmet .box-container .box h2{
    font-size: 3rem;
    padding: 0.4rem 0;
}


.hizmet .box-container .box  p{
    font-size: 2rem;
}

/*! hizmet section end */
/*! hakkımızda section start */

.about .row{
display: flex;
flex-wrap: wrap;
column-gap: 2rem;}




.about .row .image{
    flex: 1 1 45rem;
}


.about .row img{
    width: 100%;
}



.about .row .content{
    flex: 1 1 45rem;
    text-align: center;
    padding: 7rem;
}
.about .row .content h2 {
    font-size: 5rem;
    color: #025e93;
    
}
.about .row .content p{
    font-size: 2rem;
    color: #000;
    padding: 1rem 0; 
    line-height: 1.8;
    
}
/*! hakkımızda section end */
/*! products section start*/
.products .box-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;

}

.products .box-container .box{
    text-align: center; 
    background-color: #f1f0f0fe;
    position: relative;
    border-radius: 3rem;
    height: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgb(0,0,0,0,08);
}


.products .box-container .image:hover  {
    transform: scale(1);
}


.products .box-container .box .box-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
.products .box-container .box .box-head .title{
    font-size: 2rem;
}
.products .box-container .box .box-head .ul{
    font-size: 2rem;
    padding: 3rem;
   line-height: 2.80rem;
  
  
}
.products .box-container .box .box-head li{
    list-style: none;
}


.cta {
  margin-top: 30px;
}





.products .box-container .box .box-head .ul a{
    color: #0e0e0e;
    transition: 0.3s;
}
.products .box-container .box .box-head .ul a:hover{
color: red;

}


.products .box-container .box .box-head .name{
    font-size: 4rem;
    font-weight: bold;
    text-align: start;
    overflow-wrap: anywhere;
    color: #195c02;

}

.products .box-container img{
    position: absolute;
    top: 45%;
    left: 50%;
    width: 66%;
    object-fit: cover;
    transform: translate(-50%,-50%);
    border-radius: 3rem;
    height: auto;
    display: block;
  
}

.products .box-container .box-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}
.products .box-container .box-bottom .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.products .box-container .box-bottom .info p{
    font-size:1.7rem;
    color: #070707;
}
 .products .box-container .box-bottom .products-btn a{
    display: flex;
    align-items: center;
    justify-content:center ;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    border: 0.2rem solid rgb(17, 77, 3);
 }
 .products .box-container .box-bottom .products-btn a i{
    font-size: 1.6rem;
    color: #151514;
 }

/*! products section end*/
/*! review section start*/
.yorum-slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

.yorum-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:kaydir 70s linear infinite;
}

.yorum-kart{
    width: 380px;
    min-width:380px;
    max-width: 380px;
    background:#413c3c;
    border-radius:20px;
    padding:30px;
    border:1px solid #ddd;
}

@keyframes kaydir{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.yorum-baslik{
    text-align:center;
    font-size:56px;
    font-weight:800;
    color:#141111;
    margin-bottom:50px;
    line-height:1.2;
}
.yorum-track:hover{
    animation-play-state:paused;
}

/* Yıldızlar */
.yildiz{
    color:#FFC107; /* Altın sarısı */
    font-size:24px;
    margin-bottom:12px;
}

/* Yorum yazısı */
.yorum-kart p{
    font-size:18px;
    line-height:1.8;
    color:#e6e3e3;
    margin: 20px 0;
  
    white-space: normal;
}

/* İsimler */
.yorum-kart strong{
    font-size:20px;
    color:#079007; /* Mavi */
    font-weight:700;
    display:block;
    margin-top:15px;
}

@media (max-width:768px){

    .yorum-baslik{
        font-size:38px;
    }

}

@media (max-width:576px){

    .yorum-baslik{
        font-size:30px;
    }

}
/*! review section end*/
/*! contact section start*/
.contact .row{
    display: flex;
    background-color: #f1f0f0fe;
    flex-wrap: wrap;
    gap: 1rem;
}
.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}
.contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem; 
    text-align: center;
    
}
.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: black;
}
.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin: 2rem 0;
   border: #0c0c0c;
    
}
.contact .row form .inputBox i{
    color:black;
    font-size: 2rem;
    padding-left: 2rem;
   
}
.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size:1.7rem;
    color: black;
    text-transform: none;
    background-color:transparent;
    }
    .contact .row form .btn{
        font-weight: bold;
    }
/*! contact section end*/
/*! footer section start*/
.footer{
    background-color: var(--black-color);
    text-align: center;}
    .footer h4{
    color:rgb(24, 212, 11) ;
    font-size: 6rem;
}

.footer .h4 p{
    font-size: 2rem;
   color: ghostwhite;
   padding-top: 1rem;
}




.footer .share{
    padding: 5rem 0;

}
.footer .share a{
    width: 5rem;
    height: 5rem;
    color: #fff;
    line-height: 5rem;
    font-size: 2rem;
    border: #fff;
    border-radius: 50%;
    margin: 0.3rem;}
    .footer .share a:hover{
        background-color:rgb(14, 146, 239);
    }
    .footer .links{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      
        
    }

    .footer .links a{
        background-color: rgb(24, 212, 11);
        padding: 0.7rem 2rem;
        color: #0c0c0c;
        font-size: 2rem;
        border: var(--border);
    }
     .footer .links a:hover{
        background-color: #fff;
      }
     .footer .links a.active{
        background-color:rgb(238, 232, 235);
     }
     .footer .credit{
        font-size: 2rem;
        color: #fff;
        font-weight: 300;
        padding-top: 3rem;
     }
     .footer .credit span{
        color: rgb(24, 212, 11);
     }
/*! footer section end*/
.phone-btn{
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #1086d0;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgb(0,0,0,0,2);
}
.phone-btn:hover{
    transform: scale(1,1);
    background-color: #0c0c0c;
}
.whatsapp-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgb(0,0,0,0,2);
}

.whatsapp-button:hover{
    transform: scale(1.1);
    background-color: #093b03;
}





/*! responsive start*/
@media(max-width:991px) {
    html {font-size: 55%;
    }
    .header{
        position: relative;
        padding: 1.5rem 2rem;
        z-index: 1000;
        padding-top: 8rem;
    }
.header .logo img{
    height: 7rem;
}
section{
    padding: 2rem;
   
}
.products .box-container{
    grid-template-columns: repeat(2,1fr);
}
.products .box-container .box .box-head .name{
    font-size: 3.4rem;
}
}
@media(max-width:768px) {
     #menu-btn{
        display: inline-block;
    }
.html, body{
    overflow-x: hidden;
}
.header{
    position: fixed;
    top: 0; 
    left:0 ;
    width: 100%;
    background: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    padding-top: 1rem;
   height: 9rem;
}


    .header .navbar{
        position: fixed;
        top: 0;
        background-color: #fff;
        height: 100vh;
        width: 100%;
      padding-top: 8rem;
        right: -100%;
        transition: 1s;
        z-index: 1000;
        }

        .header .navbar.active{
            right: 0;
        
        }
        .header .navbar a{
            color: var(--black-color);
            display: block; 
           padding: 1.5rem 2rem;
            font-size: 2rem;
            border-bottom: 1px solid #eee;
        }
.header .logo img{
   height: 9rem;
    width: 60px;
    transition: 0.3s;

}

 .expert-call{
 gap: 5px;}
 
 

       
 .expert-call .icon{
    width: 30px;
    height: 30px;
    line-height: 30px;
 }
  .expert-call .icon i{
    font-size: 14px;
  }
   .expert-call .text span b{
    font-size: 11px;
    letter-spacing: 0;
   }
.expert-call .text  a{
    font-size: 10px;
    font-weight: bold;
}


        .home{
            min-height: 100vh;
      min-height: 40vh;   
    background: url(../images/istanbul-evden-eve-turkmen-nakliyat.png) center/cover
    no-repeat; 
    background-size: contain;
    background-position:  center;
 
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    object-fit: contain;
        }
         .home .content{
        text-align: center; 
          
      position: relative;

        }
        .home .content h1{
            font-size: 20px;
            line-height: 1;
            margin-bottom: 1px;
            text-shadow: 1px 1px 3px rgb(0,0,0,0.5);
           
        }
 .home .content p{
    position: relative;
    max-width: 30%;
     margin: 10px 0;
     
    }
    .home .content p mark{
        background-color: rgba(245, 243, 242, 0.9);
        font-size: 8px;
        padding: 5px 8px;
        border-radius: 4rem;
        white-space: normal;
        display: inline-block;
    }
    .home .content .btn{
      margin-top: 20px auto 0 auto;
        padding: 10px 18px;
        font-size: 8px;
        border-radius: 40px;
        display: inline-block;

}

        .products .box-container{
            grid-template-columns: 1fr;
        }
        .box-container{
            display: grid;
            grid-template-columns: 1fr !important
            
             }
              .contact .row {
        flex-direction: column; /* Harita ve formu alt alta getirir */
    }

    .contact .row iframe {
        width: 100% !important; /* Harita genişliğini telefona tam oturtur */
    
    }

    .heading {
        font-size: 3.5rem; /* Başlığı mobilde biraz küçültür */
    }
    /* Yorumlar Bölümü Mobil Ayarı */
.elfsight-app-63c0d81a-b456-479e-80cf-1f9ac57721f2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 25px; /* Mobilde sağdan soldan 15px boşluk bırakır */
}

}
@media(max-width:576px){
    html{
        font-size:40%;
    }
}

/*! responsive start*/


