/* LEVEL ENERJİ V1 */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
    color:#111;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

header .container{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#e30613;
    text-decoration:none;
}
.logo img{
    height: 200px;
    width:auto;
    display:block;
}
nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#e30613;
}

.btn{
    background:#e30613;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero{
    max-width: 1500px;
    margin:0 auto;
    padding:140px 40px 80px; 
    display:grid;
    grid-template-columns:0.7fr 1.3fr;
    align-items:center;
    min-height:90vh;
    padding-top:100px;
    padding-bottom:  80px;
    gap: 70px;
}
.hero-left{
    padding-left:40px;
    padding-right:40px; 


}

.hero-left h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.hero-left p{
    font-size:20px;
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:20px;
}

.btn-red{
     background:linear-gradient(90deg,#e30613,#ff5a36);
    background-size:200% auto;
    color:#fff;
    padding:18px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all .35s ease;
}
.btn-red:hover{
    background-position:right center;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(227,6,19,.35);
}
.btn-red span{
    transition:.3s;
}
.btn-red:hover span{
    transform:translateX(8px);
}
.btn-white{
    border:2px solid #ddd;
    color:#222;
    padding:18px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}



.hero-right img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
    transition: .5s;
}

   
    

    

.stats{
    background:#111;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    padding:70px 0;
}

.stats h2{
    color:#e30613;
    font-size:50px;
}

.stats p{
    margin-top:15px;
    color:#ddd;
}
.hero-left{
    animation: slideLeft 1s ease;
}

.hero-right{
    animation: slideRight 1.2s ease;
    height: 650px;
    overflow: hidden;
}

.hero-right img{
    transition:.5s;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;

}

.hero-right img:hover{
    transform:scale(1.03);
}

.btn{
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(227,48,19,.35);
}

nav a{
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#e30613;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
.about{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
 
 .about-image{
    overflow: hidden;
    border-radius: 20px;

}
.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    transition: transform .8s ease;
}
   
   


    

.about-image:hover img{
    transform: scale(1.08);
}


.section-title{
    color:#e30613;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    font-size:48px;
    margin:20px 0;
    color:#111;
}

.about-content p{
    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-content ul{
    list-style:none;
    margin:30px 0;
    padding:0;
}

.about-content li{
    margin-bottom:15px;
    font-size:18px;
    color:#333;
}
.projects{
    padding:120px 0;
    background:#fff;
    text-align:center;
}

.projects h2{
    font-size:48px;
    color:#111;
    margin:20px 0;
}

.projects p{
    color:#666;
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
}
.project-info strong{
    display:inline-block;
    margin-top:12px;
    color:#e30613;
    font-size:22px;
    font-weight:700;
}
.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:25px;
}

.project-info h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111;
}

.project-info p{
    color:#777;
    margin:0;
}

.project-info strong{
    display:block;
    margin-top:12px;
    color:#e30613;
    font-size:24px;
}
.project-card{
    transition: .3s ease;
    cursor: pointer;
}

.project-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.project-card img{
    transition: .4s ease;
}

.project-card:hover img{
    transform: scale(1.05);
}
.projects-btn{
    text-align:center;
    margin-top:60px;
}

.btn-red{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#d71920;
    color:#fff;
    text-decoration:none;
    padding:18px 42px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.35s;
}

.btn-red span{
    transition:.35s;
}

.btn-red:hover{
    background:#b90f16;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(215,25,32,.35);
}

.btn-red:hover span{
    transform:translateX(6px);
}

.references{
    padding:90px 0;
    background:#fff;
    text-align:center;
}

.references h2{
    font-size:40px;
    margin:15px 0;
}

.references p{
    color:#777;
    margin-bottom:45px;
}

