/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #13547a;
  --secondary-color:              #80d0c7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

    /* YEN� */
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: var(--white-color);
    }




.navbar .dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    border: 0;
    display: inherit;
    opacity: 0;
    min-width: 9rem;
    margin-top: 20px;
    padding: 13px 0 10px 0;
    transition: all 0.3s;
    pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER (ESKİ — artık kullanılmıyor)
-----------------------------------------*/
/* Eski .site-footer sınıfı _Layout'tan kaldırıldı, stiller aşağıda yeni .dj-footer ile değiştirildi */

/*---------------------------------------
  YENİ FOOTER  (.dj-footer)
-----------------------------------------*/

/* Genel sarmalayıcı */
.dj-footer {
  background: linear-gradient(150deg, #0b3347 0%, #13547a 55%, #1a6b9a 100%);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

/* Üstteki ince renkli vurgu bandı */
.dj-footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #80d0c7 0%, #13547a 50%, #80d0c7 100%);
}

/* Ana içerik alanı */
.dj-footer-top {
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo açıklaması */
.dj-footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 310px;
}

/* Bölüm başlıkları */
.dj-footer-heading {
  color: #80d0c7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128,208,199,0.25);
}

/* Link listeleri */
.dj-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dj-footer-links li {
  margin-bottom: 10px;
}

.dj-footer-links li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.22s, transform 0.22s;
}

.dj-footer-links li a::before {
  content: '›';
  color: #80d0c7;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.dj-footer-links li a:hover {
  color: #80d0c7;
  transform: translateX(4px);
}

/* İletişim listesi */
.dj-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dj-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}

.dj-footer-contact li i {
  color: #80d0c7;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.dj-footer-contact li a,
.dj-footer-contact li span {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.22s;
}

.dj-footer-contact li a:hover {
  color: #80d0c7;
}

/* Sosyal medya butonları */
.dj-footer-social {
  display: flex;
  gap: 10px;
}

.dj-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.dj-social-btn:hover {
  background: #80d0c7;
  border-color: #80d0c7;
  color: #0b3347;
  transform: translateY(-3px);
}

.dj-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* Alt copyright bandı */
.dj-footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.22);
}

.dj-footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
}

.dj-footer-bottom strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.dj-footer-tagline {
  font-size: 12px !important;
  opacity: 0.7;
}

/* Mobil düzenlemeleri */
@media (max-width: 991px) {
  .dj-footer-top {
    padding: 48px 0 36px;
  }
  .dj-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .dj-footer-top {
    padding: 36px 0 28px;
  }
  .dj-footer-tagline {
    display: none;
  }
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/* --- DIJIMER NAV-FIX --- */

/* 1. Masa�st� Link Renkleri (Sabit Beyazl��� K�r�yoruz) */
.navbar-expand-lg .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5) !important; /* Pasifler gri-beyaz */
    background: transparent !important;
}

    /* Sadece 'active' s�n�f� olan tam beyaz */
    .navbar-expand-lg .navbar-nav .nav-link.active {
        color: #ffffff !important;
    }

