body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.section {
  padding: 34px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}


img {
  max-width: 100%;
  height: auto;
}

/* NAVBAR */
.custom-navbar {
  height: 80px;
}

.navbar-brand {
  height: 80px;
}

@media (min-width: 992px) {
  .nav-logo {
    height: 74px; 
  }
}
@media (min-width: 992px) {
  .navbar .container {
    display: flex;
    align-items: center;
  }

  .navbar-collapse {
    justify-content: space-between;
  }
}


/* NAV LINKLER */
.nav-link {
  color: #333 !important; 
}

.nav-link:hover {
  color: #dc3545;
}

/* PROFİL BUTON */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  height: 40px;
  padding: 0 12px;

  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;

  cursor: pointer;
}

/* Kullanıcı ikonu */
.profile-btn i {
  font-size: 18px;
  color: #333;
  line-height: 1;
}

/* Menü (hamburger) */
.profile-btn .menu-icon {
  font-size: 18px;
  line-height: 1;
  color: #333;
}

/* Hover */
.profile-btn:hover {
  background: #f8f9fa;
}


/* PROFİL MENÜ */
.profile-menu {
  position: absolute;
  top: 60px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  display: none;
  min-width: 220px;
  z-index: 1050;
}

.profile-menu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.profile-menu a:hover {
  background: #f5f5f5;
  color: #dc3545;
}

/* MOBİL AYAR */
@media (max-width: 991px) {

 
  .custom-navbar {
    height: auto;
  }

 
  .navbar-nav {
    text-align: center;
    padding-top: 15px;
  }


  .profile-btn {
    margin: 15px auto;
  }

  
  .profile-menu {
    position: static;
    box-shadow: none;
    border-radius: 8px;
    margin: 10px auto 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .profile-menu a {
    padding: 12px;
  }
}



.profile-menu.show {
  display: block;
}

.profile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  display: block;
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
}

.profile-menu li a:hover {
  background: #f5f5f5;
}


.hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  image-rendering: auto;
  image-rendering: smooth;
  -webkit-font-smoothing: antialiased;  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55))
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding-top: 200px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin-top: 20px;
}

.hero-content .btn {
  margin-top: 30px;
  padding: 12px 32px;
  border-radius: 999px;
}

/* KAMPÜS & GARAJ */
.section h2 {
  font-size: 36px;
  font-weight: 700;
}

.section ul {
  padding-left: 18px;
}

.section ul li {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  font-size: 14px;
}


@media (max-width: 992px) {
  .hero-content {
    padding-top: 160px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 80vh;
  }

  .hero-content {
    padding-top: 140px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  
}

@media (max-width: 576px) {
  .nav-logo {
    height: 48px; 
  }

  .hero-content h1 {
    font-size: 26px;
  }
}
/* LOKASYON HERO */
.location-hero {
  position: relative;
  height: calc(100vh - 80px);
  margin-top: 80px;
}

.location-hero iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CAM EFEKTLİ KART */
.location-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-card h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.location-card h1 span {
  color: #198754;
}

.location-card p {
  margin-top: 20px;
  color: #555;
}

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.location-actions .btn {
  border-radius: 999px;
  padding: 10px 26px;
}

/* ALT BİLGİLER */
.location-info .info-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.location-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
}


@media (max-width: 992px) {
  .location-card {
    left: 5%;
    right: 5%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .location-hero {
    height: auto;
  }

  .location-hero iframe {
    height: 60vh;
  }

  .location-card {
    position: static;
    transform: none;
    margin: -80px 16px 0;
  }

  .location-actions {
    flex-direction: column;
  }
}
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto 0;
  color: #666;
}

section h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

section p {
  color: #4b5563;
  margin-bottom: 24px;
}
#specialText {
  color: orange;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.feature-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
  color: #444;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d32f2f;
  font-weight: bold;
}
/* TÜM PRIMARY, OUTLINE ve SUCCESS BUTONLARI KIRMIZI */
.btn-primary,
.btn-outline-primary,
.btn-success,
.btn-outline-success {
  background-color: #d32f2f !important;
  border-color: #d32f2f !important;
  color: #fff !important;
}

