@charset "utf-8";
/* CSS Document */
/*==========================================
            GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================
            RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#333;

    overflow-x:hidden;
	
	opacity:0;

    transition:opacity .6s;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

/*==========================================
            COLORS
==========================================*/

:root{

    --primary:#111827;

    --secondary:#C89B3C;

    --white:#ffffff;

    --gray:#f7f7f7;

    --text:#444;

    --shadow:0 20px 45px rgba(0,0,0,.12);

    --radius:18px;

}

/*==========================================
            CONTAINER
==========================================*/

.container{

    width:1200px;

    max-width:92%;

    margin:auto;

}

/*==========================================
            BUTTONS
==========================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    font-size:17px;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.btn:hover{

    background:#b98925;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(200,155,60,.35);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    margin-left:15px;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:#111;

}

/*==========================================
            HEADER
==========================================*/

#header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

    padding:10px 0;
	
}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}
.logo{
    position:relative;
    width:180px;
    height:85px;
}

.logo img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto;
    transition:.35s;
}

.logo-dark{
    opacity:0;
}

.logo-white{
    opacity:1;
}

#header.active .logo-white{
    opacity:0;
}

#header.active .logo-dark{
    opacity:1;
}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:#fff;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--secondary);

    left:0;

    bottom:-8px;

    transition:.35s;

}

.navbar a:hover::after{

    width:100%;

}

.header-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.phone{

    color:#fff;

    font-weight:500;

}

.phone i{

    color:var(--secondary);

    margin-right:8px;

}

.mobile-menu{

    display:none;

    color:#fff;

    font-size:30px;

}

/* Scroll olunca */

#header.active{

    background:#fff;

    padding:12px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

#header.active .navbar a{

    color:#222;

}

#header.active .phone{

    color:#222;

}

/*==========================================
            HERO
==========================================*/

#hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    top:0;

    left:0;

	animation:zoomVideo 28s linear infinite alternate;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:
		linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.40));
}

.hero-container{

    position:relative;

    z-index:5;

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:100%;
	
	padding-top:70px;

}

.hero-left{

    width:55%;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    color:var(--secondary);

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-weight:600;

}

.hero-left h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-left p{

    width:90%;

    color:#ddd;

    line-height:34px;

    font-size:18px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    align-items:center;

}

.hero-right{

    width:380px;

}

.hero-card{

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:35px;

    box-shadow:var(--shadow);

}

.card-item{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:28px;

    color:#fff;

}

.card-item:last-child{

    margin-bottom:0;

}

.card-item i{


    width:72px;

    height:72px;

    font-size:28px;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    align-items:center;

    justify-content:center;

}

.card-item h3{

    font-size:18px;

}

/*==========================================
            SCROLL DOWN
==========================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    z-index:10;

}

.scroll-down span{

    width:32px;

    height:55px;

    border:2px solid var(--secondary);

    border-radius:25px;

    display:block;

    position:relative;

}

.scroll-down span::before{

    content:"";

    width:6px;

    height:10px;

    background:var(--secondary);

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    border-radius:10px;

    animation:scroll 2s infinite;

}

/*==========================================
            ANIMATIONS
==========================================*/

@keyframes scroll{

    0%{

        opacity:0;

        top:10px;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        top:28px;

    }

}

@keyframes zoomVideo{

    
    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }


}
/*==========================================
            ABOUT
==========================================*/

#about{

    padding:120px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

}

.section-title h2{

    margin-top:12px;

    font-size:42px;

    color:var(--primary);

}

.section-title p{

    max-width:750px;

    margin:20px auto 0;

    color:#666;

    line-height:30px;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:20px;

}

.about-image img{

    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:25px;

}

.about-content p{

    line-height:34px;

    color:#666;

}

.about-list{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-list i{

    color:var(--secondary);

}
/*==========================================
            SERVICES
==========================================*/

#services{

    background:#f7f7f7;

    padding:120px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-card i{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--secondary);

    color:#fff;

    border-radius:50%;

    font-size:30px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:30px;

}
/*==========================================
            WHY US
==========================================*/

#why-us{

    background:#111827;

    padding:120px 0;

}

#why-us .section-title h2{

    color:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-box{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

}

.why-box:hover{

    background:var(--secondary);

    transform:translateY(-10px);

}

.why-box i{

    font-size:45px;

    color:#fff;

    margin-bottom:25px;

}

.why-box h3{

    color:#fff;

    margin-bottom:15px;

}