.logo-slider{
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-track img{
    width:170px;
    height:90px;
    object-fit:contain;
    margin:0 40px;
    filter:grayscale(100%);
    opacity:.7;
    transition:.3s;
}

.logo-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
.contact{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact h2{
    font-size:42px;
    margin:15px 0;
}

.contact p{
    color:#666;
    line-height:1.8;
}

.contact-item{
    margin-top:25px;
}

.contact-item h4{
    color:#e74c3c;
    margin-bottom:8px;
    font-size:18px;
}

.contact-map iframe{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

@media(max-width:992px){
.about-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
}
nav{
    display:none;
}

nav.active{
    display:flex;
    flex-direction:column;
    align-items: center;
    position:fixed;
    top: 75px;
    left:0;
    width:100%;
    background:#fff;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.about-image{
    width:100%;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:340px;
    height:auto;
    border-radius:20px;
    display:block;
    margin:0 auto;
}

.about-content{
    width:100%;
    text-align:center;
}

.about-content h2{
    font-size:42px;
    line-height:1.2;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
}

.about-content ul{
    text-align:left;
    max-width:320px;
    margin:25px auto;
}
.contact-grid{
    grid-template-columns:1fr;
    about{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
}

.about-image{
    width:100%;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:340px;
    height:auto;
    border-radius:20px;
}

.about-content{
    width:100%;
    text-align:center;
}

.about-content h2{
    font-size:42px;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
}
}

.contact-map{
    margin-top:40px;
}

}
.footer{

    background:#1b1b1b;
    color:#fff;
    text-align:center;
    padding:70px 0 35px;

}

.footer h2{

    color:#fff;
    margin-bottom:15px;

}

.footer p{

    color:#bbb;

}

.footer-links{

    margin:35px 0;

}

.footer-links a{

    color:#fff;
    margin:0 15px;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:#e74c3c;

}

.footer hr{

    border:none;
    border-top:1px solid #333;
    margin:35px 0;

}

.copyright{

    color:#888;
    margin-bottom:10px;

}

.copyright2{

    color:#aaa;
    font-size:14px;

}
.footer{
    background:#171717;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 2fr 1fr;
    gap:60px;
}

.footer-logo{
    height:60px;
    margin-bottom:20px;
}

.footer-col h3{
    margin-bottom:20px;
    color:#fff;
}

.footer-col p{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-col a{
    display:block;
    color:#cfcfcf;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#e30613;
    padding-left:5px;
}

.footer-bottom{
    border-top:1px solid #333;
    margin-top:50px;
    padding-top:25px;
    text-align:center;
    color:#999;
    font-size:15px;
}
.footer{
    background:#171717;
    color:#fff;
    padding:70px 0 30px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-logo{
    width:190px;
    margin-bottom:20px;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
    transition:.3s;
}

.footer-box a:hover{
    color:#e30613;
}

.footer-btn{
    display:inline-block;
    margin-top:20px;
    background:#e30613;
    padding:14px 30px;
    border-radius:40px;
    color:#fff !important;
    font-weight:600;
}

.footer hr{
    border:none;
    height:1px;
    background:#333;
    margin:45px 0 25px;
}

.footer-copy{
    text-align:center;
    color:#aaa;
}
.footer-title{
    font-size:32px;
    font-weight:800;
    color:#fff;
    letter-spacing:1px;
    margin-bottom:20px;
}

.footer-title::after{
    margin: 12px auto 0;
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#e30613;
    margin-top:10px;
    border-radius:20px;
}

@media (max-width:991px){
header .container{height:80px;padding:0 18px;}
nav,.btn{display:none;}
.menu-toggle{display:flex;flex-direction:column;gap:5px;}
.hero{
display:flex!important;
flex-direction:column!important;
grid-template-columns:1fr!important;
min-height:auto!important;
padding:110px 20px 40px!important;
gap:20px!important;
}
.hero-left,.hero-right{width:100%!important;padding:0!important;}
.hero-right{height:auto!important;overflow:visible!important;order:-1;}
.hero-right img{height:auto!important;max-height:340px;width:100%;object-fit:cover;}
.hero-left h1{font-size:42px!important;text-align:center;}
.hero-left p,.mini-title{text-align:center;}
.buttons{flex-direction:column;}
.btn-red,.btn-white{width:100%;justify-content:center;}
.stats{grid-template-columns:repeat(2,1fr)!important;}
.services-grid,.projects-grid,.footer-grid,.contact-grid{grid-template-columns:1fr!important;}
}
@media (max-width:576px){
.hero-left h1{font-size:34px!important;}
.stats{grid-template-columns:1fr!important;}
}
/*==========================
KURUMSAL
==========================*/

.page-hero{

    padding:170px 0 90px;
    background:#f8f8f8;
    text-align:center;

}

.page-hero h1{

    font-size:60px;
    color:#111;
    margin:20px 0;

}

.page-hero p{

    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:18px;

}

/*==========================
HAKKIMIZDA
==========================*/

.about-page{

    padding:120px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h2{

    font-size:48px;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    font-size:18px;

    line-height:1.9;

    margin-bottom:18px;

}

/*==========================
MİSYON VİZYON
==========================*/

.mission-section{

    padding:120px 0;

    background:#fafafa;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.mission-card{

    background:#fff;

    padding:45px;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-card h3{

    font-size:34px;

    margin-bottom:18px;

    color:#111;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

/*==========================
NEDEN LEVEL
==========================*/

.why-us{

    padding:120px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.why-card{

    display:flex;

    gap:20px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.why-icon{

    width:70px;

    height:70px;

    background:#e30613;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.why-card h4{

    font-size:24px;

    margin-bottom:12px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/* ==========================
   MİSYON & VİZYON
========================== */

.mission-section{
    padding:100px 0;
}

.mission-grid{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mission-card{
    background:#fff;
    padding:45px;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.mission-card h3{
    font-size:34px;
    margin-bottom:20px;
    color:#222;
}

.mission-card p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* ==========================
   NEDEN LEVEL
========================== */

.why-us{
    padding:120px 0;
}

.why-us .section-title{
    text-align:center;
    display:block;
}

.why-us h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.why-card{
    display:flex;
    gap:20px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    width:70px;
    height:70px;
    background:#e30613;
    color:#fff;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.why-card h4{
    font-size:24px;
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
/*==========================
MİSYON VİZYON
==========================*/

.mission-vision{

    padding:120px 0;

    background:#fafafa;

}

.mission-vision .container{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:40px;

    align-items:stretch;

}

.mv-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.mv-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.mv-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#e30613;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.mv-card h2{

    font-size:36px;

    margin-bottom:20px;

    color:#111;

}

.mv-card p{

    color:#666;

    font-size:18px;

    line-height:1.9;

}

@media(max-width:900px){

.mission-vision .container{

    grid-template-columns:1fr;

}

}
/*==================================
ÇÖZÜMLER
==================================*/

.solutions{

    padding:120px 0;
    background:#fff;

}

.solutions-title{

    text-align:center;
    margin-bottom:70px;

}

.solutions-title h2{

    font-size:52px;
    color:#111;
    margin:18px 0;

}

.solutions-title p{

    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:1.9;

}

.solution-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.solution-card{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.solution-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    background:#e30613;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.solution-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.solution-card p{

    color:#666;

    line-height:1.8;

}

/*==================================
HİZMET ALANLARI
==================================*/

.service-area{

    padding:120px 0;

    background:#fafafa;

}

.service-title{

    text-align:center;

    margin-bottom:60px;

}

.service-title h2{

    font-size:48px;

    margin-top:15px;

}

.area-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.area-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.area-card:hover{

    transform:translateY(-8px);

}

.area-card i{

    font-size:38px;

    color:#e30613;

    margin-bottom:20px;

}

.area-card h4{

    font-size:24px;

    margin-bottom:12px;

}

.area-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.solution-grid{

grid-template-columns:1fr 1fr;

}

.area-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.solution-grid{

grid-template-columns:1fr;

}

.area-grid{

grid-template-columns:1fr;

}

}
.solutions-grid{

    width:90%;
    max-width:1400px;

    margin:120px auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.solution-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.solution-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.solution-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#e30613;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.solution-card h3{

    margin-bottom:15px;

    font-size:28px;

}

.solution-card p{

    color:#666;

    line-height:1.8;

}
/*=================================
HİZMET ALANLARI
=================================*/

.service-areas{

    padding:120px 0;

    background:#fafafa;

}

.service-areas .container{

    max-width:1300px;

}

.service-title{

    text-align:center;

    margin-bottom:60px;

}

.service-title .section-title{

    color:#e30613;

    font-weight:700;

    letter-spacing:2px;

}

.service-title h2{

    font-size:52px;

    margin-top:15px;

    color:#111;

}

.area-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.area-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.area-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.14);

}

.area-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:20px;

    background:#e30613;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.area-card h3{

    font-size:26px;

    margin-bottom:15px;

    color:#111;

}

.area-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.area-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.area-grid{

grid-template-columns:1fr;

}

}
/*====================================
HİZMET ALANLARI
====================================*/

.service-area{

    padding:120px 0;
    background:#fafafa;

}

.service-area .section-title{

    display:block;

    text-align:center;

    color:#e30613;

    font-size:14px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:18px;

}

.service-area h2{

    text-align:center;

    font-size:52px;

    color:#111;

    margin-bottom:60px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-box{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.service-box i{

    width:75px;

    height:75px;

    background:#e30613;

    color:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    font-size:30px;

}

.service-box h3{

    font-size:26px;

    color:#111;

    margin-bottom:10px;

}

.service-box p{

    color:#666;

    line-height:1.8;

    margin-top:10px;

}

/* Tablet */

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobil */

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.service-area h2{

font-size:36px;

}

}
/*====================================
PROJE SAYACI
====================================*/

.project-stats{

    padding:80px 0;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    padding:40px 20px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.stat-box h2{

    font-size:54px;

    font-weight:800;

    color:#e30613;

    margin-bottom:12px;

}

.stat-box p{

    font-size:18px;

    color:#666;

    font-weight:600;

}

.stat-number{

    color:#e30613;

}

/* Tablet */

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobil */

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.stat-box h2{

font-size:42px;

}

}
/*====================================
PROJELER
====================================*/

.projects-page{

    padding:100px 0;

    background:#f8f9fb;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.project-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-content{

    padding:28px;

}

.project-badge{

    display:inline-block;

    background:#e30613;

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.project-content h3{

    font-size:26px;

    color:#111;

    margin-bottom:15px;

}

.project-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.project-status{

    color:#18a957;

    font-weight:700;

}

/* Tablet */

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobil */

@media(max-width:768px){

.projects-grid{

grid-template-columns:1fr;

}

}
/*==================================
İLETİŞİM SAYFASI
==================================*/

.contact-page{
    padding:120px 0;
    background:#f8f9fb;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-card,
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-card h2,
.contact-form h2{
    font-size:34px;
    margin-bottom:25px;
    color:#111;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#e30613;
    color:#fff;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.contact-item h3{
    font-size:20px;
    margin-bottom:6px;
}

.contact-item p{
    color:#666;
    line-height:1.7;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:18px;
    font-size:16px;
    font-family:inherit;
}

.contact-form textarea{
    min-height:170px;
    resize:vertical;
}

.contact-form button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#e30613;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#c70510;
    transform:translateY(-3px);
}

.map-box{
    margin-top:50px;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
}

@media(max-width:992px){

.contact-grid{
    grid-template-columns:1fr;
}

}
/*=========================================================
==================== RESPONSIVE ============================
=========================================================*/

/* ================= TABLET ================= */

@media (max-width:992px){

.container{
    width:92%;
}

header .container{
    height:80px;
}

.logo img{
    height:120px;
}

nav{
    gap:20px;
}

.hero,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
}

.hero-left,
.about-content{
    text-align:center;
}

.hero-left h1{
    font-size:52px;
}

.hero-right{
    height:auto;
}

.hero-right img{
    height:auto;
}

.projects-grid,
.project-grid,
.solution-grid,
.service-grid,
.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-content{
    gap:35px;
}

}

/* ================= MOBİL ================= */

@media (max-width:768px){

.container{
    width:92%;
}
.logo img{
    height: 200px;
    width:auto;
}
/* HEADER */

header .container{

    height:75px;

}

nav{

    display:none;

}

.btn{

    display:none;

}

.logo img{

    height: 200px;

}

/* HERO */

.hero{

    display:flex;

    flex-direction:column;

    padding:110px 0 60px;

    gap:35px;

}

.hero-left{

    order:2;

    text-align:center;

    padding:0;

}

.hero-right{

    order:1;

}

.hero-left h1{

    font-size:38px;

    line-height:1.2;

}

.hero-left p{

    font-size:17px;

}

.buttons{

    flex-direction:column;

    gap:15px;

}

.btn-red,
.btn-white{

    width:100%;

    justify-content:center;

}

/* TÜM GRIDLER */

.about-grid,
.contact-grid,
.projects-grid,
.project-grid,
.solution-grid,
.service-grid,
.stats-grid,
.why-grid,
.mission-grid{

    grid-template-columns:1fr;

}

/* BAŞLIKLAR */

.page-hero h1,
.about-content h2,
.projects h2,
.contact h2{

    font-size:36px;

}

/* KARTLAR */

.project-card,
.solution-card,
.service-box,
.stat-box,
.mv-card{

    padding:25px;

}

/* FOOTER */

.footer-content{

    flex-direction:column;

    text-align:center;

}

.footer-box{

    width:100%;

}

.footer-title::after{

    margin:auto;

}

}

/* ================= KÜÇÜK TELEFON ================= */

@media (max-width:480px){

.hero-left h1{

    font-size:30px;

}

.page-hero h1{

    font-size:30px;

}

.btn-red,
.btn-white{

    padding:15px;

}

}
/* ================= ÇÖZÜMLER MOBİL ================= */

@media (max-width:768px){

.service-grid,
.solutions-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px !important;
}

.service-box,
.solution-card{
    width:100% !important;
    padding:25px !important;
    text-align:center !important;
}

.service-box h3,
.solution-card h3{
    font-size:26px !important;
    line-height:1.3;
    margin:15px 0;
}

.service-box p,
.solution-card p{
    font-size:16px !important;
    line-height:1.7;
}

.service-box i,
.solution-icon{
    font-size:42px !important;
    margin-bottom:18px;
    display:block;
}

}
.service-box i,
.solution-icon{
    display:flex;
    justify-content:center;
    align-items:center;

    width:80px;
    height:80px;

    margin:0 auto 20px;
}
/* KURUMSAL - NEDEN LEVEL ENERJİ */
@media (max-width:768px){

.features-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px;
}

.feature-box{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;

    padding:25px;
}

.feature-box i,
.feature-icon{
    margin:0 auto 18px !important;
    font-size:42px !important;
}

.feature-box h3{
    font-size:24px !important;
    margin-bottom:12px;
}

.feature-box p{
    font-size:16px !important;
    line-height:1.7;
    max-width:300px;
}

}
/* ================= WHY US MOBİL ================= */

@media (max-width:768px){

.why-us{
    padding:70px 0;
}

.why-us h2{
    font-size:36px;
    line-height:1.3;
    text-align:center;
    margin-bottom:40px;
}

.why-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:25px;
}

.why-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:30px 25px;
    border-radius:18px;

    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#e30613;
    border-radius:20px;
}

.why-icon i{
    color:#fff;
    font-size:34px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}

}
/* =========================
   PREMIUM MOBİL MENÜ
========================= */

.menu-toggle{
    display:none;
}

.menu-toggle{
    width:46px;
    height:46px;
    cursor:pointer;
    position:relative;
    z-index:1002;
    animation:none !important;
    transition:0.25s ease;
    transform: none !important;
}


.menu-toggle span{
    position:absolute;
    left:8px;
    width:30px;
    height:3px;
    background:#111;
    border-radius:30px;
    transition:.35s;
}

.menu-toggle span:nth-child(1){
    top:13px;
}

.menu-toggle span:nth-child(2){
    top:21px;
}

.menu-toggle span:nth-child(3){
    top:29px;
}

/* X */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:21px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:21px;
}

/* Telefon */

@media(max-width:768px){


 
nav{

    position:fixed;
    top:0;
    right:-100%;

    width:300px;
    height:100vh;

    background:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.35s;

    z-index:9999;
}

nav.active{

    right:0;

}

nav a{
    font-size:22px;
    font-weight:600;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#e30613;
}

.menu-toggle{
    display:block;
}

.btn{
    display:none;
}

}

/* Arka plan */

.sarica-link{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.sarica-link:hover{
    color:#d32f2f;
}
/* Animasyonlu WhatsApp Butonu Ana Çerçeve */
.whatsapp-animasyonlu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Animasyonu butona bağlıyoruz */
    animation: nabiz 1.5s infinite;
}

/* İkon Boyutu */
.whatsapp-animasyonlu img {
    width: 35px;
    height: 35px;
}

/* Kalp Atışı (Pulse) Animasyonu */
@keyframes nabiz {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .whatsapp-animasyonlu {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-animasyonlu img {
        width: 28px;
        height: 28px;
    }
}
/* Dil Değiştirme Butonu (TR | EN) */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px; /* TR ve EN arasındaki boşluk */
    margin-right: 20px; /* Teklif Al butonundan biraz uzaklaştırır */
    font-weight: 600;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
}

.lang-switch a {
    color: #333; /* Standart yazı rengi (koyu gri/siyah) */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Üzerine gelince ve aktif olan dilin rengi */
.lang-switch a:hover,
.lang-switch a.active {
    color: #e50914; /* Kurumsal bir kırmızı (Sitenin ana rengi neyse onun koduyla değiştirebilirsin) */
}

.ayrac {
    color: #ccc; /* Aradaki dik çizginin | rengi (açık gri) */
    font-weight: 300;
}

/* Mobilde Header Düzeni (Sadece TR | EN kalsın, logo bozulmasın) */
@media screen and (max-width: 992px) {
    
    /* Fazladan çıkan ikinci menü ikonunu mobilde tamamen gizle */
    header .menu-toggle:nth-of-type(2),
    header .container > .menu-toggle ~ .menu-toggle {
        display: none !important;
    }

    /* Logoyu orijinal boyutuna geri döndürüyoruz (küçülme yok) */
    header .logo img {
        max-width: none !important;
        height: auto;
    }

    /* Sağ tarafa TR | EN yazısını ve tek bir hamburger menüyü düzgün oturt */
    .lang-switch {
        margin-left: auto; /* Yazıyı sağa iter */
        margin-right: 15px; /* Hamburger menü ile arasına mesafe koyar */
    }
}
/* Mobilde Logoyu Büyütme Ayarı */
@media screen and (max-width: 992px) {
    
    /* Fazladan menü ikonunu gizle */
    header .menu-toggle:nth-of-type(2),
    header .container > .menu-toggle ~ .menu-toggle {
        display: none !important;
    }

    /* Logoyu mobilde göz dolduracak şekilde büyütüyoruz */
    header .logo img {
        max-width: 400px !important; /* Genişliği artırdık */
        height: auto !important;
        max-height: 200px !important; /* Yüksekliği artırdık */
    }

    /* Header yerleşimi */
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toggle {
        margin-left: auto;
        margin-right: 15px;
    }

    .lang-switch {
        margin-left: 0;
        margin-right: 0;
    }
}
/* Logoyu kesin olarak sola dayama ayarı */
@media screen and (max-width: 992px) {
    header .container {
        padding-left: 0 !important; /* Sol boşluğu tamamen sıfırlıyoruz */
        justify-content: space-between;
    }
    
    header .logo {
        margin-left: 0 !important; /* Logonun kendi sol boşluğunu sıfırla */
        padding-left: 5px !important; /* Telefona yapışmaması için minik bir pay bırak */
    }
}
/* TR | EN Dil Butonu Yağ Gibi Sağdan Sola Animasyon */
.lang-switch {
    opacity: 0;
    transform: translateX(60px);
    will-change: transform, opacity; /* Tarayıcıya "bu eleman hareket edecek, şimdiden hazır ol" der */
    animation: sagdanSolaAkiskan 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes sagdanSolaAkiskan {
    0% {
        opacity: 0;
        transform: translate3d(60px, 0, 0); /* GPU'yu (ekran kartını) tetikler, takılmayı keser */
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* =========================================
   LEVEL ENERJI - GES TEKLIF BOTU
   ========================================= */

.le-quote-widget {
    font-family: 'Manrope', Arial, sans-serif;
}

.le-quote-button {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 9997;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 9px 18px 9px 9px;

    border: 0;
    border-radius: 50px;

    background: #111;
    color: #fff;

    cursor: pointer;

    box-shadow: 0 12px 35px rgba(0,0,0,.25);

    transition: .25s ease;
}

.le-quote-button:hover {
    transform: translateY(-3px);
}

.le-quote-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c92824;
    color: #fff;

    font-size: 24px;
}

.le-quote-button-text {
    text-align: left;
}

.le-quote-button-text strong {
    display: block;
    font-size: 13px;
}

.le-quote-button-text small {
    display: block;
    margin-top: 2px;
    color: #aaa;
    font-size: 9px;
}


/* OVERLAY */

.le-quote-overlay {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    padding: 22px;

    background: rgba(0,0,0,.40);

    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;
}

.le-quote-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* KUTU */

.le-quote-box {
    position: relative;

    width: 400px;
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 35px);

    overflow-y: auto;

    padding: 28px;

    background: #fff;

    border-radius: 22px;

    box-shadow: 0 25px 80px rgba(0,0,0,.30);

    transform: translateY(25px);

    transition: .3s ease;
}

.le-quote-overlay.active .le-quote-box {
    transform: translateY(0);
}


/* KAPAT */

.le-quote-close {
    position: absolute;

    right: 14px;
    top: 13px;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: #f2f2f2;

    color: #222;

    cursor: pointer;

    font-size: 13px;
}


/* BASLIK */

.le-quote-title {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-right: 30px;
}

.le-quote-logo {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #c92824;
    color: #fff;

    font-size: 14px;
    font-weight: 800;
}

.le-quote-title span {
    display: block;

    color: #c92824;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.le-quote-title h3 {
    margin: 3px 0 0;

    color: #111;

    font-size: 21px;
}


/* ACIKLAMA */

.le-quote-description {
    margin: 14px 0 18px;

    color: #666;

    font-size: 12px;

    line-height: 1.6;
}


/* PROGRESS */

.le-quote-progress {
    height: 4px;

    margin-bottom: 24px;

    overflow: hidden;

    border-radius: 20px;

    background: #eee;
}

.le-quote-progress span {
    display: block;

    width: 16.66%;
    height: 100%;

    background: #c92824;

    transition: .25s ease;
}


/* ADIMLAR */

.le-quote-step {
    display: none;
}

.le-quote-step.active {
    display: block;
}

.le-quote-step label {
    display: block;

    margin-bottom: 12px;

    color: #191919;

    font-size: 13px;
    font-weight: 800;
}


/* SECENEKLER */

.le-quote-options {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;
}

.le-quote-options button {
    min-height: 48px;

    padding: 10px;

    border: 1px solid #e4e4e4;
    border-radius: 11px;

    background: #fafafa;

    color: #222;

    font-family: 'Manrope', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition: .2s ease;
}

.le-quote-options button:hover {
    border-color: #c92824;

    background: #fff7f7;

    transform: translateY(-1px);
}


/* INPUT */

.le-quote-input {
    width: 100%;
    height: 49px;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #fafafa;

    outline: none;

    font-family: 'Manrope', Arial, sans-serif;
    font-size: 13px;
}

.le-quote-input:focus {
    border-color: #c92824;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(201,40,36,.08);
}


/* BUTONLAR */

.le-quote-next,
.le-quote-whatsapp {
    width: 100%;
    height: 50px;

    margin-top: 13px;

    border: 0;
    border-radius: 11px;

    background: #c92824;

    color: #fff;

    font-family: 'Manrope', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;
}

.le-quote-next:hover,
.le-quote-whatsapp:hover {
    background: #a91f1c;

    transform: translateY(-1px);
}


/* NOT */

.le-quote-note {
    margin-top: 11px;

    color: #999;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


/* BASARILI */

.le-quote-success {
    width: 58px;
    height: 58px;

    margin: 10px auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf7ef;

    color: #218a49;

    font-size: 12px;
    font-weight: 800;
}

.le-quote-step[data-step="success"] h4 {
    margin: 0 0 8px;

    font-size: 20px;

    text-align: center;
}

.le-quote-step[data-step="success"] p {
    color: #666;

    font-size: 12px;

    line-height: 1.65;

    text-align: center;
}


/* HATA */

.le-quote-error {
    display: none;

    margin-top: 12px;

    padding: 10px;

    border-radius: 9px;

    background: #fff0f0;

    color: #a51f1c;

    font-size: 11px;
}

.le-quote-error.show {
    display: block;
}


/* MOBIL */
@media (max-width: 600px) {

    .le-quote-button {
        left: 12px;
        bottom: 12px;
        padding: 8px 14px 8px 8px;
    }

    .le-quote-icon {
        width: 40px;
        height: 40px;
    }

    .le-quote-button-text strong {
        font-size: 12px;
    }

    .le-quote-button-text small {
        font-size: 8px;
    }

    .le-quote-overlay {
        padding: 10px;
        align-items: flex-end;
        justify-content: center;
    }

    .le-quote-box {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 20px);
        padding: 22px 16px;
        border-radius: 20px;
    }

    .le-quote-options {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .le-quote-options button {
        min-height: 50px;
        font-size: 10px;
    }

    .le-quote-input {
        height: 50px;
        font-size: 14px;
    }

    .le-quote-next,
    .le-quote-whatsapp {
        height: 52px;
        font-size: 13px;
    }
}