:root {
            --primary-color: #00d2ff;
            --secondary-color: #3a7bd5;
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --text-light: #f8fafc;
        }

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Navigasyon */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10%;
            background: rgba(15, 23, 42, 0.9);
            position: fixed;
            width: 80%;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .logo { font-size: 24px; font-weight: 700; color: var(--primary-color); }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; font-weight: 400; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary-color); }

        /* Hero Bölümü */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)), /*url('https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&q=80&w=2070') center/cover;*/
			url('./mkiptv6/mkiptw_logo.png') center no-repeat;
            padding: 0 20px;
			padding-top: 60px;
        }
		.hero1 {
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)), /*url('https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&q=80&w=2070') center/cover;*/
			url('mkiptv6/mkiptw_logo.png') center no-repeat;
        }
        .hero1 h1 { font-size: 2.5rem; margin-bottom: 10px; background: linear-gradient(to right, #fff, var(--primary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero1 p { font-size: 1.2rem;  color: #cbd5e1; text-align: center;}
        .btn-group { margin-top: 30px; display: flex; gap: 15px; }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-primary { background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: white; }
        .btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

        /* Özellikler */
        .features { padding: 80px 10%; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .feature-card { background: var(--bg-card); padding: 30px; border-radius: 15px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
        .feature-card i { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; }

        /* Önemli Uyarı */
        .disclaimer { background: #7f1d1d; color: #fecaca; padding: 20px; text-align: center; font-size: 0.9rem; }

        footer { text-align: center; position: fixed;left: 0;bottom: 0;width: 100%; background: #020617; font-size: 0.8rem; color: #64748b; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            nav { width: 90%; padding: 15px 5%; }
            .nav-links { display: none; }
        }
	.gallery-card:hover {
        border-color: #00d2ff !important;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }
    .gallery-card img {
        transform: scale(1.05);
		width: 100%;
		height: auto;
    }
	.div{
	position:absolute;
	color:white;
	background-color:black;
	font-size:25px;
	width:100%;
	height:350px;
	display:none;
	}
	.div1{
	position:absolute;
	color:white;
	background-color:black;
	font-size:25px;
	width:100%;
	height:600px;
	display:none;
	}
	/* Masaüstü görünümü */
.nav-links { display: flex; list-style: none; }
.hamburger { display: none; cursor: pointer; font-size: 30px; }

/* Mobil görünümü (768px ve altı) */
@media (max-width: 768px) {
  .hamburger { display: block; 
	position: absolute;
    right: 70px;
  } /* Hamburger ikonunu göster */

  
  .nav-links {
    display: none; /* Menüyü varsayılan olarak gizle */
    flex-direction: column;
    width: 75%;
    background-color: #1e293b;;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links.active {
    display: flex; /* İkon tıklanınca menüyü göster */
  }
}