@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}


html {
    font-size: 10px;
    font-family: "Montserrat", sans-serif;

}

.container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;

}





/*Hero Section*/
/* Ana bölüm */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #0d1b2a 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Arka plan yıldızlar */
.stars, .shooting-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* en arkada */
}

/* Yıldız animasyonları */
.stars {
  background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  animation: moveStars 200s linear infinite;
}

.shooting-stars::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 3px;
  height: 80px;
  background: linear-gradient(45deg, white, rgba(255,255,255,0));
  animation: shooting 3s ease-in-out infinite;
}

/* Resim animasyonun üstünde sabit durur */
.info-img {
  position: relative;
  z-index: 1; /* yıldızların üstünde, yazıların altında */
  width: 80%;
  max-width: 600px;
  margin-top: 20px;
}

.info-img img {
  width: 100%;
  border-radius: 20px;
  opacity: 0.9; /* hafif saydamlık */
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* Yazılar en önde */
.hero-info {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 20px;
}

.hero-info-heading {
  font-size: 2rem;
  text-shadow: 0 0 15px white;
}
.hero-info-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 5; /* her şeyin üstünde kalır */
}

/* Hover durumunda parlama efekti */
.hero-info-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.hero-info-button:hover::before {
  left: 120%;
}

.hero-info-button:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 20px white, 0 0 40px #00aaff;
  transform: scale(1.05);
}


/* Kuyruklu yıldız animasyonları */
@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: -10000px 5000px; }
}

@keyframes shooting {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) translateY(1000px) rotate(45deg);
    opacity: 0;
  }
}



/*End Hero Section*/

/*hakkında section*/
.hakkında {
    width: 100%;
    min-width: 50vh;
    padding: 10 rem 5 rem;
    flex-direction: column;
}

/*End Hakkında section*/

/*Hakkında section*/
.hakkında {
    width: 100%;
    min-width: 50vh;
    padding: 10rem 5 rem;
    flex-direction: column;
}

.hakkında .hakkında-info {
    text-align: center;

}

.hakkında .hakkında-info .hero-info-heading {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: black;
}

.hakkında .hakkında-info .hakkında-info-desc {
    font-size: 1.25rem;
    line-height: 1.5rem;
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    color: #f8f9fa;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    border-left: 6px solid #ff6b6b; /* vurgu çizgisi */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    text-align: center;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Altta hafif ışık efekti */
.hakkında .hakkında-info .hakkında-info-desc::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 150%;
    height: 50px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    transform: translateX(-50%) rotate(0deg);
    z-index: 0;
}


.hakkında .hakkında-info .hakkında-info-button {
    padding: 1.6rem 4.6rem;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.548);
    color: whitesmoke;
    text-decoration: none;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    margin-bottom: 30px;


}

.hakkında .hakkında-img .hakkında-img-wrapper {
    margin-top: 50px;
    height: auto;
    max-width: 400px;
   
    display: inline-block;
    overflow: hidden; /* Taşmayı engeller */
    border-radius: 12px; /* Köşeleri yumuşatır, şık görünüm */
  
}

.hakkında .hakkında-img .hakkında-img-wrapper img {
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 12px; /* Görsel köşeleri de aynı yumuşaklıkta */
    transition: transform 0.4s ease; /* Hover animasyonu */
}

.hakkında .hakkında-img .hakkında-img-wrapper:hover img {
    transform: scale(1.03); /* Hafif yakınlaşma efekti */
}

/* Alt tarafa yumuşak bir gölgelendirme efekti */
.hakkında .hakkında-img .hakkında-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* sadece alt kısmı kaplar */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}



/*End hakkında section*/

/* Hizmetler Section */
.hizmetler {
    flex-direction: column;
    min-height: 60vh;
    padding: 10rem 5rem;
}

.hizmetler .hizmetler-header {
    width: 100%;
    text-align: center;
}

.hizmetler .hizmetler-header .hizmetler-header-heading {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black;
}

.hizmetler .hizmetler-header .hizmetler-header-desc {
    font-size: 1.3rem;
    line-height: 2rem;
    margin-top: 20px;
}