.btn-outline-primary,
.btn-outline-success {
  background-color: transparent !important;
  color: #f57c00 !important;
}
/* HOVER (KOYU TURUNCU) */
.btn-primary:hover,
.btn-outline-primary:hover,
.btn-success:hover,
.btn-outline-success:hover {
  background-color: #ef6c00 !important;
  border-color: #ef6c00 !important;
  color: #fff !important;
}


/* TÜM PRIMARY, OUTLINE ve SUCCESS BUTONLARI TURUNCU */
.btn-primary,
.btn-outline-primary,
.btn-success,
.btn-outline-success {
  background-color: #f57c00 !important; 
  border-color: #f57c00 !important;
  color: #fff !important;
}

/* SLIDE ARKA PLAN */
.hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* KARARTMA (OVERLAY) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* YAZI ALANI */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* BAŞLIK */
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 15px;
}

/* AÇIKLAMA */
.hero-content p {
  font-size: 18px;
  max-width: 750px;
  opacity: 0.95;
  margin-bottom: 25px;
  color: white;
}
/* HERO BUTON */
.hero-content .btn {
  background-color: #c62828;
  border-color: #c62828;
  color: #fff;
  padding: 10px 30px;
  border-radius: 999px;
}

/* HOVER */
.hero-content .btn:hover {
  background-color: #a61d1d;
  border-color: #a61d1d;
  color: #fff;
}
/* BAŞKANDAN BAR */
.baskandan-bar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 20px 0; 
  font-size: 16px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.baskan-avatar {
  width: 130px; 
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #dc3545;
}

.baskandan-text {
  color: #444;
  line-height: 1.8;
}

.baskandan-imza {
  display: inline-block;
  margin-left: 6px;
  font-weight: 600;
  color: #dc3545; 
}

/* MOBİL İNCE AYAR */
@media (max-width: 768px) {
  .baskandan-bar {
    text-align: center;
    padding: 20px 0;  
    
  }

  .baskandan-text {
    font-size: 15px; 
  }

  .baskan-avatar {
    width: 70px;  
    height: 70px;
  }
}

/* BAŞKANDAN ÜSTTE KALSIN */
.baskandan-bar {
  position: relative;
  z-index: 10; 
}

/* HERO SLIDER ARKA PLANI İLE UYUM */
.hero-slide {
  background-size: cover;  
  background-position: center center;
}



/* Navbar logo ve metin uyumları */
.nav-logo {
  height: 70px;
  width: auto;
}
#baskandan {
  scroll-margin-top: 90px; 
}
.what-we-offer-section {
  padding: 80px 0;
  background: #fff;
}

/* BAŞLIK */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title span {
  color: #f59e0b; 
}

/* AÇIKLAMA */
.section-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* LİSTE */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* GÖRSEL */
.offer-image-wrapper img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* MOBİL */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .section-desc {
    text-align: center;
  }

  .offer-list {
    margin-top: 20px;
  }
}
/* EKOSİSTEM ALANI */
.ecosystem-section {
  background: #f6f7fb;
  padding: 64px 0;
  
}

.ecosystem-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
}

.ecosystem-title span {
  color: #ff3b30; 
}

/* KARTLAR */
.ecosystem-item {
  text-align: center;
  padding: 20px;
}

