body {
  margin: 0;
  background: #ececec;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  height: 80px;
  position: relative;
}

.radikal-logo {
    width: 550px;
    height: auto; /* oranı korur */
    display: block;
    margin: 0 auto; /* ortalar */
    object-fit: contain; /* bozulmadan sığdırır */
  }


.small-logo {
  position:absolute;
  top: 14px; /* daha yukarı taşı */
  left: -85px; /* köşeye taşı */
  width: 260px; /* ekran genişliğinin %20’si kadar */
  height: auto;

  transform: scale(1.3); /* 1 = orijinal boyut, 1.6 = %60 daha büyük */
  transform-origin: top left; /* köşeden büyüt */}



.small-logo {
  top: 4px !important;   /* yukarı taşı — değeri artırabilirsin (-80, -120 vs.) */
  left: -66px !important;   /* sola hizala */
  width: 103px !important; /* büyüt */
  height: auto !important; /* orantılı büyüt */
  z-index: 9999;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  margin-right: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 8px;
}
.nav-links li a:hover {
  color: #f1b500;
}

/* Mobile-first responsive navigation */
@media (max-width: 768px) {
  .nav-container {
    max-width: 100vw;
    padding: 0 15px;
    height: 60px;
  }
  .nav-links {
    gap: 10px;
  }
  .small-logo {
    height: 50px;
    position: absolute;
    top: 4px !important;
    left: 10px !important;
    width: 103px !important;
    height: auto !important;
    z-index: 9999;
    transform: scale(1.0);
  }
  .nav-links li a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

@media (max-width: 780px) {
  .nav-container {
    padding: 0 10px;
    height: 55px;
  }
  .nav-links {
    gap: 8px;
  }
  .small-logo {
    height: 50px;
    position: relative;
    top: 80px;
    left: -135px;
  }
  .nav-links li a {
    font-size: 12px;
    padding: 6px 8px;
  }
}











.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* Responsive background image */
@media (max-width: 768px) {
  .background-image {
    border-radius: 0;
    height: 70vh;
    min-height: 300px;
    max-height: 400px;
    object-fit: contain;
  }
  .intro-section {
    height: 70vh;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .background-image {
    height: 65vh;
    min-height: 250px;
    max-height: 350px;
    object-fit: contain;
  }
  .intro-section {
    height: 65vh;
    min-height: 250px;
  }
}


.background-image {
  width: 100%;
  max-height: 1200px;
  object-fit: cover;
  border-radius: 18px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  /* position: fixed;  => Olmasın! */
  /* "background-attachment" zaten img'de çalışmaz! */
}


/* Arka planı sabit tutan stil */

.background-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    object-fit: cover;
    z-index: -1;
    /* içeriğin arkasında dursun */
    pointer-events: none;
    /* mouse etkileşimi almasın */
}



.background-image {
  width: 100%;
  max-height: 1200px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 60px;
  /* position vermene gerek yok! */
}


.background-image {
  width: 100%;
  height: 140%;
  object-fit: cover;
  border-radius: 18px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* Remove duplicate - already handled above */



.intro-section {
    position: relative;
    height: 85vh;
    width: 100%;
    top: -10px;
    min-height: 600px;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.5);
}

.overlay-text {
    position: relative;
    z-index: 2;
    padding: 80px;
    color: white;
}

.overlay-text h1 {
    font-size: 54px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.overlay-text p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Construction Notice */
.construction-notice {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255, 215, 0, 0.3);
    padding: 18px 80px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 98%;
    min-width: 700px;
    width: auto;
    white-space: nowrap;
}

.construction-notice p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.overlay-text {
  position: relative;
  z-index: 2;
    padding: 60px 40px;
  color: white;
    margin-top: 60px;
    text-align: left;
    max-width: 800px;
}

.overlay-text h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.1;
}

.overlay-text p {
  font-size: clamp(14px, 2.8vw, 20px);
  color: #ccc;
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.5;
}











.overlay-text h1 {
  font-size: 54px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.overlay-text p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 90vw;  /* Masaüstünde geniş, mobilde uyarlanacak */
}

/* Responsive hero text - mobile optimized */
@media (max-width: 768px) {
  .overlay-text {
    padding: 30px 20px;
    margin-top: 80px;
    text-align: left;
    max-width: 90vw;
  }
  .overlay-text h1 {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 20px;
    line-height: 1.2;
    word-break: normal;
    white-space: normal;
  }
  .overlay-text p {
    font-size: clamp(16px, 3.5vw, 20px);
    margin-bottom: 25px;
    max-width: 85vw;
    line-height: 1.5;
  }
  
  /* Construction notice mobile styles */
  .construction-notice {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    padding: 15px 55px;
    text-align: center;
    max-width: 99%;
    min-width: 480px;
    white-space: nowrap;
  }
  
  .construction-notice p {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    padding: 25px 15px;
    margin-top: 60px;
  }
  .overlay-text h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .overlay-text p {
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: 20px;
  }
  
  /* Construction notice small mobile styles */
  .construction-notice {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    padding: 15px 40px;
    max-width: 99%;
    min-width: 320px;
    white-space: normal;
    line-height: 1.4;
  }
  
  .construction-notice p {
    font-size: 13px;
    letter-spacing: 0.2px;
    margin: 0;
  }
}


/* Remove duplicate mobile styles - already handled above */




.overlay-text h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.08;
}

.overlay-text p {
  font-size: 19px;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 600px;
}

/* Remove duplicate - already handled in responsive section above */




.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #000000;
}

.dropdown-content a:hover {
    background-color: #000000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.content-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 800px;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
/* Featured Article */

.featured-section {
    width: 100%;
}

.featured-article {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 600px;
    margin-right: 89px;
    object-fit: cover;
    display: block;
}

.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px;
}

.text-overlay .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.text-overlay .tag {
    background: #e63946;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-overlay h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    font-weight: 700;
}
.middle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}






.rifle img {
    width: 450px;
    max-width: 100%;
}

.text-block h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 18px;
}


/* Partners Section */