.why-box p{

    color:#ddd;

}
/*==========================================
            STATS
==========================================*/

#stats{

    padding:110px 0;

    background:url("../images/stats.jpg") center center/cover;

    position:relative;

}

#stats::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

#stats .container{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    color:#fff;

}

.stat-box h2{

    font-size:58px;

    color:var(--secondary);

}

.stat-box span{

    font-size:18px;

}
/*==========================================
            PROJECTS
==========================================*/

#projects{

    padding:120px 0;

}

.project-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}
.project-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;

    height:380px;

}

.project-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    color:white;

}

.project-overlay span{

    color:#D79B2D;

    font-size:15px;

    font-weight:600;

}

.project-overlay h3{

    margin:8px 0;

    font-size:24px;

}

.project-count{

    display:inline-block;

    margin-top:10px;

    padding:6px 15px;

    background:#D79B2D;

    color:white;

    border-radius:30px;

    font-size:14px;

}
/*==========================================
            TESTIMONIALS
==========================================*/

#testimonials{

    padding:120px 0;

    background:#f8f8f8;

}

.testimonial-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.4s;

    border-top:4px solid transparent;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-top:4px solid var(--secondary);

}

.stars{

    color:var(--secondary);

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:30px;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:var(--primary);

}
/*==========================================
                CTA
==========================================*/

#cta{

    padding:90px 0;

    background:linear-gradient(rgba(17,24,39,.9),rgba(17,24,39,.9)),
    url("../images/cta.jpg") center/cover;

    text-align:center;

    color:#fff;

}

#cta h2{

    font-size:42px;

    max-width:900px;

    margin:auto;

    margin-bottom:35px;

    line-height:60px;

}
/*==========================================
            CONTACT
==========================================*/

#contact{

    padding:120px 0;

}

#contact .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

}

.contact-left span{

    color:var(--secondary);

    font-weight:600;

    text-transform:uppercase;

}

.contact-left h2{

    margin:15px 0;

    font-size:42px;

}

.contact-left>p{

    color:#666;

    line-height:32px;

}

.contact-info{

    margin-top:45px;

}

.contact-info>div{

    display:flex;

    gap:20px;

    margin-bottom:35px;

    align-items:flex-start;

}

.contact-info i{

    width:60px;

    height:60px;

    background:var(--secondary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

}

.contact-info h4{

    margin-bottom:8px;

}

.contact-info p{

    color:#666;

}

.contact-right{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.contact-right form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-right input,

.contact-right textarea{

    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-right input:focus,

.contact-right textarea:focus{

    border-color:var(--secondary);

}

.contact-right button{

    margin-top:10px;

}
/*==========================================
                MAP
==========================================*/

#map iframe{

    width:100%;

    height:500px;

    border:none;

}
/*==========================================
                FOOTER
==========================================*/

footer{

    background:#111827;

    color:#fff;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-grid img{

    width:180px;

    margin-bottom:30px;

}

.footer-grid p{

    color:#ccc;

    line-height:30px;

}

.footer-grid h3{

    margin-bottom:25px;

}

.footer-grid li{

    margin-bottom:15px;

}

.footer-grid li a{

    color:#ddd;

    transition:.3s;

}

.footer-grid li a:hover{

    color:var(--secondary);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px 0;

    color:#999;

}

.copyright span{

    margin:0 12px;

}
/*==========================================
            WHATSAPP
==========================================*/

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:999;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.12);

}
/*==========================================
            SCROLL TOP
==========================================*/

#scrollTop{

    position:fixed;
    right:30px;
    bottom:115px;

    width:55px;
    height:55px;

    background:var(--secondary);
    color:#fff;

    border:none;
    border-radius:50%;

    cursor:pointer;

    display:none;

    align-items:center;
    justify-content:center;

    font-size:18px;
    line-height:1;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.35s;
}

#scrollTop:hover{

    transform:translateY(-4px);

}
/* Aktif Menü */

.navbar a.active{

    color:var(--secondary);

}

.navbar a.active::after{

    width:100%;

}


/* Sayfa Açılışı */

body.loaded{

    opacity:1;

}
/*==========================================
        MOBILE MENU
==========================================*/

@media (max-width:992px){

.navbar{

    position:fixed;

    top:85px;

    left:-100%;

    width:100%;

    background:#111827;

    transition:.4s;

    padding:40px;

}

.navbar ul{

    flex-direction:column;

    gap:30px;

}

.navbar.show{

    left:0;

}

}