.ecosystem-item .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.ecosystem-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.ecosystem-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecosystem-item ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* MOBİL */
@media (max-width: 768px) {
  .ecosystem-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .ecosystem-item {
    margin-bottom: 30px;
  }
}
/* HERO İÇİN BAŞKAN AVATAR */
.baskan-hero-avatar {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

/* HERO İÇİN İMZA */
.hero-content .baskandan-imza {
  font-weight: 600;
  color: #fff;
}

.hero-content h2 {
  font-weight: 700;
}
/* HERO ALT ÖZELLİKLER */
.hero-features {
  margin-top: -60px; 
  padding-bottom: 60px;
  position: relative;
  z-index: 4;
}

.feature-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-box ul {
  padding-left: 18px;
  margin: 0;
}

.feature-box li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

/* MOBİL DÜZELTME */
@media (max-width: 768px) {
  .hero-features {
    margin-top: 0;
    padding-top: 40px;
  }
}
/* TAM İZOLASYON */
.exp-safe,
.exp-safe *::before,
.exp-safe *::after {
  box-sizing: border-box;
}
.exp-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .exp-row {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.exp-safe {
  overflow-x: hidden;
}


/* SECTION */
.exp-safe {
  padding: 80px 0;
  background: #fff;
}
@media (min-width: 1200px) {
  .exp-left {
    max-width: 680px;
  }
}

/* ROW */
.exp-row {
  align-items: flex-start;
}

/* SOL TARAF */
.exp-left {
  max-width: 560px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;  
  gap: 8px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .exp-tags span {
    font-size: 12px;
    padding: 5px 12px;
    white-space: nowrap;  
  }
}


.exp-tags span {
  background: #f2f4f7;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}



.exp-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exp-left li {
  position: relative;
  padding-left: 30px;
  
  line-height: 1.5;
}

.exp-left li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #22c55e;
  font-weight: 700;
}

/* GÖRSEL */
.exp-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.exp-image img {
  width: 100%;
  height: auto;      
  display: block;
  object-fit: cover;
}

/* MOBİL */
@media (max-width: 991px) {
  .exp-left {
    max-width: 100%;
  }

  .exp-left h2 {
    font-size: 26px;
  }

  .exp-safe {
    padding: 50px 0;
  }
}
.exp-subtitle {
  color: #f97316; 
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.exp-left h2 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 26px;
}

@media (max-width: 991px) {
  .exp-left h2 {
    font-size: 24px;
  }
}
.ecosystem-section {
  padding: 90px 0;
  background: #f8fafc;
}

.ecosystem-header {
  max-width: 900px;
  margin: 0 auto;
}

.ecosystem-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
}

.eco-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px 26px;
  transition: all 0.3s ease;
}

.eco-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.eco-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .ecosystem-section {
    padding: 60px 0;
  }

  .ecosystem-lead {
    font-size: 16px;
  }
}
.ecosystem-shortcut {
  color: rgb(199, 129, 0);
  font-weight: bold; 
}

/* ==============================
   HERO - BAŞKAN 
============================== */

.hero-baskan-pro {
  background: linear-gradient(
    120deg,
    #0b1c2d 0%,
    #123a5a 50%,
    #0b1c2d 100%
  );
  padding: 80px 40px;
  color: #fff;
}

/* Ana layout */
.baskan-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

/* FOTO ALANI */
.baskan-visual {
  display: flex;
  justify-content: center;
}

.baskan-visual img {
  height: 560px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.45));
}

/* METİN ALANI */
.baskan-content h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
}

.baskan-content .title {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #9ac7ff; /* açık mavi */
  margin-bottom: 36px;
}

/* CTA */
.baskan-btn {
  display: inline-block;
  padding: 16px 42px;
  background-color: #c4161c; /* kurumsal kırmızı */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.baskan-btn:hover {
  background-color: #9f1217; /* daha koyu kırmızı */
  color: #ffffff;
}

.baskan-btn:active {
  background-color: #7f0e12; /* tıklama anı */
  transform: translateY(1px);
}


/* ==============================
   TABLET
============================== */

@media (max-width: 991px) {

  .hero-baskan-pro {
    padding: 64px 24px;
  }

  .baskan-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .baskan-visual img {
    height: 420px;
  }
}

/* ==============================
   MOBIL
============================== */

@media (max-width: 576px) {

  .hero-baskan-pro {
    padding: 40px 16px;
  }

  .baskan-visual img {
    height: 320px;
  }

  .baskan-content h2 {
    font-size: 26px;
  }

  .baskan-content .title {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .baskan-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 0;
  }

  /* Mobilde slider oklarını kapat */
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}





