/* ===================================================
   NETDESTEK V2
   PART 1
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --blue:#0b4ea2;
    --blue2:#2563eb;
    --dark:#0f172a;
    --gray:#64748b;
    --light:#f8fafc;
    --white:#ffffff;

}

body{

    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#222;
    line-height:1.7;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ================= HEADER ================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:var(--blue);
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo{

    width:150px;
    background:#fff;
    padding:8px;
    border-radius:8px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

nav a:hover{

    color:#ffd54f;

}

/* ================= HERO ================= */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    padding:150px 8% 80px;

}

.hero-left h1{

    font-size:58px;

    color:var(--blue);

    line-height:1.15;

    margin:25px 0;

}

.hero-left p{

    font-size:22px;

    color:#555;

    margin-bottom:35px;

}

.badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--blue);

    padding:10px 18px;

    border-radius:30px;

    font-weight:600;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    display:inline-block;

    padding:16px 38px;

    border-radius:50px;

    background:var(--blue2);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    background:#0b4ea2;

}

.btn2{

    background:#25D366;

}

.btn2:hover{

    background:#18b956;

}

.hero-right{

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:560px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}/* ================= SECTIONS ================= */

section{

    padding:90px 8%;

}

section h2{

    text-align:center;

    font-size:40px;

    color:var(--blue);

    margin-bottom:60px;

}

/* ================= CARDS ================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card i{

    font-size:52px;

    color:var(--blue2);

    margin-bottom:20px;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;

}

.card p{

    color:#666;

    font-size:16px;

}

/* ================= WHY US ================= */

#neden{

    background:#eef5ff;

}

#neden .card{

    background:#fff;

}

/* ================= REFERENCES ================= */

.refs{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.refs img{

    width:220px;

    background:#fff;

    padding:25px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.refs img:hover{

    transform:scale(1.05);

}

/* ================= ABOUT ================= */

#hakkimizda{

    background:#fff;

}

#hakkimizda p{

    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:19px;

    color:#555;

    line-height:1.9;

}/* ================= CONTACT ================= */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:40px;

}

.contact-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.contact-card h3{

    color:var(--blue);

    margin-bottom:15px;

}

.contact-card p{

    color:#555;

    font-size:17px;

}

/* ================= MAP ================= */

#harita{

    padding:0;

}

#harita iframe{

    width:100%;

    height:420px;

    border:0;

}

/* ================= FOOTER ================= */

footer{

    background:#0f172a;

    color:#fff;

    padding:60px 8% 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    align-items:flex-start;

}

.footer-logo{

    width:160px;

    background:#fff;

    padding:8px;

    border-radius:8px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:20px;

    font-size:20px;

}

footer ul{

    list-style:none;

}

footer ul li{

    margin-bottom:10px;

}

footer ul li a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

footer ul li a:hover{

    color:#60a5fa;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#cbd5e1;

}

/* ================= WHATSAPP ================= */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

padding-top:140px;

}

.hero-left h1{

font-size:42px;

}

.hero-left p{

font-size:18px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

nav{

display:none;

}

.logo{

width:130px;

}

section{

padding:70px 6%;

}

section h2{

font-size:32px;

}

.refs{

gap:30px;

}

.refs img{

width:170px;

}

.footer-grid{

text-align:center;

}

}

@media(max-width:576px){

.hero-left h1{

font-size:34px;

}

.btn{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.card{

padding:25px;

}

.contact-card{

padding:25px;

}

.whatsapp{

width:58px;

height:58px;

font-size:30px;

right:18px;

bottom:18px;

}

}