/* 2. M��teri Paneli (Orijinal Buton Tasar�m�) */
.custom-btn-bordered {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 8px 20px !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .custom-btn-bordered:hover {
        background: #fff;
        color: var(--primary-color) !important;
    }


/* ===================== MOBİL NAVBAR DÜZELTMELERİ ===================== */
@media screen and (max-width: 991px) {

    /* 1. Navbar — masaüstüyle aynı hero gradyanı */
    .navbar {
        background: linear-gradient(15deg, #13547a 0%, #80d0c7 100%) !important;
        position: relative !important;
        z-index: 1050 !important;
    }

    /* 2. Collapse açıkken ve animasyondu — sayfanın ÜSTÜNE absolute olarak aç */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1049 !important;
        background: linear-gradient(15deg, #13547a 0%, #80d0c7 100%) !important;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        padding: 12px 20px 20px !important;
        overflow: hidden !important;  /* Bootstrap height animasyonu için */
    }

    /* 3. Nav linkleri */
    .navbar-collapse .nav-link,
    .navbar-collapse button.nav-link {
        color: rgba(255,255,255,0.92) !important;
        padding: 11px 4px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        background: transparent !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 14px !important;
    }
    .navbar-collapse .nav-link.active,
    .navbar-collapse .nav-link:hover,
    .navbar-collapse button.nav-link:hover { color: #ffffff !important; }

    /* 4. Dropdown — static pozisyon, Bootstrap .show ile açılır */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        float: none !important;
        background: rgba(255,255,255,0.1) !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 6px 0 10px 14px !important;
        margin: 4px 0 8px !important;
        /* Bootstrap'in opacity/display kontrolüne izin ver */
        display: none !important;
    }
    .navbar-collapse .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .navbar-collapse .dropdown-menu::before,
    .navbar-collapse .dropdown-menu::after { display: none !important; }

    .navbar-collapse .dropdown-item {
        color: rgba(255,255,255,0.88) !important;
        font-size: 13px !important;
        padding: 8px 12px !important;
        background: transparent !important;
        border-radius: 6px !important;
        white-space: normal !important;
    }
    .navbar-collapse .dropdown-item:hover,
    .navbar-collapse .dropdown-item:focus {
        color: #fff !important;
        background: rgba(255,255,255,0.12) !important;
    }

    /* 5. Dropdown divider */
    .navbar-collapse .dropdown-divider {
        border-color: rgba(255,255,255,0.15) !important;
    }
}

/* ===================== BÖLÜM AYRAÇLARI ===================== */
/* Aynı arka plan renkli bölümlerin görsel ayrımı */
.section-padding + .section-padding:not(.section-bg):not([style*="gradient"]) {
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===================== MOBİL RESPONSIVE DÜZELTMELERİ ===================== */

/*
 * Sorun: .custom-block-overlay-text ve .social-share her ikisi de
 * position:absolute, bu yüzden mobilde içerik büyüdüğünde stats (social-share)
 * butonla çakışıyor.
 * Çözüm: Mobilde inner flex container'ı normal flow'a çevir,
 * absolute konumlandırmayı kaldır.
 */
@media screen and (max-width: 767px) {

    /* Hero bölümleri: buton satırı dikey hizalanır, butonlar tam genişlik olur */
    .site-header .d-flex.align-items-center.mt-4,
    .site-header .d-flex.align-items-center {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px;
    }

    .site-header .d-flex.align-items-center .btn,
    .site-header .d-flex.align-items-center a.btn {
        width: 100% !important;
        text-align: center !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Overlay kart: absolute konumu kaldır, normal flex flow'a geç */
    .custom-block-overlay {
        min-height: auto !important;
    }

    .custom-block-overlay > div[style*="background"] {
        position: relative;
    }

    .custom-block-overlay .custom-block-overlay-text {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        padding: 24px 20px 16px !important;
        z-index: 2;
    }

    .custom-block-overlay .social-share {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        padding: 0 20px 20px !important;
        z-index: 2;
    }

    /* section-overlay (gradient pseudo) sadece görsel, içerik üstüne çıkmasın */
    .custom-block-overlay .section-overlay {
        border-radius: var(--border-radius-medium);
    }

    /* Başlık font boyutu küçültme */
    h1 {
        font-size: 36px !important;
    }

    /* Hero site-header dikey padding küçültme */
    .site-header {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    /* mb-5 hero sol col — daha az boşluk */
    .site-header .col-lg-5.col-12.mb-5,
    .site-header .col-lg-6.col-12.mb-5 {
        margin-bottom: 24px !important;
    }

    /* Index hero butonlar (flex-wrap zaten var, ekstra güvence) */
    .hero-section .d-flex.justify-content-center {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px;
    }

    .hero-section .d-flex.justify-content-center .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* topics-detail-block (hero sağ kart) - padding küçültme */
    .topics-detail-block.p-5 {
        padding: 28px !important;
    }

    /* custom-block iç padding küçültme */
    .custom-block {
        padding: 20px;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    .custom-btn {
        font-size: 16px;
        padding: 9px 16px;
    }

    /* Stats rakamları - biraz küçült */
    .social-share [style*="font-size:1.8rem"],
    .social-share [style*="font-size:1.6rem"] {
        font-size: 1.4rem !important;
    }
}