/* LOCATION HERO */
.location-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* MAP */
.location-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* BİLGİ KARTI */
/* LOCATION CARD */
.location-card {
  background: #ffffff;
  padding: 20px 18px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 360px;
}

/* BAŞLIK */
.location-card h1 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937; 
}

.location-card h1 span {
  color: #15803d; 
  font-weight: 800;
}

/* AÇIKLAMA */
.location-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 18px;
}

/* BUTON ALANI */
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ANA CTA */
.location-actions .btn-success {
  background-color: #dc2626; 
  border: none;
  border-radius: 999px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
}

.location-actions .btn-success:hover {
  background-color: #b91c1c;
}

/* İKİNCİ BUTON */
.location-actions .btn-outline-secondary {
  border-radius: 999px;
  font-size: 13px;
  padding: 10px 0;
}


@media (max-width: 768px) {
  .location-hero {
    position: relative;
  }

  .location-hero iframe {
    width: 100%;
    height: 60vh;
    position: relative;
    z-index: 1; /* harita altta */
  }

  .location-card {
    position: absolute;          
    bottom: 20px;               
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 360px;
    z-index: 10;                 
    border-radius: 16px;
    padding: 18px 16px;
  }
   .location-card h1 {
    font-size: 20px;
  }

  .location-card p {
    font-size: 13px;
  }
}
/* =========================
   BAŞKANDAN SAYFASI (İZOLE)
   ========================= */

.page-baskandan .bd-hero {
  background: linear-gradient(
    135deg,
    #0f2a44 0%,
    #163a5f 100%
  );
  color: #ffffff;
  padding: 160px 0 100px;
  text-align: center;
}

.page-baskandan .bd-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-baskandan .bd-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* FOTO */
.page-baskandan .bd-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* METİN */
.page-baskandan .bd-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

/* İMZA */
.page-baskandan .bd-signature {
  margin-top: 30px;
  font-size: 15px;
  color: #111827;
}

.page-baskandan .bd-signature span {
  font-size: 14px;
  color: #6b7280;
}

/* MOBİL */
@media (max-width: 768px) {
  .page-baskandan .bd-hero {
    padding: 90px 0 60px;
  }

  .page-baskandan .bd-hero h1 {
    font-size: 32px;
  }

  .page-baskandan .bd-photo {
    max-width: 240px;
    margin-bottom: 20px;
  }
  .page-baskandan .bd-content {
    padding-left: 0;
    padding-right: 0;
  }

  
  .page-baskandan .bd-content .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  
  .page-baskandan .bd-content .row {
    --bs-gutter-x: 1.25rem;
  }

 
  .page-baskandan .bd-text {
    padding: 0;
    margin: 0;
  }

 
  .page-baskandan .bd-text p {
    font-size: 15.5px;
    line-height: 1.7;
    word-break: break-word;
  }

 
  .page-baskandan .bd-photo {
    max-width: 180px;
    margin-bottom: 20px;
  }

 
  .page-baskandan .bd-signature {
    margin-top: 30px;
  }
}


/* DUYURULAR */
.bd-news-section {
  background: #f8f9fa;
}

.bd-news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.bd-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

.bd-news-image {
  width: 100%;
  height: 180px;              
  object-fit: contain;        
  background: #a7d4f8;       
  padding: 16px;              
  display: block;
}

.bd-news-body {
  padding: 20px;
  flex: 1;
}

.bd-news-date {
  font-size: 13px;
  color: #6c757d;
}

.bd-news-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #212529;
}

.bd-news-desc {
  font-size: 15px;
  color: #495057;
  line-height: 1.6;
}

/* MOBİL */
@media (max-width: 768px) {
  .bd-news-image {
    height: 160px;
  }

  .bd-news-title {
    font-size: 16px;
  }

  .bd-news-desc {
    font-size: 14px;
  }
}
.bd-news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.bd-news-detail {
  padding: 80px 0;
  background: #f8f9fa;
}