.partners {
    background: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.partners h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.partners p {
    font-size: 18px;
    margin-bottom: 40px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logos img {
    width: 100%;
    max-width: 150px;
    margin: auto;
    display: block;
}


/* Hover Efektleri */

nav ul li a:hover {
    color: black;
    opacity: 0.7;
}

.btn:hover {
    background: #333;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.partner-logos img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}




 :root {
    --primary-gold: #FFD700;
    --neon-gold: #FFF5A5;
    --cyber-black: #0a0a0a;
    --matrix-green: #00FF41;
    --hacker-red: #FF0038;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* About section scroll offset */
#about {
  scroll-margin-top: 80px;
}

@font-face {
    font-family: 'Orbitron';
    src: url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
}

@font-face {
    font-family: 'Rajdhani';
    src: url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;500;700&display=swap');
}







.news-portal {
    z-index: 100;
    top: 90px;
    position: absolute;
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.news-portal {
    z-index: 100;
    top: 90px;
    width: 100%;
    /* Zaten tüm genişliği kaplıyor */
    position: absolute;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #ffffff;
    left: 0;
    right: 0;
}

/* Red Bar Heading */

h3 {  font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    border-left: 4px solid #e6cc39;
    padding-left: 12px;
    margin-bottom: 20px;
    color: #222;
}


/* Top Section - Featured + Latest News */

.top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.text-overlay .excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.read-more {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 999;
}




.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-main,
.btn-alt {
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-main {
    background-color: #ffffff;
    color: black;
}

.btn-main:hover {
    background-color: #e0b800;
}

.btn-alt {
    border: 2px solid #ccc;
    color: #fff;
    background: transparent;
}

.btn-alt:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.about-section {
    position: relative;
    top: -23px;
    background-color: #f1f1f1;
    color: #fff;
    text-align: left;
}

.about-section h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section .subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: black;
    max-width: 900px;
}

.timeline-section {
    position: relative;
    background-color: #000000;
    color: white;
    padding: 100px 40px;
}

.timeline-title {
    text-align: center;
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Timeline vertical line */

.timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: #ffd700;
    animation: growLine 3s forwards;
}


/* Line grows when visible */

@keyframes growLine {
    to {
        height: 100%;
    }
}


/* Block base styles */

.timeline {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-block {
    position: relative;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

.timeline-block.left {
    left: 0;
    text-align: right;
}

.timeline-block.right {
    left: 50%;
    text-align: left;
}


/* Shared content styling */

.timeline-block .content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
}

.timeline-block img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.timeline-block .text h3 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 10px;
}

.timeline-block .text p {
    font-size: 16px;
    color: #ccc;
}


/* Connector dots */

.timeline-block::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    z-index: 2;
}

.timeline-block.left::after {
    right: -10px;
}

.timeline-block.right::after {
    left: -10px;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .timeline-block,
    .timeline-block.left,
    .timeline-block.right {
        width: 100%;
        left: 0 !important;
        text-align: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-block::after {
        left: 10px;
        right: auto;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: #ffd700;
    animation: growLine 8s forwards;
    /* Slower animation */
}

@keyframes growLine {
    to {
        height: 100%;
    }
}





.overlay-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 1.6rem;
    color: #ddd;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.about-intro-modern {
    padding: 80px 40px;
    background: #fcfcfc17;
    text-align: center;
}

.section-header h2 {
    color: #b99e00;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-header p {
    color: #e2d5d5;
    font-size: 16px;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}




.glass-card {
    background: rgba(255, 255, 255, 0.216);
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.icon-placeholder {
    font-size: 40px;
    color: #f4dc26;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.glass-card p {
    font-size: 14px;
    color: #ddd;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');
.about-intro-modern {
    padding: 100px 40px;
    background: #fcfcfc;
    color: #11111123;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-header h2 {
    color: #13163f;
    /* Parlak altın tonu */
    font-size: 46px;
    font-weight: 400;
    /* Daha ince */
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}







.section-header p {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.image44 {
    position: absolute;
    right: -160px;
    height: 420px;
    z-index: 1;
    top: 470px;
}

.image44 {
    position: absolute;
    top: 520px;
    right: -100px;
    height: 320px;
    z-index: 2;
    /* Cam efekti için çerçeve */
    /* Hareket efekti */
    animation: floatAround 6s ease-in-out infinite;
}

@keyframes floatAround {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(10px, -15px);
    }
    50% {
        transform: translate(5px, 10px);
    }
    75% {
        transform: translate(-10px, 5px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}





.icon-placeholder {
    font-size: 40px;
    color: #f4c542;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}

.glass-card p {
    font-size: 24px;
    color: black;
    line-height: 1.5;
}



.gold-heading {
    color: #cea733;
}



.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}





/* Kart boyutları ve boşluklar küçültüldü */

.news-card {
    width: 80%;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 13px;
    margin: 0 auto;
    /* ortalamak için */
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}


/* Hover efekti daha yumuşak */

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kartlar arasındaki boşluk için grid gap zaten vardı, burada ek olarak alt boşluk da ekliyoruz */

.news-card:not(:last-child) {
    margin-bottom: 20px;
}


/* Fade in + slide up animasyonu */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Kart içeriği daraltıldı */

.card-content {
    padding: 12px;
}





.small-logo {
  height: 90px; top: 24px;
  width: auto;
  object-fit: contain;
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .nav-container {
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    height: 60px;
  }
  
  .small-logo {
    height: 32px;
    width: auto;
    position: relative;
    top: 80px;
    left: -135px;
  }
  
  .nav-links {
    display: flex;
    gap: 6px;
  }
  
  .nav-links li a {
    font-size: 11px;
    padding: 5px 7px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 55px;
    padding: 6px 10px;
  }
  
  .small-logo {
    height: 40px;
    position: absolute;
    top: 4px !important;
    left: 15px !important;
    width: 80px !important;
    height: auto !important;
    z-index: 9999;
    transform: scale(0.8);
  }
  
  .nav-links {
    gap: 4px;
  }
  
  .nav-links li a {
    font-size: 10px;
    padding: 4px 6px;
  }
}

.focus-card {
    position: relative;
    background-color: #111;
    color: rgb(243, 243, 243);
    overflow: hidden;
    border-radius: 20px;
    margin: 40px auto;
    width: 800%;
    max-width: 1500px;
    padding: 60px 30px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(50px);
}

.focus-card.show {
    opacity: 1;
    transform: translateY(0);
}

.focus-card.bg-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    width: 4000px;
    height: 1000px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.focus-card.bg-card .text {
    z-index: 2;
}

.focus-card.bg-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* karartma efekti */
    z-index: 1;
}

.focus-card.bg-card h2,
.focus-card.bg-card h3 {
    position: relative;
    z-index: 2;
}

.hero2 {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay2 {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    color: rgb(236, 234, 234);
    font-size: 2.5rem;
}

.focus-container {
    max-width: 1550px;
    margin: 10px auto;
    padding: 240px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-areas {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.focus-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.focus-card.show {
    opacity: 1;
    transform: translateY(0);
}

.focus-card .text h2 {
    font-size: 1.2rem;
    margin: 0;
    color: #555;
}

.focus-card .text h3 {
    font-size: 1.8rem;
    margin: 10px 0 0;
}

.focus-card .image img {
    width: 220px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .focus-card {
        flex-direction: column;
        text-align: center;
    }
    .focus-card .image img {
        width: 100%;
        margin-top: 20px;
    }
}

.middle-letter4 {
    position: absolute;
    z-index: 1000;
    font-size: 28px;
    font-weight: 600;
    left: -198px;
    top: 148px;
    color: #ffffff;
    letter-spacing: 2px;
    /* Harf arası boşluk */
    text-transform: uppercase;
    /* Büyük harf havası */
    font-family: 'Segoe UI', sans-serif;
    /* Daha modern bir font */
    text-shadow: 1px 1px 2px #ffffff;
    /* Hafif 3D gölge efekti */
}

.middle-letter4 {
    color: #ffffff;
    position: absolute;
    z-index: 1000;
    font-size: 24px;
    font-weight: bold;
    left: -210px;
    top: 115px;
    /* Parlaklık ve ışıltı efekti */
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ffffff, 0 0 40px #f0f0f0;
    font-family: 'Times New Roman', Times, serif;
}

.middle-letter2 {
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    /* Eskiden 148px idi */
    font-weight: bold;
    left: -150px;
    top: -38px;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}

.middle-letter3 {
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    font-weight: bold;
    left: -226px;
    top: -38px;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}

.middle-letter {
    color: #ffffff;
    /* Hafif gümüş */
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    font-weight: bold;
    left: -40px;
    top: -38px;
    font-family: 'Times New Roman', Times, serif;
}

.middle-letter2 {
    color: #b0b0b0;
    /* Hafif gümüş */
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    font-weight: bold;
    left: -160px;
    top: -38px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6), 0px 4px 8px rgba(0, 0, 0, 0.6), 0px 6px 12px rgba(255, 255, 255, 0.2);
}

.middle-letter3 {
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    font-weight: bold;
    left: -226px;
    top: -38px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6), 0px 4px 8px rgba(0, 0, 0, 0.6), 0px 6px 12px rgba(255, 255, 255, 0.2);
}

.middle-letter {
    z-index: 1000;
    position: absolute;
    font-size: 118px;
    font-weight: bold;
    left: -40px;
    top: -38px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6), 0px 4px 8px rgba(0, 0, 0, 0.6), 0px 6px 12px rgba(255, 255, 255, 0.2);
}

.middle-letter {
    text-shadow: 2px 2px 4px #000000, /* temel derinlik */
    4px 4px 8px rgba(0, 0, 0, 0.5), /* daha yumuşak 3D hissi */
    -1px -1px 0 #666666;
    /* hafif yukarıdan ışık yansıması */
}

.middle-letter2 {
    text-shadow: 2px 2px 4px #000000, /* temel derinlik */
    4px 4px 8px rgba(0, 0, 0, 0.5), /* daha yumuşak 3D hissi */
    -1px -1px 0 #666666;
    /* hafif yukarıdan ışık yansıması */
}

.middle-letter3 {
    text-shadow: 2px 2px 4px #000000, /* temel derinlik */
    4px 4px 8px rgba(0, 0, 0, 0.5), /* daha yumuşak 3D hissi */
    -1px -1px 0 #666666;
    /* hafif yukarıdan ışık yansıması */
}

.middle-letter4 {
    text-shadow: 2px 2px 4px #000000, /* temel derinlik */
    4px 4px 8px rgba(0, 0, 0, 0.5), /* daha yumuşak 3D hissi */
    -1px -1px 0 #666666;
    /* hafif yukarıdan ışık yansıması */
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}

.icons i {
    font-size: 20px;
    color: #333;
    margin-left: 20px;
    cursor: pointer;
}















.envelope {
    position: relative;
    width: 200px;
    height: 120px;
    z-index: 1;
}

.flap-top {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 60px solid #443d3d;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
}


/* Alt üçgen (alt kapak gibi görünüm için) */

.flap-bottom {
    width: 1000px;
    height: 1000px;
    border-left: 690px solid transparent;
    border-right: 100px solid transparent;
    border-top: 400px solid #ffffff;
    position: absolute;
    bottom: -60px;
    left: 640px;
    top: -2100px;
    z-index: 99999;
}

@keyframes floatingLoop {
    0% {
        transform: translate(0, 30px);
        /* aşağıdan başla */
    }
    25% {
        transform: translate(200px, 0);
        /* yukarı ve sağa */
    }
    50% {
        transform: translate(0, -50px);
        /* yukarıya hareket */
    }
    75% {
        transform: translate(-100px, 0);
        /* sola doğru */
    }
    100% {
        transform: translate(0, 30px);
        /* tekrar başlangıca dönerken aşağı */
    }
}


.reticle {
    position: absolute;
    width: 590px;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reticle::before,
.reticle::after {
    content: '';
    position: absolute;
    background-color: white;
}









        .about-intro {
            top: 39px;
            background-color: #fffcfc;
            color: #fff;
            height: 1000px;
            padding: 100px 10%;
            text-align: left;
        }
        
        .about-wrapper h2 {
            font-size: 48px;
            color: #ffd700;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        .about-wrapper p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 1000px;
            color: #ccc;
        }














/* Latest News Sidebar */

.latest-news-side {
    display: flex;
    flex-direction: column;
}

.latest-news-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.news-card .tag {
    background: #f1faee;
    color: #457b9d;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.news-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.news-card .meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #777;
}

.intro-section {
    position: relative;
    height: 85vh;
    width: 100%;
    top: -10px;
    min-height: 600px;
}



/* Featured Article */

.featured-section {
    width: 100%;
}

.featured-article {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 600px;
    margin-right: 89px;
    object-fit: cover;
    display: block;
}

.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px;
}

.text-overlay .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.text-overlay .tag {
    background: #e63946;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-overlay h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.text-overlay .excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.read-more {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s;
}

.read-more:hover::after {
    transform: translateX(5px);
}


.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.5);
}





.btn-main,
.btn-alt {
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-main {
    background-color: #ffffff;
    color: black;
}

.btn-main:hover {
    background-color: #e0b800;
}

.btn-alt {
    border: 2px solid #ccc;
    color: #fff;
    background: transparent;
}

.btn-alt:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.about-section {
    position: relative;
    top: -23px;
    background-color: #f1f1f1;
    color: #fff;
    text-align: left;
}

.about-section h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section .subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: black;
    max-width: 900px;
}


.timeline-section {
    position: relative;
    background-color: #000000;
    color: white;
    padding: 100px 40px;
}

.timeline-title {
    text-align: center;
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Timeline vertical line */

.timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: #ffd700;
    animation: growLine 3s forwards;
}


/* Line grows when visible */

@keyframes growLine {
    to {
        height: 100%;
    }
}


/* Block base styles */

.timeline {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-block {
    position: relative;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

.timeline-block.left {
    left: 0;
    text-align: right;
}

.timeline-block.right {
    left: 50%;
    text-align: left;
}


/* Shared content styling */

.timeline-block .content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
}

.timeline-block img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.timeline-block .text h3 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 10px;
}

.timeline-block .text p {
    font-size: 16px;
    color: #ccc;
}


/* Connector dots */

.timeline-block::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    z-index: 2;
}

.timeline-block.left::after {
    right: -10px;
}

.timeline-block.right::after {
    left: -10px;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .timeline-block,
    .timeline-block.left,
    .timeline-block.right {
        width: 100%;
        left: 0 !important;
        text-align: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-block::after {
        left: 10px;
        right: auto;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: #ffd700;
    animation: growLine 8s forwards;
    /* Slower animation */
}

@keyframes growLine {
    to {
        height: 100%;
    }
}   













.overlay-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 1.6rem;
    color: #ddd;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-style: italic;
}




.about-intro-modern {
    padding: 80px 40px;
    background: #fcfcfc17;
    text-align: center;
}

.section-header h2 {
    color: #b99e00;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-header p {
    color: #e2d5d5;
    font-size: 16px;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}





.glass-card {
    background: rgba(255, 255, 255, 0.216);
    border-radius: 0px;
    padding: 30px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.icon-placeholder {
    font-size: 40px;
    color: #f4dc26;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.glass-card p {
    font-size: 14px;
    color: #ddd;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');
.about-intro-modern {
    padding: 100px 40px;
    background: #fcfcfc;
    color: #11111123;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-header h2 {
    color: #13163f;
    /* Parlak altın tonu */
    font-size: 46px;
    font-weight: 400;
    /* Daha ince */
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}





.section-header p {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.image44 {
    position: absolute;
    right: -160px;
    height: 420px;
    z-index: 1;
    top: 470px;
}

.image44 {
    position: absolute;
    top: 520px;
    right: -100px;
    height: 320px;
    z-index: 2;
    /* Cam efekti için çerçeve */
    /* Hareket efekti */
    animation: floatAround 6s ease-in-out infinite;
}







@keyframes floatAround {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(10px, -15px);
    }
    50% {
        transform: translate(5px, 10px);
    }
    75% {
        transform: translate(-10px, 5px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.978);
    padding: 30px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
}

.icon-placeholder {
    font-size: 40px;
    color: #f4c542;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}





.glass-card p {
    font-size: 24px;
    color: black;
    line-height: 1.5;
}

.gold-heading {
    color: #cea733;
}



/* Arka planı sabit tutan stil */

.background-image {
    position: fixed;
    top: 0;
    left: 0;
      position: fixed;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    /* içeriğin arkasında dursun */
    pointer-events: none;
    /* mouse etkileşimi almasın */
}

.intro-boxes {    
    background-color: #cccccc;
    color: #fff;
    padding: 80px 10%;
    text-align: center;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.intro-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}




.info-box {
    flex: 1 1 300px;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h3 {
    font-size: 24px;
    color: #1e0352;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    color: #ccc;
}




/* Kart boyutları ve boşluklar küçültüldü */

.news-card {    
    width: 80%;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 13px;
    margin: 0 auto;
    /* ortalamak için */
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}


/* Hover efekti daha yumuşak */

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kartlar arasındaki boşluk için grid gap zaten vardı, burada ek olarak alt boşluk da ekliyoruz */

.news-card:not(:last-child) {
    margin-bottom: 20px;
}


/* Fade in + slide up animasyonu */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Kart içeriği daraltıldı */

.card-content {
    padding: 12px;
}


/* Etiket daha küçük */

.news-card .tag {
    background: #f1faee;
    color: #457b9d;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}


/* Başlık daha küçük ve satır yüksekliği daraltıldı */

.news-card h4 {
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}


/* Meta bilgileri daha ince ve küçük */

.news-card .meta {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: #777;
}


/* Ultra Premium 3D Carousel Styles */

.highlights-section {
    margin: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}


/* Today's Highlights */

.highlights-section {
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlights-section h3 {
    font-size: 28px;
    margin: 0;
    color: #2a2a2a;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.highlights-section h3 .red-bar {
    display: inline-block;
    width: 5px;
    height: 28px;
    background: linear-gradient(to bottom, #e63946, #ff7d00);
    margin-right: 15px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-prev,
.carousel-next {
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e63946;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(230, 57, 70, 0.2);
    transform: scale(1.1);
}

.carousel-prev:active,
.carousel-next:active {
    transform: scale(0.95);
}

.carousel-container {
    position: relative;
    padding: 20px 0;
    margin: 0 -20px;
}

.highlights-track {
    display: flex;
    gap: 30px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 20px;
}















.highlight-card {
    min-width: 340px;
    flex: 0 0 auto;
    perspective: 2000px;
    position: relative;
    height: 480px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center center;
}

.highlight-card:hover .card-inner {
    transform: rotateY(15deg) translateY(-10px);
}

.highlight-card.active .card-inner {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: rgb(255, 255, 255);
}

.card-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.card-shadow {
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 90%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(10px);
    z-index: -1;
    transition: all 0.5s ease;
}

.highlight-card:hover .card-shadow {
    bottom: -25px;
    width: 95%;
    opacity: 0.6;
}

.secondary-news-content p {
    color: black;
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}


/* Front Card Styles */

.highlight-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.highlight-card:hover .highlight-image {
    transform: scale(1.1);
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    color: rgb(255, 255, 255);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-badge i {
    margin-right: 8px;
    font-size: 12px;
    color: #ff7d00;
}

.highlight-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.highlight-card .tag {
    font-size: 12px;
    padding: 8px 18px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.highlight-card .tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.highlight-card .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-card .tag:hover::before {
    opacity: 1;
}

.highlight-card .tag.sports {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
}

.highlight-card .tag.tech {
    background: linear-gradient(135deg, #228b22, #32cd32);
}

.highlight-card .tag.business {
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
}

.highlight-card h4 {
    font-size: 22px;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-weight: 800;
    color: #2a2a2a;
    transition: all 0.5s ease;
    position: relative;
    letter-spacing: -0.3px;
}

.highlight-card:hover h4 {
    color: #e63946;
}

.highlight-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 450;
}

.highlight-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #777;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-card .author {
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.highlight-card .author:hover {
    transform: translateX(5px);
}

.highlight-card .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #f1faee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.highlight-card .author:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight-card .author-name {
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

.highlight-card .author:hover .author-name {
    color: #e63946;
}

.highlight-card .stats {
    display: flex;
    gap: 20px;
}

.highlight-card .stat {
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.highlight-card .stat:hover {
    transform: translateY(-3px);
}

.highlight-card .stat i {
    margin-right: 8px;
    font-size: 16px;
    color: #e63946;
}

.highlight-card .stat-count {
    font-weight: 600;
    color: #444;
}


/* Back Card Styles */

.back-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.back-content h5 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.back-content h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e63946, transparent);
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.related-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.related-links li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e63946;
}

.related-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.related-links a:hover {
    color: white;
    transform: translateX(5px);
}

.read-full {
    background: linear-gradient(90deg, #e63946, #ff7d00);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    margin-top: auto;
}

.read-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6);
}

.read-full:active {
    transform: translateY(0);
}

.read-full svg {
    margin-left: 10px;
    transition: transform 0.3s;
}

.read-full:hover svg {
    transform: translateX(5px);
}


/* Carousel Pagination */

.carousel-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.carousel-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-pagination .dot.active {
    background: #e63946;
    transform: scale(1.2);
}


/* 3D Animation */

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

.highlight-card {
    animation: float 8s ease-in-out infinite;
}

.highlight-card:nth-child(2n) {
    animation-delay: 1s;
}

.highlight-card:nth-child(3n) {
    animation-delay: 2s;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .highlight-card {
        min-width: 300px;
        height: 440px;
    }
    .highlight-image-container {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .carousel-controls {
        align-self: flex-end;
    }
    .highlight-card {
        min-width: 280px;
        height: 420px;
    }
    .highlight-content {
        padding: 20px;
    }
    .highlight-card h4 {
        font-size: 20px;
    }
}


/* JavaScript Interaction Classes */

.highlight-card.flip {
    animation: flipCard 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes flipCard {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(180deg);
    }
}

.highlight-card.unflip {
    animation: unflipCard 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes unflipCard {
    0% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0);
    }
}

.focus-card {
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    background-color: #fff5f5;
    color: white;
    transition: all 1s ease;
    z-index: 1;
}

.hero {
    background-color: #ffffff;
    z-index: 999999999;
}

.focus-card2 {
    top: -167px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    background-color: #ffffff;
    color: white;
    transition: all 1s ease;
    z-index: 1;
}

.focus-card {
    margin: auto;
    padding: 40px;
    position: relative;
    background-color: #ffffff;
    color: white;
    transition: all 1s ease;
    z-index: 1;
}

.focus-card2 {
    margin: auto;
    padding: 400px;
    border-radius: 20px;
    position: relative;
    background-color: #ddd4d4;
    color: white;
    transform: translateY(100px);
    transition: transform 1s ease, opacity 1s ease;
    z-index: 2;
    opacity: 1;
}

.focus-card2.visible {
    transform: translateY(-30px);
    /* Yukarı çıkar */
    opacity: 1;
}

.focus-card2 {
    position: absolute;
    top: 300vh;
    /* Sayfanın altına başlat */
    left: 50%;
    transform: translate(-50%, 100px);
    margin: auto;
    padding: 120px 60px;
    /* Yukarıdan ve yandan dengeli padding */
    border-radius: 20px;
    background-color: #ebebeb;
    color: white;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 2;
    opacity: 0;
    width: 100%;
    max-width: 1400px;
    min-height: 500px;
    /* 💥 boyunu uzatır */
}


/* 2. Kart - scroll ile yukarı çıkacak */

.focus-card2 {
    position: absolute;
    top: 300vh;
    /* Sayfanın altına başlat */
    left: 50%;
    transform: translate(-50%, 100px);
    /* Başta biraz aşağıda ve ortalanmış */
    margin: auto;
    padding: 170px;
    border-radius: 20px;
    background-color: #ebebeb;
    color: white;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 2;
    opacity: 0;
    width: 100%;
    max-width: 1400px;
}


/* Scroll ile görünür hale gelince yukarı çıkar */

.focus-card2.visible {
    transform: translate(-50%, -50px);
    /* Yukarı çık */
    opacity: 1;
}


/* 1. Kart - sabit üstte */

.focus-card {
    margin: auto;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    background-color: #ffffff;
    color: white;
    transition: all 1s ease;
    z-index: 999;
    width: 100%;
    top: -1400px;
    max-width: 1400px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


/* 2. Kart - scroll ile yukarı çıkacak olan */

.focus-card2 {
    position: absolute;
    top: 295vh;
    /* Sayfa altına yerleştir */
    left: 50%;
    transform: translate(-50%, 100px);
    /* Başlangıçta biraz aşağıda */
    padding: 120px 60px;
    border-radius: 20px;
    background: linear-gradient(to bottom right, #0f0f0f, #292929);
    color: #fff;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 999;
    opacity: 0;
    width: 100%;
    max-width: 1400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* Scroll ile görünür hale geldiğinde */

.focus-card2.visible {
    transform: translate(-50%, -50px);
    /* Yumuşak yukarı geçiş */
    opacity: 1;
}


/* 2. Kart - scroll ile yukarı çıkacak olan */

.focus-card3 {
    z-index: 99999;
    position: absolute;
    top: 480vh;
    /* Sayfa altına yerleştir */
    left: 50%;
    transform: translate(-50%, 100px);
    /* Başlangıçta biraz aşağıda */
    padding: 120px 60px;
    border-radius: 20px;
    background: linear-gradient(to bottom right, #0f0f0f, #292929);
    color: #fff;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 999;
    opacity: 0;
    width: 100%;
    max-width: 1400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-up-on-load {
    opacity: 0;
    transform: translateY(60px);
    /* aşağıdan başlar */
    animation: slideUpFade 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    z-index: 1;
    transition: all 0.5s ease;
    padding: 100px 5%;
    min-height: 100vh;
}

.grid-gallery {
    background-color: #ffffff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 40px;
}

.grid-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #333;
}


/* overlay sadece yazı içerir, başta görünmez */

.grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* hover etkisi kutuda olsun ama overlay engel olmasın */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    color: white;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    /* hafif karartma efekti */
}


/* hover olunca sadece overlay (yazılar) görünür */

.grid-item:hover .overlay {
    opacity: 1;
    pointer-events: auto;
}

.grid-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.grid-item p {
    font-size: 14px;
    margin-bottom: 15px;
}

.grid-item a {
    padding: 8px 14px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.grid-item a:hover {
    background-color: white;
    color: black;
}


/* yazılar tek tek içerde animasyonla çıkacak */

.grid-item .overlay h2,
.grid-item .overlay p,
.grid-item .overlay a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}


/* hover olunca yazılar yukarıdan kayarak gelsin */

.grid-item:hover .overlay h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
    pointer-events: auto;
}

.grid-item:hover .overlay p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.grid-item:hover .overlay a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}


/* buton stilleri */

.grid-item a {
    padding: 8px 14px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.layered-cards {
    position: relative;
    display: flex;
    flex-direction: column;
}

.layer-card {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 100px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    z-index: 1;
    transition: all 0.5s ease;
}

.layer-card:nth-child(2) {
    z-index: 2;
}

.layer-card:nth-child(3) {
    z-index: 3;
}

.layer-card img {
    max-width: 45%;
    border-radius: 20px;
}

.layer-text {
    max-width: 50%;
}

.layer-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.layer-text h1 {
    font-size: 48px;
    color: black;
    margin-bottom: 10px;
}

.layer-text h1 span {
    font-size: 18px;
    color: #777;
    font-weight: normal;
    margin-left: 10px;
}

.second-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100px);
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.second-card.visible {
    transform: translate(-50%, -50%);
    opacity: 1;
}


/* Bottom Section */

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* Trending Now */

.trending-articles {
    background: white;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.trending-card {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.trending-card:last-child {
    border-bottom: none;
}

.trending-card .number {
    font-size: 24px;
    font-weight: 700;
    color: #e2d8d9;
    min-width: 40px;
}

.trending-card .content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.trending-card .meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #777;
}


/* Popular Tags */

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f1faee;
    color: #457b9d;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.tag:hover {
    background: #457b9d;
    color: white;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .top-section {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .bottom-section {
        grid-template-columns: 1fr;
    }
    .featured-image {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .featured-image {
        height: 300px;
    }
    .text-overlay {
        padding: 20px;
    }
    .text-overlay h2 {
        font-size: 24px;
    }
    .text-overlay .excerpt {
        font-size: 16px;
    }
}

.news-grid {
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

/* Desktop alignment for slogans - only for large screens */
@media (min-width: 1201px) {
    .news-category {
        display: flex;
        flex-direction: column;
    }
    
    .secondary-news-card {
        flex: 1;
    }
    
    .secondary-news-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* Contact Section */
.contact-section {
  padding: 120px 40px 80px 40px;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #111;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 3px;
  color: #111;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #002147;
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  padding: 20px;
  background: #fafafa;
  border-left: 4px solid #002147;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-info p {
  margin: 12px 0;
}

.contact-info i {
  margin-right: 8px;
  color: #002147;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  background: #fff;
  color: #111;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #002147;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 33, 71, 0.4);
}

.contact-form button {
  background: #002147;
  color: #fff;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.contact-form button:hover {
  background: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Subscribe Footer */
.subscribe-footer {
  background: #fff;
  padding: 50px 20px;
  border-top: 2px solid #002147;
  font-family: Arial, sans-serif;
  color: #111;
}

.subscribe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.subscribe-box {
  display: flex;
}

.subscribe-box input {
  padding: 12px;
  width: 280px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
  background: #fff;
  color: #111;
}

.subscribe-box input::placeholder {
  color: #888;
}

.subscribe-box button {
  padding: 12px 24px;
  background: #002147;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.subscribe-box button:hover {
  background: #003366;
  transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 25px auto 0;
  font-size: 14px;
  color: #444;
}

.footer-left {
  font-size: 15px;
  font-weight: bold;
  color: #111;
}

.footer-left span {
  color: #666;
  font-size: 13px;
}

.footer-right a {
  margin-left: 18px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #002147;
  text-decoration: underline;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px 40px 20px;
  }
  
  .contact-title {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
  
  .contact-title::after {
    width: 40px;
    height: 2px;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .contact-info {
    min-width: 100%;
    font-size: 14px;
    padding: 15px;
  }
  
  .contact-form {
    min-width: 100%;
    padding: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 13px;
  }
  
  .contact-form button {
    padding: 12px;
    font-size: 14px;
  }
  
  .subscribe-footer {
    padding: 30px 15px;
  }
  
  .subscribe-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .subscribe-box {
    width: 100%;
    justify-content: center;
  }
  
  .subscribe-box input {
    width: 200px;
    padding: 10px;
  }
  
  .subscribe-box button {
    padding: 10px 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-right a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 15px 30px 15px;
  }
  
  .contact-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .contact-info {
    font-size: 13px;
    padding: 12px;
  }
  
  .contact-form {
    padding: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    font-size: 12px;
  }
  
  .contact-form button {
    padding: 10px;
    font-size: 13px;
  }
  
  .subscribe-box input {
    width: 150px;
    padding: 8px;
  }
  
  .subscribe-box button {
    padding: 8px 16px;
  }
}

.news-category {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    padding: 15px 20px;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 4px solid #97990c;
}

.main-news-card {
    position: relative;
}

.main-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.main-news-content {
    padding: 25px;
}

.main-news-content h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: black;
    font-weight: 600;
}

.news-excerpt {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin: 12px 0 18px;
}

.news-date {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.secondary-news-card {
    display: flex;
    padding: 18px 25px;
    border-top: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.secondary-news-card:hover {
    background-color: #f9f9f9;
}

.secondary-news-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.secondary-news-content {
    flex: 1;
}

.secondary-news-content h4 {
    font-size: 14px;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.fullscreen-box {
    top: 0;
    left: 0;
    width: 100vw;
    height: 175vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    z-index: 9999;
    padding: 40px;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.05);
}

.fullscreen-box h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fullscreen-box p {
    font-size: 20px;
    max-width: 800px;
    color: #cccccc;
}

.footer {
    z-index: 99999;
    background-color: var(--dod-dark);
    color: rgb(255, 255, 255);
    font-family: 'Arial', sans-serif;
    padding: 150px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    background-color: rgb(17, 15, 15);
}

.footer-container {
    max-width: 1400px;
    margin: 70px;
    margin-top: 90px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--dod-gray);
    padding-bottom: 30px;
    gap: 20px;
}

.footer-column {
    flex: 1 1 180px;
    min-width: 150px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dod-gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dod-blue);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 12px 0;
    transition: transform 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--dod-gold);
}

.footer-column ul li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dod-light-blue);
    font-weight: bold;
}

.footer-info {
    flex: 1 1 300px;
    margin: 10px;
    text-align: left;
}

.footer-info img {
    width: 120px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    margin: 15px 0;
    line-height: 1.6;
    color: var(--dod-light-gray);
}

.search-box {
    position: relative;
    margin-top: 20px;
}

.search-box input {
    width: 70%;
    max-width: 300px;
    padding: 10px 12px;
    background: #333;
    border: 1px solid var(--dod-gray);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--dod-light-blue);
    box-shadow: 0 0 0 2px rgba(44, 95, 169, 0.3);
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--dod-light-gray);
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 20px;
    gap: 20px;
    font-size: 14px;
}

.footer-left {
    margin-bottom: 15px;
}

.footer-left img {
    height: 50px;
}

.footer-links {
    text-align: center;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
}

.footer-links a {
    color: var(--dod-light-gray);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dod-gold);
    text-decoration: underline;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-icons a {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-icons a:hover {
    color: var(--dod-gold);
    transform: translateY(-3px);
}

.subscribe-btn {
    background-color: var(--dod-light-blue);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-btn:hover {
    background-color: #1b4175;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-hosting {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: var(--dod-gray);
    padding-top: 15px;
    border-top: 1px solid var(--dod-gray);
}

.emergency-banner {
    background-color: #c00;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.emergency-banner i {
    font-size: 20px;
}

/* Enhanced responsive footer */
@media (max-width: 1024px) {
  .footer-container {
    margin: 50px 40px;
  }
  
  .footer-top {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 100px 15px 20px;
  }
  
  .footer-container {
    margin: 50px 20px;
  }
  
    .footer-top {
        flex-direction: column;
    gap: 20px;
    }
  
    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 25px;
    }
  
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-info img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 80px 10px 15px;
  }
  
  .footer-container {
    margin: 30px 10px;
  }
  
  .footer-column h3 {
    font-size: 16px;
  }
  
  .footer-info img {
    width: 80px;
  }
  
  .search-box input {
    font-size: 12px;
    padding: 10px 12px;
  }
}


/* Base Styles */

.partners-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('texture-dark.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: #4437d4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider span {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.divider i {
    color: #07095a;
    margin: 0 15px;
    font-size: 12px;
}


/* Partners Grid */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.partner-card {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 150px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #d4af37;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #0a0966;
}

.partner-overlay p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.4;
}

.partner-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 15px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: #d4af37;
    color: black;
}


/* CTA Section */

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d4af37;
    color: black;
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-card {
        height: 120px;
    }
}


/* Elite Defense Partners Section */

.elite-partners {
    background-color: #0a0a0a;
 
    color: #ffffff;
    padding: 60px 0;
    font-family: 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elite-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */

.elite-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.elite-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.elite-section-title span {
    color: #c8a951;
}

.elite-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

.elite-divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a951, transparent);
}

.elite-divider-star {
    color: #c8a951;
    margin: 0 15px;
    font-size: 14px;
}

.elite-section-subtitle {
    font-size: 1rem;
    color: #aaaaaa;
    text-transform: none;
    letter-spacing: normal;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}


/* Partners Grid */

.elite-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding: 15px 0;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.elite-partners-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(200, 169, 81, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 169, 81, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(200, 169, 81, 0.04) 0%, transparent 50%);
    z-index: -1;
    border-radius: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elite-partner-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 0px;
    height: 130px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    backdrop-filter: blur(10px);
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.elite-partner-card:nth-child(1) { 
    animation-delay: 0.1s; 
    animation: cardSlideIn 0.6s ease-out 0.1s forwards;
}
.elite-partner-card:nth-child(2) { 
    animation-delay: 0.2s; 
    animation: cardSlideIn 0.6s ease-out 0.2s forwards;
}
.elite-partner-card:nth-child(3) { 
    animation-delay: 0.3s; 
    animation: cardSlideIn 0.6s ease-out 0.3s forwards;
}
.elite-partner-card:nth-child(4) { 
    animation-delay: 0.4s; 
    animation: cardSlideIn 0.6s ease-out 0.4s forwards;
}
.elite-partner-card:nth-child(5) { 
    animation-delay: 0.5s; 
    animation: cardSlideIn 0.6s ease-out 0.5s forwards;
}
.elite-partner-card:nth-child(6) { 
    animation-delay: 0.6s; 
    animation: cardSlideIn 0.6s ease-out 0.6s forwards;
}
.elite-partner-card:nth-child(7) { 
    animation-delay: 0.7s; 
    animation: cardSlideIn 0.6s ease-out 0.7s forwards;
}
.elite-partner-card:nth-child(8) { 
    animation-delay: 0.8s; 
    animation: cardSlideIn 0.6s ease-out 0.8s forwards;
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.elite-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(200, 169, 81, 0.15) 0%, 
        rgba(200, 169, 81, 0.08) 50%, 
        rgba(200, 169, 81, 0.12) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 0px;
    z-index: 1;
}

.elite-partner-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(200, 169, 81, 0.3),
        0 0 30px rgba(200, 169, 81, 0.4);
    border: none;
    background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
    animation-play-state: paused;
}

.elite-partner-card:hover::before {
    opacity: 1;
}

.partner-link {
    display: block !important;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    position: relative !important;
    z-index: 2;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden !important;
}

.elite-partner-logo::after {
    display: none;
}

.partner-logo {
    width: 150% !important;
    height: 150% !important;
    object-fit: cover !important;
    filter: brightness(1) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0px;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

/* Ranger logosunu büyüt */
.gentex-logo {
    transform: translate(-50%, -50%) scale(1.4) !important;
}

/* Prime Group logosunu küçült */
.prime-logo {
    transform: translate(-50%, -50%) scale(0.8) !important;
}

.elite-partner-card:hover .partner-logo {
    filter: brightness(1.3) contrast(1.2) saturate(1.2);
    transform: translate(-50%, -50%) scale(1.25) !important;
    box-shadow: 0 0 25px rgba(200, 169, 81, 0.4);
}

/* Ranger hover efekti */
.elite-partner-card:hover .gentex-logo {
    transform: translate(-50%, -50%) scale(1.45) !important;
}

/* Prime Group hover efekti */
.elite-partner-card:hover .prime-logo {
    transform: translate(-50%, -50%) scale(0.9) !important;
}

.partner-link:hover {
    transform: scale(1.02);
}

.elite-partner-card:hover .elite-partner-logo::after {
    display: none;
}



.elite-partner-card:hover .elite-partner-overlay {
    opacity: 1;
}

.elite-partner-overlay h3 {
    color: #c8a951;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: center;
}

.elite-partner-overlay p {
    color: #aaaaaa;
    font-size: 0.8rem;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
}


/* CTA Section */

.elite-cta {
    text-align: center;
    margin-top: 40px;
}

.elite-cta p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.elite-cta p span {
    color: #c8a951;
}

.elite-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #c8a951;
    border: 2px solid #c8a951;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elite-button:hover {
    background-color: #c8a951;
    color: black;
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .elite-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .elite-section-title {
        font-size: 2rem;
    }
    .elite-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .elite-cta p {
        font-size: 1.2rem;
    }
}

/* Enhanced responsive elite partners */
@media (max-width: 1024px) {
  .elite-partners {
    padding: 50px 0;
  }
  
  .elite-container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
    .elite-partners {
        padding: 40px 0;
    }
  
  .elite-section-title {
    font-size: 2rem;
  }
  
  .elite-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .elite-partner-card {
    height: 120px;
    border-radius: 0px;
  }
  
  .elite-partner-logo {
    padding: 0 !important;
  }
  
  .partner-logo {
    width: 150% !important;
    height: 150% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
  }
  
  /* Tablet - Ranger büyük, Prime küçük */
  .gentex-logo {
    transform: translate(-50%, -50%) scale(1.4) !important;
  }
  
  .prime-logo {
    transform: translate(-50%, -50%) scale(0.8) !important;
  }
  
  /* Fix specific partner logos on tablets */
  .yesari-link, .galata-link, .prime-link, .roketsan-link {
      position: relative !important;
      top: auto !important;
      right: auto !important;
      width: 100% !important;
      height: 100% !important;
      margin: 0 !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
  }

  .yesari-logo, .galata-logo, .prime-logo {
      max-width: 120% !important;
      max-height: 160px !important;
      object-fit: contain !important;
  }
  
  .mertsav-logo {
      max-width: 100% !important;
      max-height: 100% !important;
      object-fit: contain !important;
  }
  
  .roketsan-logo {
      max-width: 110% !important;
      max-height: 140px !important;
      object-fit: contain !important;
  }
  
  
  .elite-cta p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .elite-partners {
    padding: 30px 0;
  }
  
    .elite-section-title {
        font-size: 1.8rem;
    }
  
    .elite-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
  
    .elite-partner-card {
        height: 100px;
        border-radius: 0px;
        overflow: hidden;
    }
  
    .elite-partner-logo {
        padding: 0 !important;
    }
    
    .partner-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        padding: 15px !important;
        height: 100% !important;
        width: 100% !important;
        overflow: visible !important;
    }
  
    .partner-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 200px !important;
        min-height: 200px !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        filter: brightness(1) contrast(1.1) !important;
    }
    
    /* Mobil - Tüm logolar düzenli ve okunabilir */
    .gentex-logo {
        width: 220px !important;
        height: 220px !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 220px !important;
        min-height: 220px !important;
        object-fit: contain !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .prime-logo {
        width: 180px !important;
        height: 180px !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 180px !important;
        min-height: 180px !important;
        object-fit: contain !important;
        transform: translate(-50%, -50%) !important;
    }
  
    /* Fix specific partner logos on mobile */
    .yesari-link, .galata-link, .prime-link, .roketsan-link {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
  
    .yesari-logo, .galata-logo, .prime-logo {
        max-width: 115% !important;
        max-height: 140px !important;
        object-fit: contain !important;
    }
    
    .mertsav-logo {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
    
    .roketsan-logo {
        max-width: 115% !important;
        max-height: 130px !important;
        object-fit: contain !important;
    }
    
  
    .elite-cta p {
        font-size: 1.1rem;
    }
  
  .elite-button {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}



































.prime-link { top: -115px; position: absolute;
  display: flex;
  justify-content: center;   /* yatay ortalama */
  align-items: center;       /* dikey ortalama */
  width: 319px; 
  height: 350px;
  background-color: #ffffff; 
right: -22px;
}

.prime-logo {  
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.galata-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  height: 230px;          /* kutu yüksekliği */
  background-color: #ffffff; /* beyaz arka plan */
  border: 1px solid #ddd;     /* opsiyonel: ince çerçeve */
  border-radius: 6px;         /* opsiyonel: hafif köşe yumuşatma */
}

.galata-logo {  
  max-width: 100%;   
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease; /* hover efekti */
}

.galata-logo:hover {
  transform: scale(1.05); /* üzerine gelince hafif büyür */
}



.roketsan-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* beyaz arkaplan */
}

.roketsan-logo {  
  max-width: 110%;   
  max-height: 110%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.aselsan-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.aselsan-logo {  
  max-width: 100%;   
  max-height: 100%;
  object-fit: contain;
}












/* ABOUT US SECTION STYLES */
.about-section {
  position: relative;
  padding: 2rem 2rem;
  background-color: #f8f9fa;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;

}

.section-header { 
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.header-underline {
  width: 80px;
  height: 4px;
  background: #d4af37;
  margin: 0 auto;
  border-radius: 2px;
}
/* YENİ SABİT ÇİZGİ STİLİ (Diğer stilleri bozmadan) */
.timeline-line-fixed {
  position: fixed; /* Sabit pozisyon */
  left: 10%;
  top: 0;
  width: 4px;
  height: 188vh; /* Viewport yüksekliği kadar */
  background: linear-gradient(to bottom, #1a237e, #d4af37);
  z-index: 1;
  transform: translateX(-50%);
}

/* Eski animasyonlu çizgiyi kaldırıyoruz */
.timeline-line { display: none; }

/* About Content */
.about-content {
  margin-bottom: 5rem;
}

.about-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.about-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(26, 35, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon svg {
  width: 35px;
  height: 35px;
  fill: #1a237e;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.6rem;
}

/* Vision Section */
.vision-section {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.vision-card {
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  border-radius: 15px;
  padding: 3.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(26, 35, 126, 0.2);
  width: 100%;
  margin: 0 auto;
}

.vision-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: rotate-glow 15s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vision-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vision-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.vision-content p {
  color: #f1f1f1;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Mission Section */
.mission-section {
  position: relative;
  z-index: 2;
}

.mission-card {
  background: white;
  border-radius: 15px;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 6px solid #d4af37;
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.mission-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.mission-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon svg {
  width: 35px;
  height: 35px;
  fill: #d4af37;
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  flex: 1;
}

/* Enhanced responsive about section */
@media (max-width: 1024px) {
  .about-card {
    padding: 3rem;
  }
  
  .vision-card, .mission-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 1.5rem 1rem;
  }
  
  .about-card, .vision-content, .mission-content {
    flex-direction: column;
    padding: 2rem;
  }
  
  .about-icon, .vision-icon, .mission-icon {
    margin-bottom: 1.5rem;
  }
  
  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .about-text p, .vision-content p, .mission-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 1rem 0.5rem;
  }
  
  .about-card, .vision-card, .mission-card {
    padding: 1.5rem;
  }
  
  .about-text p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: justify;
    word-spacing: -0.5px;
    letter-spacing: -0.2px;
    font-weight: 400;
  }
  
  .vision-content p, .mission-content p {
    font-size: 13px;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 6px;
    word-spacing: -0.5px;
    letter-spacing: -0.2px;
    font-weight: 400;
  }
  
  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}


.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}











/* Kartların boylarını eşitle */
.main-news-card,
.secondary-news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 6px;

}






.secondary-news-content {
  display: grid;
  grid-template-rows: auto 1fr auto; 
  min-height: 220px;
}












/* ---------- mevcut .news-grid'in içine ekle / değiştir ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;

    /* çok önemli: tüm hücrelerin aynı yükseklikte olmasını sağlar */
    grid-auto-rows: 1fr;
}

/* her kategori hücresi tamamen dolsun ve iç elemanlar dikey olarak yayılabilsin */
.news-category {
    display: flex;
    flex-direction: column;
    height: 100%;         /* grid hücresinin tamamını kapla */
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}


/* resimler sabit yüksekliğe sahip olmalı */
.main-image {
    width: 100%;
    height: 200px;   /* hepsi aynı yüksekliğe eşitlenmiş resimler */
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

/* içerik bölmesini grid'e ayırıyoruz: başlık, tarih, excerpt satırları aynı yerlerde başlasın */
.main-news-content {
    display: grid;
    grid-template-rows: auto auto 1fr; /* 1: başlık, 2: tarih, 3: açıklama (esneyen) */
    gap: 8px;
    padding: 20px;
    min-height: 220px; /* gerekirse artır */
}

/* başlık ve tarih için sıfır margin ayarları */
.main-news-content h3 { margin: 0; line-height: 1.3; }
.news-date { margin: 0; font-size: 13px; color: #777; }

/* excerpt (açıklama) için overflow kontrolü, böylece satır başları hizada kalır */
.news-excerpt {
    margin: 0;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    overflow: hidden;
}

/* secondary kart: görsel + içerik; category içindeki ikinci kart da sabit davranmalı */
.secondary-news-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    flex: 0 0 auto; /* alt kart yüksekliği içeriğe göre ama üstteki esneyenle birlikte sütun eşitliği korunur */
    background: transparent;
}

/* secondary içeriğini de satırlara ayır (başlık + metin vb.) */
.secondary-news-content {
    display: grid;
    grid-template-rows: auto 1fr; /* başlık, kısa metin */
}

/* Enhanced responsive news grid */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  
  .main-image {
    height: 200px;
  }
  
  .main-news-content {
    min-height: 0;
    padding: 15px;
  }
  
  .secondary-news-card {
    padding: 10px 15px;
  }
  
  .category-title {
    font-size: 16px;
    padding: 10px 15px;
  }
  
  .main-news-content h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .news-excerpt {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .secondary-news-content h4 {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .secondary-news-content p {
    font-size: 10px;
    line-height: 1.4;
  }
  
  /* Technology bölümündeki uzun paragraflar için */
  .secondary-news-content p,
  .news-excerpt {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .news-grid {
    padding: 5px;
    gap: 10px;
  }
  
  .main-image {
    height: 180px;
  }
  
  .main-news-content {
    padding: 12px;
  }
  
  .main-news-content h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .news-excerpt {
    font-size: 10px;
    line-height: 1.3;
  }
  
  .category-title {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .secondary-news-content h4 {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .secondary-news-content p {
    font-size: 9px;
    line-height: 1.3;
  }
  
  /* Technology bölümündeki uzun paragraflar için - küçük ekranlar */
  .secondary-news-content p,
  .news-excerpt {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}






.news-container {
  display: flex;          /* veya display: grid */
  flex-direction: column; /* dikeyde sıralamayı sabitler */
}
.news-excerpt {
  order: initial; /* varsayılan sıralamayı korur */
}

@media (max-width: 768px) {
  .news-container {
    display: flex;
    flex-direction: column;
  }
}

.news-excerpt {
  display: block;
}




.main-news-content h3 {
  margin-bottom: 5px; /* başlık ile tarih arası boşluk */
}

/* DYNAMICS bölümündeki metin için özel küçük boyut */
.main-news-content .news-excerpt {
  font-size: 17px !important;
  line-height: 1.3 !important;
}


























.form-row {
  display: flex;
  gap: 12px;
}
.container {
  width: 1200px; /* telefonlarda taşıyor */
}

img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
  .container {
    padding: 10px;
  }
}


/* Global responsive base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Responsive typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1rem 0;
}

/* Responsive containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  p {
    font-size: 0.95em;
  }

  /* Flex containers stack on mobile */
  .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 10px;
  }
  
  h1 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  
  h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
  
  h3 {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
}












img {
  max-width: 100%;
  height: auto;
}




@media (max-width: 768px) {
  /* Küçük ekranlar (tablet, telefon) için stiller */
  .container {
    width: 90%;
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  /* Büyük ekranlar (bilgisayar, TV) için stiller */
  .container {
    width: 70%;
    font-size: 1.2rem;
  }
}