*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f9fc;
overflow-x:hidden;
}

/* NAVBAR V3 PREMIUM */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:80px;
background:rgba(89,158,255,0.95);
backdrop-filter:blur(10px);
display:flex;
align-items:center;
justify-content:space-between;
padding:0 6%;
z-index:1000;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

/* LOGO ALANI */

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

/* LOGO RESMİ */

.logo-img{
height:55px;
width:auto;
object-fit:contain;
margin-top:5px;
}

/* ŞİRKET ADI */

.company-name{
color:white;
font-weight:600;
font-size:18px;
}

/* MENU */

.menu{
display:flex;
gap:35px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:500;
position:relative;
transition:0.3s;
}

.menu a::after{
content:'';
position:absolute;
width:0%;
height:2px;
background:white;
left:0;
bottom:-6px;
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}

/* HAMBURGER */

.hamburger{
display:none;
font-size:26px;
color:white;
cursor:pointer;
}


/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
left:-100%;
height:100%;
width:260px;
background:#599EFF;
padding:60px 20px;
transition:0.4s;
z-index:999;
}

.mobile-menu a{
display:block;
margin:20px 0;
color:white;
text-decoration:none;
}

.mobile-menu.active{
left:0;
}

/* BLUR */

.blur{
filter:blur(6px);
}

/* PREMIUM SLIDER V2 */

.slider{
margin-top:80px;
height:85vh;
position:relative;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1.2s ease;
display:flex;
align-items:center;
}

.slide.active{
opacity:1;
}

/* KARARTMA */

.slide-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(
90deg,
rgba(0,0,0,0.65) 0%,
rgba(0,0,0,0.45) 40%,
rgba(0,0,0,0.1) 100%
);
}

/* YAZI ALANI */

.slide-content{
position:relative;
color:white;
max-width:600px;
margin-left:8%;
z-index:2;
animation:slideText 1.5s ease;
}

.slide-content h1{
font-size:48px;
margin-bottom:20px;
}

.slide-content h3{
font-weight:300;
margin-bottom:30px;
line-height:1.6;
}

/* BUTON */

.slider-btn-main{
display:inline-block;
padding:14px 30px;
background:#599EFF;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:500;
transition:0.3s;
}

.slider-btn-main:hover{
background:white;
color:#599EFF;
}

/* SLIDER OKLARI */

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.4);
border:none;
color:white;
font-size:28px;
padding:12px 18px;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}

.slider-btn:hover{
background:#599EFF;
}

.prev{ left:30px; }
.next{ right:30px; }

/* YAZI ANİMASYONU */

@keyframes slideText{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ABOUT V2 */

.about-v2{
padding:100px 5%;
background:#f7f9fc;
}

.about-wrapper{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-image{
flex:1;
min-width:320px;
position:relative;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.about-content{
flex:1;
min-width:320px;
}

.about-title{
font-size:38px;
margin-bottom:20px;
color:#222;
position:relative;
}

.about-title::after{
content:'';
width:60px;
height:4px;
background:#599EFF;
display:block;
margin-top:10px;
border-radius:5px;
}

.about-desc{
margin-bottom:35px;
line-height:1.6;
color:#555;
}

.about-cards{
display:flex;
flex-direction:column;
gap:20px;
}

.about-card{
background:white;
padding:25px;
border-radius:10px;
border-left:4px solid #599EFF;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.35s;
position:relative;
overflow:hidden;
}

.about-card::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(89,158,255,0.25),transparent);
transition:0.6s;
}

.about-card:hover::before{
left:100%;
}

.about-card:hover{
transform:translateY(-6px) scale(1.02);
box-shadow:0 20px 35px rgba(0,0,0,0.15);
}

.about-card h3{
margin-bottom:10px;
color:#222;
}

.about-card p{
font-size:14px;
color:#666;
}


/* CARDS */

.cards{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
padding:80px 0;
}

.card{
width:320px;
background:white;
border-radius:10px;
overflow:hidden;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card:hover{
transform:scale(1.07);
}

.card-content{
padding:20px;
}

.btn{
display:inline-block;
margin-top:10px;
padding:10px 20px;
border:2px solid #599EFF;
border-radius:25px;
color:#599EFF;
text-decoration:none;
}

.btn:hover{
background:#599EFF;
color:white;
}

/* CONTACT V2 */

.contact-v2{
padding:100px 5%;
background:#f7f9fc;
}

.contact-title{
text-align:center;
font-size:38px;
margin-bottom:60px;
position:relative;
}

.contact-title::after{
content:'';
width:60px;
height:4px;
background:#599EFF;
display:block;
margin:12px auto 0;
border-radius:4px;
}

.contact-wrapper{
display:flex;
gap:50px;
flex-wrap:wrap;
}

.contact-info{
flex:1;
display:flex;
flex-direction:column;
gap:25px;
}

.contact-card{
display:flex;
gap:20px;
align-items:flex-start;
background:white;
padding:25px;
border-radius:10px;
border-left:4px solid #599EFF;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 30px rgba(0,0,0,0.15);
}

.contact-icon{
font-size:26px;
background:#599EFF;
color:white;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.contact-map{
flex:1;
min-height:420px;
border-radius:12px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


/* FOOTER */

footer{
background:#599EFF;
color:white;
display:flex;
flex-wrap:wrap;
gap:40px;
padding:50px 5%;
}

.footer-col{
flex:1;
min-width:200px;
}
.slide-text{
position:absolute;
bottom:40px;
left:40px;
background:rgba(0,0,0,0.45);
padding:25px;
border-radius:10px;
color:white;
max-width:400px;
}

.slide-text h1{
font-size:32px;
margin-bottom:10px;
}

.slide-text h3{
font-weight:300;
}

.footer-menu a{
display:block;
margin-top:10px;
color:white;
text-decoration:none;
transition:0.3s;
}

.footer-menu a:hover{
padding-left:8px;
opacity:0.8;
}

/* RESPONSIVE */

@media(max-width:900px){

.menu{
display:none;
}

.hamburger{
display:block;
}

.about-wrapper{
flex-direction:column;
}

.about-title{
font-size:30px;
}

.contact-wrapper{
flex-direction:column;
}

.contact-title{
font-size:30px;
}
.slide-content h1{
font-size:34px;
}

.slide-content h3{
font-size:16px;
}

}