/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
  --black: #111111;
  --black-light: #1a1a1a;
  --gold: #ee2b20;
  --gold-dark: #b8943e;
  --gold-light: #d4af37;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-600: #666666;
  --gray-800: #333333;
  --font-primary: "Montserrat", sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --radius: 8px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left span i {
  color: var(--gold);
  margin-right: 6px;
}

.top-bar-right {
  display: flex;
  gap: 14px;
}

.top-bar-right a {
  color: var(--white);
  opacity: 0.8;
}

.top-bar-right a:hover {
  color: var(--gold);
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-black:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-outline-light {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.logo-name .gold-text {
  color: var(--gold);
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Navigation */
.main-nav .nav-list {
  display: flex;
  gap: 28px;
}

.main-nav .nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}

.main-nav .nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
  color: var(--black);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.slider-wrapper {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.slide-tag {
  display: inline-block;
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--gold);
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.slide-content .gold-text {
  color: var(--gold);
}

.slide-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 480px;
}

.slide-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.5);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== SECTION STYLES ===== */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gray-200);
  margin: 0 auto 16px;
  position: relative;
}

.section-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.section-divider.left {
  margin-left: 0;
}

.section-desc {
  color: var(--gray-600);
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.bg-light {
  background: var(--gray-50);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--black);
  gap: 6px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 2px dashed var(--gold);
}

.about-img-placeholder i {
  font-size: 4rem;
  margin-bottom: 16px;
}

.about-img-placeholder span {
  font-weight: 600;
  color: var(--black);
}

.about-content .section-title {
  margin-bottom: 10px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature i {
  font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px 35px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.04;
  border-radius: 50%;
  top: -50px;
  right: -50px;
  transition: var(--transition);
}

.cta-card:hover::after {
  transform: scale(1.5);
}

.cta-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.cta-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-card h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 10px;
}

.cta-card p {
  color: var(--gray-600);
  margin-bottom: 22px;
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.news-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
}

.news-content {
  padding: 22px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.news-content h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.news-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-link:hover {
  color: var(--black);
}

/* ===== USEFUL LINKS ===== */
.useful-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.useful-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: block;
}

.useful-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.useful-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.useful-card h3 {
  color: var(--black);
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.useful-card p {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.useful-card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.4rem;
}

.footer-logo .logo-sub {
  color: var(--gray-300);
}

.footer-about p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 22px;
  color: var(--gold);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.footer-contact ul li i {
  color: var(--gold);
  margin-top: 4px;
}

/* Footer Useful */
.footer-useful {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.useful-links-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.useful-link-item {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.useful-link-item:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.footer-legal a {
  color: var(--gray-300);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--black);
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 100px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 18px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-slider {
    height: 500px;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-placeholder {
    height: 300px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 1.7rem;
  }

  .slide-buttons .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* Hakkımızda Bölümü Genel Ayarları */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Sol Görsel Alanı ve Siyah Kutu Konumlandırması */
.about-image-wrapper {
    position: relative;
    padding-bottom: 40px; /* Siyah kutunun taşma payı için alttan boşluk */
    display: inline-block;
    width: 100%;
}

.main-about-img {
    width: 85%; /* Siyah kutunun sağa taşabilmesi için resmi biraz daralttık */
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 22+ Yıllık Güven Kutusu */
.experience-badge {
    position: absolute;
    bottom: 0;
    right: 5%; /* Resmin sağ köşesine taşacak şekilde konumlandı */
    background-color: #0b0b0b; /* Tam siyah */
    color: #ffffff;
    padding: 30px 25px;
    width: 140px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 2;
}

.experience-badge .exp-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .exp-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #c6251c; /* Altın/Gold rengi tonu */
}

/* Sağ Taraf İçerik Stil Ayarları */
.sub-title-gold {
    color: #c6251c;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Başlığın Altındaki Altın Sarısı İnce Çizgi */
.title-line-gold {
    width: 2px;
    height: 50px;
    background-color: #c6251c;
    margin-left: 2px; /* Başlıkla hizalı durması için */
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
}

/* Siyah Kurumsal Profilimiz Butonu */
.btn-dark-custom {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 15px 30px;
    border-radius: 0; /* Keskin köşeli buton */
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-dark-custom:hover {
    background-color: #c6251c; /* Üzerine gelince altın rengi olsun */
    color: #ffffff;
}

/* Mobil Cihazlar İçin Uyumlandırma */
@media (max-width: 991px) {
    .main-about-img {
        width: 100%;
    }
    .experience-badge {
        right: 0;
        bottom: 10px;
        padding: 20px 15px;
        width: 120px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
.blog-img { 
        position: relative; /* Pozisyon kontrolünü aldık */
        z-index: 1;         /* Sayfadaki diğer öğelerin üzerinde/altında olmasını yönetmek için */
        width: 100%; 
        max-width: 700px; 
        height: 350px;    
        object-fit: cover; 
        border-radius: 40px; 
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
        margin: 0 auto 40px auto; 
        display: block;
        transition: transform 0.4s ease, box-shadow 0.4s ease; /* Hover efekti için */
    }

    /* Görselin üzerine gelince hafif büyüme efekti */
    .blog-img:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px dashed #ee2b20; /* Dosya yükleme alanını belirginleştirir */
    border-radius: 5px;
    background: #fdfdfd;
}