.bd-news-detail-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.bd-news-detail-card h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.bd-news-detail-date {
  color: #6c757d;
  margin-bottom: 20px;
}

.bd-news-detail-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.bd-news-detail-content {
  font-size: 17px;
  line-height: 1.8;
  color: #212529;
}

/* Mobil */
@media (max-width: 768px) {
  .bd-news-detail-card {
    padding: 24px;
  }

  .bd-news-detail-card h1 {
    font-size: 24px;
  }
}
/* Duyuru detay görseli */
.bd-news-detail-image {
  max-width: 300px;    
  width: 100%;
  display: block;
  margin: 24px auto;   
  border-radius: 20px;
}
@media (max-width: 768px) {
  .bd-news-detail-image {
    max-width: 200px;
 }
}


body {
  scroll-margin-top: 90px; 
}
.custom-navbar .btn-outline-primary {
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 600;
}

.profile-btn {
  background: none;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-image {
  position: relative;
  z-index: 1;
}

.exp-image img {
  width: 100%;
  height: auto;             
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
  .exp-left {
    position: relative;
    transform: translateX(40px);
    margin-right: -80px;
    max-width: 720px;
    z-index: 3;
  }

  .exp-image {
    transform: translateX(-30px);
  }
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.card-like {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.12),
    0 5px 15px rgba(0,0,0,0.08);
}
@media (max-width: 991px) {
  .exp-left {
    transform: none;
    margin-bottom: 24px;
  }
}
.feature-box h5 {
  font-size: 18px;      
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-box {
  font-size: 12px;      
  line-height: 1.6;
}
@media (max-width: 767px) {
  .feature-box h5 {
    font-size: 15px;
  }

  .feature-box {
    font-size: 13px;
  }
}
.feature-box {
  padding: 20px; 
}
/* ORTAK TAG COMPONENT */
.exp-tags {
  display: flex;
  flex-wrap: wrap;          
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  max-width: 100%;
}

.exp-tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fa 100%
  );

  color: #0f172a;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: transform .25s ease, box-shadow .25s ease;
}
.exp-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
@media (max-width: 767px) {
  .exp-tags {
    gap: 8px;
  }

  .exp-tags span {
    font-size: 12px;
    padding: 5px 12px;
  }
}
#ne{
  color: #f57c00;
}
.page-baskandan {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .page-baskandan {
  padding-top: 60px;
}
}
/* HERO SLIDER – NAVBAR ÇAKIŞMA FIX */
.hero-slider {
  margin-top: 40px; 
}

/* Mobil */
@media (max-width: 768px) {
  .hero-slider {
    margin-top: 85px;
  }
}
.feature-line {
  display: block;         
  width: 100%;
  max-width: 260px;
  height: 3px;             
  margin: 10px 0 14px;     
  border-radius: 2px;
}

@media (max-width: 768px) {
  .feature-line {
    max-width: 200px;
  }
}

.feature-line.orange { 
  background-color: #f97316; 
} 

.feature-line.blue {
  background-color: #38bdf8; 
}

#garaj,
#kampus {
  background-color: #f8f9fa;
  
}

/* Beyaz kart */
.white-block {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 60px 40px;
  margin-top: 60px; 
}

/* Divider */
.white-divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 40px 0;
}

/* Mobil */
@media (max-width: 768px) {
  .white-block {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .white-divider {
    margin: 28px 0;
  }
}
#white{
  margin-top: 70px;
}
.eco-line {
  display: block;
  width: 108px;
  height: 3px;
  border-radius: 2px;
  margin: 8px 0 14px;
}
@media (max-width: 768px) {
  .eco-line {
    width: 100px;  
  }
}


.row > div:nth-child(odd) .eco-line {
  background-color: #f97316;
}


.row > div:nth-child(even) .eco-line {
  background-color: #38bdf8;
}