.hizmetler .hizmetler-info {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.hizmetler .hizmetler-info .hizmet {
    width: 100%;
    min-height: 300px;
    position: relative;
    transition: .3s ease;
    margin: 5px;
}

.hizmetler .hizmetler-info .hizmet .hizmet-card {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: .3s ease transform;
    display: block;
}

/* 🔹 CAM (Glassmorphism) Efekti Burada */
.hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-front,
.hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-back {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* ✨ CAM GÖRÜNÜMÜ ✨ */
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 10px;
}

.hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-back {
    transform: rotateY(180deg);
}

.hizmetler .hizmetler-info .hizmet .hizmet-card i {
    font-size: 4rem;
    color: black;
    margin-bottom: 10px;
}

.hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-front-heading {
    font-size: 2.5rem;
    text-transform: capitalize;
}

.hizmetler .hizmetler-info .hizmet:hover .hizmet-card {
    transform: rotateY(180deg);
}

.hizmetler .hakkında-info .hizmet .hizmet-card .hizmet-back .hizmetler-header-desc {
    font-size: 1.3rem;
    margin-top: 10px;
    text-align: center;
}

/* Arka plan resimleri */
.hizmetler .hizmetler-info .hizmet:nth-child(1) .hizmet-card .hizmet-front {
    background-image: url(./img/web1.jpg);
    background-size: cover;
    background-position: center;
}

.hizmetler .hizmetler-info .hizmet:nth-child(2) .hizmet-card .hizmet-front {
    background-image: url(./img/yazilimci.jpg);
    background-size: cover;
    background-position: center;
}

.hizmetler .hizmetler-info .hizmet:nth-child(3) .hizmet-card .hizmet-front {
    background-image: url(./img/isadami.jpg);
    background-size: cover;
    background-position: center;
}
.hizmet-back-desc {
    position: absolute;       /* Fotoğrafın üstünde konumlandırmak için */
    top: 50%;                 /* Ortalamak için */
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;             /* Beyaz yazı */
    font-size: 1.8rem;        /* Yazı boyutu */
    font-weight: 600;         /* Kalınlık */
    text-align: center;       /* Ortalanmış metin */
    max-width: 80%;           /* Taşmasını engellemek için */
    opacity: 0;               /* Başlangıçta görünmez */
    transition: opacity 1s ease, transform 1s ease; /* Yumuşak geçiş */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* Arka plan kontrastı */
}

/* Fotoğrafın hover veya aktif durumu için */
.hizmet:hover .hizmet-back-desc {
    opacity: 1;               /* Görünür yap */
    transform: translate(-50%, -50%) translateY(-10px); /* Hafif yukarı hareket */
}


/* End Hizmetler Section */

/* Mobil görünüm düzenlemesi */
@media (max-width: 768px) {
    .hizmetler {
        padding: 5rem 2rem;
    }

    .hizmetler .hizmetler-header .hizmetler-header-heading {
        font-size: 2.5rem;
    }

    .hizmetler .hizmetler-header .hizmetler-header-desc {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }

    .hizmetler .hizmetler-info {
        flex-direction: column;
        align-items: center;
    }

    .hizmetler .hizmetler-info .hizmet {
        width: 100%;
        min-height: 250px;
    }

    .hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-front,
    .hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-back {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; /* resim tam otursun */
    }

    /* Arka yüzün metin boyutu biraz küçültülür */
    .hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-back .hizmetler-header-desc {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* İkon ve başlık boyutları küçülür */
    .hizmetler .hizmetler-info .hizmet .hizmet-card i {
        font-size: 3rem;
    }

    .hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-front-heading {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* Daha küçük ekranlar (telefonlar 480px ve altı) */
@media (max-width: 480px) {
    .hizmetler {
        padding: 3rem 1rem;
    }

    .hizmetler .hizmetler-header .hizmetler-header-heading {
        font-size: 2rem;
    }

    .hizmetler .hizmetler-info .hizmet {
        min-height: 220px;
    }

    .hizmetler .hizmetler-info .hizmet .hizmet-card i {
        font-size: 2.5rem;
    }

    .hizmetler .hizmetler-info .hizmet .hizmet-card .hizmet-front-heading {
        font-size: 1.6rem;
    }
}


/*Sec Section*/
.sec {
    min-height: 10vh;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.212);
    padding: 3rem 2rem;

}

.sec .sec-heading {
    /*yazı boyutu ve rengini ayarlıyor*/
    color: black;
    font-size: 2.2rem;
    text-align: center;
}

.sec .sec-button {
    position: relative;
    padding: 1rem 2.5rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(0,0,0,0.2));
    border: 2px solid rgba(231, 223, 223, 0.5);
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15rem;
    font-weight: 600;
    color: whitesmoke;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover efekti */
.sec .sec-button:hover {
    background: whitesmoke;
    color: black;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hafif parıltı efekti (hover anında akış hissi verir) */
.sec .sec-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: all 0.6s;
}

.sec .sec-button:hover::before {
    left: 125%;
}

/*End Sec Section*/

/*footer Section*/
/* bizimle iletişme geçin bölümü*/
.footer {
    min-height: 20vh;
    width: 100%;
    background-color: black;
    color: white;
    flex-direction: column;
    text-align: center;
    padding: 5rem;

}

.footer .footer-contact {
    padding: 20px;

}

.footer .footer-contact .footer-contact-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;

}

.footer .footer-contact .footer-contact-info {
    font-size: 1.4rem;
    padding-top: 10px;
    letter-spacing: .2rem;

}

.footer .footer-social-follow .footer-social-icon a {
    color: white;
    font-size: 3rem;
    margin: .4rem;
    display: inline-block;


}

/*footer Section*/

/*Media qery for desctop ans tab*/
/*web sitesi bilgisayar ve tablet görünümü ayarları*/
@media only screen and (min-width:768px) {
    .nav-bar .nav-list .hamburger {
        display: none;

    }

    .nav-bar .nav-list ul {
        transform: translateX(0);
        position: initial;
        padding: 0;
        z-index: initial;
        background-color: transparent;
    }

    .nav-bar .nav-list ul {
        display: inline-block;
    }

    .hero {
        height: 100vh;
        flex-direction: row;
        padding-left: 10%;
        /*hayat yaşayabildiğin kadar özgür yazısını web sitesinde sola taşımak için*/
        justify-content: center;
        text-align: center;


    }

    .hero .hero-info {
        max-width: 30%;
        text-align: left;

    }

    .hero .hero-info .hero-info-subheading {
        font-size: 1.3rem;
        letter-spacing: .5rem;

    }

    .hero .hero-img {
        min-width: 400px;
        max-width: 1000px;

    }

    .hakkında {
        width: 80%;
        margin: 0 auto;
        flex-direction: row;
    }

    .hakkında .hakkında-info {
        width: 50%;
        text-align: left;
        padding-right: 17rem;

    }

    .hizmetler .hizmetler-header .hizmetler-header-desc {
        max-width: 500px;
        padding-top: 20px;
        margin: 0 auto;

    }

    .hizmetler .hizmetler-info {
        flex-direction: row;
        width: 80%;
    }

    .hizmetler .hizmetler-info .hizmet {
        margin: 0;
    }

    /*Media Query For Desktop Onliy*/
    @media screen and (min-width:1200px ) {
        .hero .hero-info .hero-info-heading {
            font-size: 5rem;

        }

        .hero .hero-info .hero-info-subheading {
            letter-spacing: z;
        }
        


        /*End Media Query For Desktop Onliy*/

    }
}





#nav-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-bar {
    background-color: transparent; /* Arka plan tamamen şeffaf */
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bar .brand a {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    color: white;
    text-decoration: none;
}

.nav-bar .nav-list {
    display: flex;
    align-items: center;
}

.nav-bar .nav-list ul {
    display: flex;
    gap: 2rem;
}

.nav-bar .nav-list ul li {
    list-style: none;
}

.nav-bar .nav-list ul li a {
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    letter-spacing: .05rem;
}

.nav-bar .nav-list ul li a:hover {
    border-bottom: 2px solid white;
}

/* Hamburger */
.hamburger {
    border: 2px solid white;
    border-radius: 50%;
    display: none; /* Masaüstünde gizli */
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    transition: .3s ease transform;
    cursor: pointer;
    margin-left: 1rem;
}

.hamburger .bar {
    height: 2px;
    width: 25px;
    background-color: white;
    position: relative;
    display: flex;
}

.hamburger .bar::before,
.hamburger .bar::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    transition: .3s ease all;
}

.hamburger .bar::before {
    top: 7px;
}

.hamburger .bar::after {
    bottom: 7px;
}

.hamburger.active {
    transform: rotate(360deg);
}

.hamburger.active .bar {
    background-color: transparent;
}

.hamburger.active .bar::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.active .bar::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .nav-bar {
        padding: 1rem;
    }

    .nav-bar .nav-list ul {
        position: absolute;
        top: 70px;
        left: 0;
        background-color: transparent; /* Arka planı kaldırdık */
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        transition: .3s ease transform;
        z-index: -1;
    }

    .nav-bar .nav-list.open ul {
        transform: translateY(0);
    }

    .hamburger {
        display: flex; /* Mobilde görünsün */
    }
}


.btn-okn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgb(46, 45, 45));
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    /* Dancing Script fontu */
    text-decoration: none;
    /* Alt çizgi kaldırıldı */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover efekti */
.fancy-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}




/* BLOG CSS – Ortalanmış ve Estetik Stil */

/* Google Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@400;600;700&display=swap');

/* GENEL AYARLAR */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: center; /* TÜM YAZILAR ORTADA */
}

/* HEADER */
header {
    background: linear-gradient(135deg, #222, #444);
    color: white;
    padding: 50px 20px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ANA CONTAINER */
.container-blog {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* BLOG LİSTESİ */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* BLOG KARTI */
.blog-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center; /* Kart içindeki yazılar ortada */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* GÖRSEL */
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* İÇERİK */
.blog-card-content {
    padding: 25px;
}

.blog-card-content h2 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #222;
    transition: color 0.2s ease;
}

.blog-card-content h2:hover {
    color: #0077ff;
}

.blog-card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 90%;
}

/* BLOG EKLE BUTONU */
.add-blog {
    margin: 40px 0;
    text-align: center;
}

.add-blog button {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #0077ff, #005fcc);
    color: white;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.add-blog button:hover {
    background: linear-gradient(135deg, #005fcc, #003f99);
    transform: translateY(-2px);
}

/* RESPONSIVE METİN BOYUTLARI */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .blog-card-content h2 {
        font-size: 1.4rem;
    }
}


.sec {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;

    /* Üst beyaz, alta mavi-yeşil degrade */
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(200, 240, 255, 0.9) 40%,
        rgba(0, 160, 200, 0.85) 80%,
        rgba(0, 100, 140, 0.9) 100%
    );

    background-attachment: fixed;
    border-radius: 0; /* Keskin köşeler */
    box-shadow: inset 0 -10px 20px rgba(255,255,255,0.1),
                0 4px 20px rgba(0,0,0,0.25);
    color: white;
}

.sec .sec-heading {
    color: #003a5c;
    font-size: 2rem;
    font-weight: 500;
    max-width: 900px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.info-img {
    position: relative;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    border: 4px solid #00f0ff; 
    border-radius: 15px;
    box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff, 0 0 45px #00f0ff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}

.info-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/dunya2.gif');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
     /* 🎇 Sadece parlak bölgeleri vurgula */
    filter: brightness(1.0) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
    mix-blend-mode: screen; /* Parlaklık katmanı gibi davranır */
}


.info-img:hover img,
.info-img:hover .overlay,
.info-img.active img,
.info-img.active .overlay {
    opacity: 0;
}

.info-img:hover,
.info-img.active {
    border-color: transparent;
    box-shadow: none;
}

.info-img:hover::after,
.info-img.active::after {
    opacity: 1;
}


