@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Condensed:wght@400;700&family=Open+Sans:wght@400;600&display=swap");
@import 'chatbot.css';
@import 'template.css';
@import 'responsive.css';

/****************************************************************************/
:root {
  /* Ana renkler */
  --primary-color: #0f5b9c;
  --primary-light: #0670ab;
  --primary-dark: #0e1d36;
  --primary-bg: rgba(87, 117, 134, 0.7);
  --primary-transparent: rgba(6, 112, 171, 0.1);
  --primary2-color: #15273b;
  --secondary-color: #1e88e5;
  --accent-color: #ff6e40;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #666666;

  /* Diğer renkler */
  --black: #000;
  --light-gray: #f1f1f1;
  --gray-bg: rgba(6, 113, 171, 0.11);

  /* Yazı tipleri */
  --main-font: 'Lexend', Arial, sans-serif;

  /* Geçiş süreleri */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;

  /* Border radius */
  --radius-small: 5px;
  --radius-medium: 10px;
  --radius-large: 50px;

  /* Gölgeler */
  --shadow-small: 0 0 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-large: 10px 18px 47px -11px rgba(0, 0, 0, 0.26);
}


.home-facet h2 {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-light);
  width: 300px;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {

  .search-home-facets,
  .home-facet-container {
    display: flex;
    justify-content: flex-end;
  }
}

html {
  width: 100%;
}

body {
  color: #000;
  width: 100%;
  font-size: 1rem;
  font-family: Lexend, Arial;
  line-height: 1.5;
}

body, a, p, h1, h2, h3, h4, h5, h6, .main-nav > ul > li > a, .main-nav ul li a, .topnav > .topnav-item span, .kl-font-alt, .page-title, .sidebar .widget, .eBlog.itemView .itemBody span  {
    font-family: 'Roboto Condensed', sans-serif!important;
}

/* Font Awesome ikonları için fontu sabitleyelim */

.fab {
    font-weight: 400;
}

.far {
    font-weight: 400;
}

.fa,
.fas {
    font-weight: 900;
}

.result>div.media>div.media-body>div.result-body>h2 {
  margin-top: unset;
}


/* SEARCH RESULTS - Authors Info */
.result-body .authors {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
}

.result-body .authors a.result-author {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}

.result-body .authors a.result-author:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* SEARCH RESULTS - Links Section Spacing */
.result-links .icon-link {
  display: block;
  margin-bottom: 0.5rem;
}

.result-links .savedLists {
  margin-top: 0.5rem;
}

/* SEARCH RESULTS - Format Badges Modern */
.result-formats {
  margin: 0.75rem 0;
}

.result-formats .label {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-formats .label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Different colors for different formats */
.result-formats .label-info {
  background: linear-gradient(135deg, #17a2b8 0%, #20c0da 100%);
}

.result-formats .label-success {
  background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
}

.result-formats .label-warning {
  background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
  color: #333;
}

.result-formats .label-danger {
  background: linear-gradient(135deg, #dc3545 0%, #e4606d 100%);
}

/* SEARCH RESULTS - Cover Image Hover Effect */
.result .media-left img,
.result .media-right img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result .media-left img:hover,
.result .media-right img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
}

/* SEARCH RESULTS - Availability Status */
.availability-loading {
  background: linear-gradient(135deg, #6c757d 0%, #868e96 100%) !important;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.status .label-success {
  background: linear-gradient(135deg, #28a745 0%, #34ce57 100%) !important;
}

.status .label-danger {
  background: linear-gradient(135deg, #dc3545 0%, #e4606d 100%) !important;
}

.status .label-warning {
  background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%) !important;
  color: #333 !important;
}

/* SEARCH RESULTS - Icons Spacing */
.result-body strong i,
.result-links i {
  margin-right: 0.4rem;
  color: var(--primary-color);
}

.callnumAndLocation strong {
  color: var(--dark-text);
  font-weight: 600;
}

/* SEARCH RESULTS - Snippet/Highlight */
.result-body .highlight-snippet,
.result-body strong+div {
  background: linear-gradient(to right, #fff8e1 0%, #fffbf0 100%);
  padding: 0.75rem;
  border-left: 4px solid #ffc107;
  margin: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  border-radius: 0 6px 6px 0;
}

/* LOGIN FORM - Modern Styling */
.form-login {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-login .form-group {
  margin-bottom: 1.5rem;
}

.form-login input[type="text"],
.form-login input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-login input[type="text"]:focus,
.form-login input[type="password"]:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 104, 129, 0.1);
}

.form-login .btn-login {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.form-login .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 104, 129, 0.3);
}

.form-login .login-actions {
  text-align: center;
}

.form-login .forgot-password-link,
.form-login .createAccountLink,
.form-login .recover-account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.form-login .forgot-password-link:hover,
.form-login .createAccountLink:hover,
.form-login .recover-account-link:hover {
  background: rgba(14, 104, 129, 0.05);
  color: var(--primary-light);
  text-decoration: none;
}

.form-login .forgot-password-link i {
  font-size: 1rem;
}

/* LOGIN - Mobile Responsive */
@media (max-width: 768px) {
  .form-login {
    padding: 1.5rem;
    margin: 1rem;
  }

  .form-login .btn-link {
    display: block;
    margin: 0.5rem 0;
  }
}

/* PASSWORD RECOVERY PAGE - Modern Step-by-Step Guide */
.password-recovery-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.recovery-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(14, 104, 129, 0.2);
}

.recovery-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.recovery-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.recovery-info {
  border-left: 4px solid #17a2b8;
  background: linear-gradient(to right, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
  margin-bottom: 2rem;
}

.recovery-info h4 {
  color: #17a2b8;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* NAVBAR SETTINGS */

.banner,
#header-collapse {
  background-color: #0f5b9c;
  margin-bottom: 0px;
  margin-top: 0px;
  border: 0px;
}

/* Header Collapse Responsive */
@media (max-width: 767px) {
  #header-collapse {
    background-color: #0f5b9c;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
  }

  #header-collapse>nav>ul {
    margin: 0;
    padding: 0;
    float: none !important;
    text-align: center;
  }

  #header-collapse>nav>ul.navbar-left,
  #header-collapse>nav>ul.navbar-right {
    float: none !important;
    margin: 0;
  }

  #header-collapse>nav>ul>li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #header-collapse>nav>ul>li>a,
  #header-collapse>nav>ul>li>a.icon-link,
  #loginOptions>a {
    display: block !important;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    border-radius: 0;
    background: #003869 !important;
    text-align: center;
    box-sizing: border-box;
  }

  #header-collapse>nav>ul>li>a:hover,
  #header-collapse>nav>ul>li>a.icon-link:hover,
  #loginOptions>a:hover {
    background: #00539B !important;
  }
}

.navbar,
.navbar-brand,
#loginOptions a,
.logoutOptions a,
.theme a,
#searchForm>a,
#header-collapse>nav>ul>li.language.dropdown.open>ul,
#cartItems,
#feedbackLink {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.nav>li>a:focus {
  background: transparent;
}

#header-collapse>nav>ul>li.theme.dropdown.open ul {
  padding: 0;
}

#header-collapse>nav>ul>li>a,
#loginOptions>a,
#searchForm>a {
  background: #003869;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  transition: all 0.25s ease;
}

#header-collapse>nav>ul>li.theme.dropdown>a:hover,
#header-collapse>nav>ul>li.theme.dropdown.open>a,
#header-collapse>nav>ul>li.language.dropdown>a:hover,
#header-collapse>nav>ul>li.language.dropdown.open>a,
#loginOptions>a:hover,
#header-collapse>nav>ul>li>a:hover,
#searchForm>a:hover {
  background: #00539B;
  color: #fff;
}

/* SEARCH */
body>header>div.search.container.navbar>div {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

#content {
  background: #fff;
}

/* Hero Intro - Form Üstü Yazılar */
.hero-intro {
  text-align: center;
  margin-bottom: 25px;
  max-width: 700px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Intro Responsive */
@media (max-width: 768px) {
  .hero-intro {
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-description {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-intro {
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 11px;
    line-height: 1.5;
  }
}

#content>div.searchHomeContent {
  margin-top: 0px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(275deg, rgba(0, 56, 105, 0) 0%, rgba(0, 56, 105, 1) 100%),
    url("https://www.asotek.k12.tr/assets/img/slide.jpg");

}

#searchForm {
  color: #000;
  padding: 20px;
  width: 820px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding-bottom: 0px;
  z-index: 2;
}

div.search.container.navbar {
  display: flex;
  justify-content: center;
}

#searchForm_lookfor {
  width: 100%;
  max-width: 600px;
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

#searchForm_lookfor:focus {
  outline: none;
  border-color: #0670ab;
  box-shadow: 0 0 0 3px rgba(6, 112, 171, 0.1);
  background: #fff;
}

#kutuphane-arama-basligi {
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-align: center;
}

#searchForm>ul>li {
  background-color: transparent;
}

#searchForm>ul>li>a {
  color: #fff;
}

#search-arrow {
  width: 50px;
  margin-top: 70px;
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  float: left;
}

/* BREADCRUMBS */
.breadcrumbs a, .breadcrumbs span {
	color: #000;
}


body>nav.breadcrumbs {
  display: block !important;
  background: none;
  background-color: #f8f9fa;
  padding: 12px 0;
  margin-bottom: 20px;
  padding-left:0;
  border-bottom: 1px solid #e9ecef;
  padding-left: 15px;
}

body>nav.breadcrumbs .container {
  padding: 0 15px;
}

body>nav.breadcrumbs .breadcrumb {
    padding: 8px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb>li {
    display: inline-block;
    margin-right: 5px;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #535353;
    content: "/\00a0"
}

.breadcrumb>.active {
    color: #444
}

.breadcrumb {
    margin-top: .5rem;
    margin-bottom: .5rem
}

#searchForm>div.active-filters.hidden-xs>a {
  color: #fff;
}

/* CONTENT */
.search-button {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#adv-search-button {
  margin-left: 10px;
}

/* Center buttons container */
#searchForm>.search-button,
#searchForm>#adv-search-button {
  display: inline-block;
}

#searchForm {
  text-align: center;
}

.top-nav-icon {
  margin-right: 10px;
}

.container,
footer {
  padding: 0;
  margin: 0;
  width: 100%;
}

.dropdown-menu {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-top: 10px;
}

.dropdown-menu a {
  color: #000;
  text-decoration: none;
}

.dropdown-menu a:hover {
  font-weight: bold;
  margin-left: 5px;
  color: #0670ab;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
}

#modal>div>div>div>form>div:nth-child(5)>input {
  background-color: #0670ab;
}

/* FACETS */
.search-home-facets {
  background-color: #fff;
  color: #000;
  padding-left: 200px;
}

#content>div.search-home-facets>div.home-facet.callnumber-first>div>ul>li>a,
#content>div.search-home-facets>div.home-facet.language>div>ul>li>a,
#content>div.search-home-facets>div.home-facet.format>div>ul>li>a,
#content>div.search-home-facets>div.home-facet.author_facet>div>ul>li>a,
#content>div.search-home-facets>div.home-facet.topic_facet>div>ul>li>a,
#content>div.search-home-facets>div.home-facet.dewey-hundreds>div>ul>li>a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

/* Home Facet Links - Hover'da kayma ve büyüme engelleme */
#content>div.search-home-facets>div.home-facet.callnumber-first>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.language>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.format>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.author_facet>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.topic_facet>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.dewey-hundreds>div>ul>li>a:hover {
  transform: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-weight: normal !important;
  font-size: inherit !important;
}

.home-facet {
  width: 60%;
}

#content>div.search-home-facets>div.home-facet.callnumber-first>h2,
#content>div.search-home-facets>div.home-facet.language>h2,
#content>div.search-home-facets>div.home-facet.format>h2,
#content>div.search-home-facets>div.home-facet.author_facet>h2,
#content>div.search-home-facets>div.home-facet.topic_facet>h2,
#content>div.search-home-facets>div.home-facet.dewey-hundreds>h2 {
  font-weight: 600;
}

div.search.container.navbar {
  background-image: url("https://image.hurimg.com/i/hurriyet/75/0x0/60679c1c18c77336a4b726a9.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-attachment: local;
  background-position: center;
}

div.mainbody.right,
#search-sidebar {
  background-color: #fff;
  padding: 20px;
  color: #000;
}

.facet-group>button.title {
  background-color: #0f5b9c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px;
}

.top-facet-inner>a,
a.cart-add,
a.save-record,
.js-facet-item,
#advSearchForm>div.sidebar.right.hidden-print>div>a,
#content>div.mainbody.right>div.searchtools.hidden-print a,
#add_search_link_0,
#groupPlaceHolder>a {
  text-decoration: none;
}

.top-facet-inner>a:not(:hover) {
  transition: 0.1s;
}

/* Top Facets Contents - Sol padding kaldır */
.top-facets-contents {
  padding-left: unset;
}

/* Home Facet List - Hover animasyonlarını kaldır */
.home-facet-list a:hover {
  font-weight: normal !important;
  font-size: inherit !important;
  transform: none !important;
}

.js-facet-item:hover {
  color: #0670ab;
  text-decoration: underline;
}

.js-facet-item:not(:hover) {
  transition: 0.3s;
}

.js-facet-item:hover>.badge {
  background-color: #0670ab;
}

.js-facet-item:not(:hover)>.badge {
  transition: 0.3s;
}

.js-facet-item.active {
  background-color: #0670ab;
  color: #fff;
}

a.cart-add:hover,
a.save-record:hover {
  color: #000;
  transition: 0.2s;
}

a.cart-add:hover> ::before,
a.save-record:hover> ::before {
  color: #0670ab;
  transition: 0.2s;
}

a.cart-add:not(:hover),
a.save-record:not(:hover) {
  transition: 0.2s;
}

a.cart-add:not(:hover)> ::before,
a.save-record:not(:hover)> ::before {
  transition: 0.2s;
}

#content>div.mainbody.right>div.searchtools.hidden-print a:hover,
#add_search_link_0:hover,
#groupPlaceHolder>a:hover {
  color: #0670ab;
  text-decoration: underline;
  transition: 0.3s;
}

#content>div.mainbody.right>div.searchtools.hidden-print a:not(:hover) {
  transition: 0.3s;
}

#publishDateFilter>div.slider-container>div>div.slider-handle.min-slider-handle,
#publishDateFilter>div.slider-container>div>div.slider-handle.max-slider-handle,
#publishDate-range-container>div.slider-container>div>div.slider-handle.min-slider-handle,
#publishDate-range-container>div.slider-container>div>div.slider-handle.max-slider-handle,
#advSearchForm>div.mainbody.right>div>input.btn.btn-primary {
  background-color: #0670ab;
}

/* ADVANCED SEARCH */
#advSearchForm>div.mainbody.right>div>input.btn.btn-primary:hover {
  color: #fff;
  border: 2px solid #0f5b9c;
  transition: 0.3s;
}

#advSearchForm>div.mainbody.right>div>input.btn.btn-primary:not(:hover) {
  transition: 0.3s;
}

#advSearchForm>div.sidebar.right.hidden-print>div>a:hover {
  color: #0670ab;
  text-decoration: underline;
  font-weight: 600;
  transition: 0.3s;
  text-indent: 5px;
}

#advSearchForm>div.sidebar.right.hidden-print>div>a:not(:hover) {
  transition: 0.3s;
}

/* MODAL */
#modal {
  color: #000;
}

/* CART */
#lightbox-title,
#modal>div>div>div>form>div>div.checkbox.pull-left.flip>label,
#advSearchForm>div.sidebar.right.hidden-print {
  color: #000;
}

/* FOOTER */
#poweredBy,
.poweredby {
  background-color: #0e1d36;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: end;
  padding-right: 10px;
  font-size: 15px;
}

#poweredBy:hover {
  transition: 0.2s;
  text-shadow: 2px 2px 10px #ffffff;
}

#poweredBy:not(:hover) {
  transition: 0.2s;
}

body>footer>div.footer-container>div.footer-column>h2 {
  font-weight: 600;
  color: #fff;
}

body>footer>div.footer-container {
  background: #0e1d36;
  width: 100%;
  height: 300px;
  border-top: 5px solid #005198;
  /** margin-top: 100px; **/
}

/* Centering the container */
.aso-center-container {
  display: flex;
  justify-content: center;
  /* Yatayda ortalar */
  align-items: center;
  /* Dikeyde ortalar */
  padding-top: 30px;
  padding-bottom: 10px;
  width: auto;
  height: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .aso-center-container {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0px;
  }
}

.aso-link-slide {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Styling the slick track and list */
.aso-slick-list {
  display: flex;
  /* Flexbox ile resimleri yan yana yerleştiriyoruz */
  justify-content: center;
  /* Yatayda ortalama */
  gap: 15px;
  /* Aralarındaki boşluk */
  flex-wrap: wrap;
  /* Flex-wrap'ı aktif hale getiriyoruz, mobilde satır değiştirmesine izin verir */
  width: 100%;
  /* Listelerin tüm genişliği kapsaması için */
}

.aso-slick-track {
  display: flex;
  gap: 15px;
  /* Aralarındaki boşluk */
  flex-wrap: wrap;
  /*  Yatayda yerleşim */
  justify-content: space-around;
}

/* Styling for each logo container */
.aso-link-box {
  width: 160px;
  /* Her bir resmin genişliği */
  text-align: center;
  /* Resimleri ortalamak için */
  margin: 0 10px;
  /* Eşit boşluk bırakmak için margin ekliyoruz */
}

/* Resimlerin boyutlarını orantılı tutmak */
.aso-link-box img {
  width: 130%;
  /* Resim genişliği %100 olarak ayarlanır */
  height: auto;
  /* Yükseklik oranı korunur */
  transition: transform 0.3s ease;
  /* Resimler üzerine gelindiğinde animasyon */
}

.aso-link-box img:hover {
  transform: scale(1.1);
  /* Hover efekti ile biraz büyür */
}

/* Resmin başlangıçta gri tonlarında görünmesini sağla */
.aso-color-change {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  /* Efektin yumuşak bir şekilde geçiş yapmasını sağlar */
}

/* Fareyle üzerine gelindiğinde renkli hale gelmesi */
.aso-color-change:hover {
  filter: grayscale(0%);
}

/* Responsive adjustments for mobile screens */
@media (max-width: 1024px) {
  .aso-link-box {
    width: 25%;
  }

  .aso-slick-track {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .aso-slick-list {
    justify-content: center;
  }

  .aso-link-box {
    width: 20%;
    margin-bottom: 15px;
  }

  .aso-slick-track {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .aso-link-box {
    width: 20%;
    margin-bottom: 15px;
  }

  .aso-slick-track {
    flex-wrap: wrap;
  }
}

body>footer>div.footer-container>div:nth-child(2) {
  margin-left: 130px;
}

body>footer>div.footer-container>div.footer-column>ul>li {
  line-height: 30px;
  color: #fff;
}

body>footer>div.footer-container>div>ul>li>a {
  text-decoration: none;
  color: #fff;
}

body>footer>div.footer-container>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.callnumber-first>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.language>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.format>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.author_facet>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.topic_facet>div>ul>li>a:hover,
#content>div.search-home-facets>div.home-facet.dewey-hundreds>div>ul>li>a:hover {
  font-weight: bold;
  margin-left: 5px;
  color: #0670ab;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
}

body>footer>div.footer-container>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.callnumber-first>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.language>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.format>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.author_facet>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.topic_facet>div>ul>li>a:not(:hover),
#content>div.search-home-facets>div.home-facet.dewey-hundreds>div>ul>li>a:not(:hover) {
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
}

#footer-logo {
  width: 500px;
  margin-top: 100px;
  margin-left: 60px;
}

/* LIST ALL */
#list1>a.browse-item,
#list2>a.browse-item,
#list3>a.browse-item,
#list4>a.browse-item {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

#list1>a.browse-item:hover,
#list2>a.browse-item:hover,
#list3>a.browse-item:hover #list4>a.browse-item:hover {
  color: #fff;
  background-color: #0f5b9c;
  text-decoration: underline;
  transition: 0.3s;
  text-indent: 5px;
}

#list1>a.browse-item:not(:hover),
#list2>a.browse-item:not(:hover),
#list3>a.browse-item:not(:hover),
#list4>a.browse-item:not(:hover) {
  color: rgb(0, 0, 0);
  transition: 0.3s;
}

#list1>a.browse-item.active,
#list2>a.browse-item.active,
#list3>a.browse-item.active,
#list4>a.browse-item.active {
  color: #fff;
  background-color: #0670ab;
}

#list1>a.browse-item:hover>span.badge,
#list2>a.browse-item:hover>span.badge,
#list3>a.browse-item:hover>span.badge,
#list4>a.browse-item:hover>span.badge {
  color: #fff;
  background-color: #0670ab;
  transition: 0.3s;
  margin-right: 10px;
}

#list4>span.browse-item {
  color: #000;
}

/* ALPHABETIC LIST */
#alphaBrowseForm {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* EXPLORE CHANNELS */
.channel-search {
  display: flex;
  justify-content: center;
}

#content>div>div.channel-title>div>button>i {
  color: #0670ab;
}

#content>div>div.channel-title>div>button:hover>i {
  transform: scale(1.3);
  transition: 0.2s;
}

#content>div>div.channel-title>div>button:not(:hover)>i {
  transition: 0.2s;
}

#content>div>div.channel-add-menu:hover>button.btn.btn-link.dropdown-toggle {
  margin-right: 5px;
  transition: 0.2s;
}

#content>div>div.channel-add-menu:not(:hover)>button.btn.btn-link.dropdown-toggle {
  transition: 0.2s;
}

#searchForm>ul>li.active>a {
  background-color: transparent;
  border: 2px solid #fff;
}

#searchForm>ul {
  border-bottom: 0px;
}

.nav-tabs>li>a:hover,
.nav>li>a:hover,
.nav>li>a:focus {
  background-color: transparent;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
}

#content>nav.record-nav,
#content>div.record {
  padding: 0px 15px;
}

/* SEARCH NEW ITEMS */
#content>h2 {
  text-align: center;
}

.form-search-newitem {
  display: flex;
  justify-content: center;
}

/* TYPEWRITER ANIMATION */
#typewriter {
  font-size: 2em;
  color: #fff;
}

#typewriter-span {
  border-right: 0.05em solid;
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

/* MEDIA TAGS */
/* #search-arrow #searchForm*/


@media only screen and (max-width: 820px) {
  #searchForm {
    width: 80%;
  }

  #search-arrow {
    margin-top: 90px;
  }

  #searchForm_lookfor {
    width: 100%;
  }

  #searchForm_type {
    width: 200px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    transition: all 0.3s ease;
  }

  #searchForm_type:focus {
    outline: none;
    border-color: #0670ab;
    background: #fff;
  }

  .search-home-facets {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 769px) {
  .container-fluid {
    margin: 0;
    width: 100%;
  }

  #quick-row {
    flex-direction: column;
    align-items: center;
  }

  .aso-quick-access-section {
    padding: 30px 15px;
  }

  .aso-quick-access-wrapper {
    flex-direction: row !important;
    gap: 20px;
    width: 100%;
  }

  .aso-quick-access-button {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    padding: 20px 25px;
  }

  .aso-quick-icon {
    width: 50px;
    height: 50px;
  }

  .aso-quick-icon i {
    font-size: 20px;
  }

  #quick-title h4 {
    font-size: 1rem;
  }

  .quick-access-buttons {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .quick-access-buttons a {
    font-size: 0.875rem;
  }

  .quick-access-buttons i {
    font-size: 1rem;
  }

  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-item {
    font-size: 0.875rem;
  }

  .dropdown-item i {
    font-size: 0.75rem;
  }

  #searchForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #searchForm h2,
  #searchForm h1 {
    margin: 10px 0;
  }

  #searchForm input,
  #searchForm select,
  #searchForm button,
  #searchForm a {
    margin: 5px 0;
  }

  @media only screen and (max-width: 769px) {
    #searchForm {
      flex-direction: column;
    }

    #searchForm input,
    #searchForm select,
    #searchForm button,
    #searchForm a {
      width: 100%;
      margin: 5px 0;
    }

    #searchForm .btn-group {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    #searchForm .btn-group button,
    #searchForm .btn-group a {
      flex: 1;
      margin: 5px;
    }
  }

  div.holding-details .holding-field {
    /* flex: 1 1 0; */
    padding-left: 0.5rem;
    /* padding-right: .5rem; */
  }

  #search-arrow {
    display: none;
  }

  #typewriter {
    font-size: 1.2em;
  }

  body>footer>div.footer-container {
    height: 600px;
  }

  body>footer>div.footer-container>div,
  body>footer>div.footer-container>div:nth-child(2) {
    margin-left: 30px;
  }

  #footer-logo {
    width: 300px;
    margin-left: 20px;
  }

  #header-collapse>nav>ul>li.language.dropdown.open>ul>li>a {
    color: #fff;
  }

  #header-collapse>nav>ul>li.language.dropdown.open>ul>li.active>a {
    font-weight: 900;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 548px) {
  #searchForm_lookfor {
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
  }

  #searchForm_type {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    color: #333;
    font-weight: 500;
  }

  .search-button {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
  }

  #adv-search-button {
    margin-left: 0;
    width: 100%;
  }

  #kutuphane-arama-basligi {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 418px) {
  #footer-logo {
    width: 200px;
  }
}

/* QUICK ACCESS - Modern Design */
.aso-quick-access-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 10px 20px;
  margin-top: 0;
}

#quick-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.aso-quick-access-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.aso-quick-access-button {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.aso-quick-access-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 112, 171, 0.05), transparent);
  transition: left 0.5s ease;
}

.aso-quick-access-button:hover::before {
  left: 100%;
}

.aso-quick-access-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(6, 112, 171, 0.15);
  border-color: #0670ab;
}

.aso-quick-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0670ab 0%, #088acf 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 112, 171, 0.2);
}

.aso-quick-access-button:hover .aso-quick-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(6, 112, 171, 0.3);
}

.aso-quick-icon i {
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.aso-quick-access-button:hover .aso-quick-icon i {
  transform: scale(1.1);
}

.aso-quick-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #1f2937;
  transition: color 0.3s ease;
}

.aso-quick-access-button:hover .aso-quick-link {
  color: #0670ab;
}

.aso-quick-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Lexend', Arial, sans-serif;
}

.aso-quick-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.2;
  font-family: 'Lexend', Arial, sans-serif;
  transition: color 0.3s ease;
}

.aso-quick-access-button:hover .aso-quick-subtitle {
  color: #088acf;
}

/* Responsive Styles - Quick Access */
@media screen and (max-width: 1024px) {
  .aso-quick-access-wrapper {
    gap: 20px;
    padding: 0 15px;
  }

  .aso-quick-access-button {
    min-width: 220px;
    padding: 20px 25px;
  }
}

@media screen and (max-width: 768px) {
  .aso-quick-access-section {
    padding: 10px 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .aso-quick-access-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
    padding: 0 10px;
    width: max-content;
  }

  .aso-quick-access-button {
    min-width: 200px;
    padding: 18px 20px;
    gap: 15px;
  }

  .aso-quick-icon {
    width: 50px;
    height: 50px;
  }

  .aso-quick-icon i {
    font-size: 20px;
  }

  .aso-quick-title {
    font-size: 0.95rem;
  }

  .aso-quick-subtitle {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .aso-quick-access-section {
    padding: 8px 5px;
  }

  .aso-quick-access-wrapper {
    gap: 12px;
    padding: 0 5px;
  }

  .aso-quick-access-button {
    min-width: 180px;
    padding: 15px 18px;
    gap: 12px;
  }

  .aso-quick-icon {
    width: 45px;
    height: 45px;
  }

  .aso-quick-icon i {
    font-size: 18px;
  }

  .aso-quick-title {
    font-size: 0.9rem;
  }

  .aso-quick-subtitle {
    font-size: 0.75rem;
  }
}

/* Old Quick Access Styles - Keep for compatibility */
#quick-title {
  margin-right: 20px;
  padding: 15px;
}

.quick-access-buttons {
  padding: 15px;
  margin-right: 20px;
}

.quick-access-buttons a {
  text-decoration: none;
  font-size: 15px;
}

.quick-access-buttons i {
  color: #088acf;
  font-size: 20px;
}

.quick-access-buttons,
.quick-access-buttons i {
  transition: 0.2s;
}

.quick-access-buttons:hover i {
  transform: scale(1.4);
  transition: 0.2s;
}

.quick-access-buttons:hover {
  background-color: #0889cf25;
  transition: 0.2s;
}

.radius-10 {
  border-radius: 10%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 15px;
  margin-top: 3px;
  opacity: 0.9;
}

.dropdown-item {
  display: inline-block;
  margin-bottom: 12px;
}

.dropdown-item i {
  font-size: 14px;
  margin-right: 10px;
}

.dropdown-item:hover {
  text-indent: 5px;
}

.fa-caret-up {
  display: none !important;
}

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

.dropdown:hover .fa-caret-up {
  display: inline-block !important;
}

.dropdown:hover .fa-caret-down {
  display: none;
}

.marc-row-952,
#callNumberWillHidden {
  display: none !important;
}

.holding-available {
  transition: 0.1s;
  border-left: 5px solid #008000;
}

.holding-unavailable {
  transition: 0.1s;
  border-left: 5px solid #8b0000;
}

.itemTableHeader {
  background-color: #044e77 !important;
  color: #fff;
}

.holding-field-title {
  font-weight: bold;
}

.holding-field-title>i {
  margin-right: 5px;
}

div.record-tabs>div>div>h3 {
  text-align: center;
}

div.record-tabs>div>div>table {
  -webkit-box-shadow: 10px 18px 47px -11px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 10px 18px 47px -11px rgba(0, 0, 0, 0.26);
  box-shadow: 10px 18px 47px -11px rgba(0, 0, 0, 0.26);
}

.item-notes {
  padding: 10px;
  background-color: #ebe82370;
  margin-top: 10px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 100px;
}

.qrcode img {
  width: 140px;
}

#myresearch-sidebar {
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 10px;
  padding-bottom: 40px;
}

.aso-footer {
  background-color: var(--primary2-color);
  color: var(--white);
  padding: 40px 0 20px;
  border-top: 5px solid var(--primary-color);
}

.aso-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.aso-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.aso-footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.aso-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aso-footer-links li {
  margin-bottom: 8px;
}

.aso-footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.aso-footer-links li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.aso-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.aso-footer-logo-svg {
  width: 60px;
  height: 60px;
}

.aso-footer-logo-text h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.aso-footer-logo-text p {
  font-size: 14px;
  font-style: italic;
}

.aso-footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .aso-footer-content {
    grid-template-columns: 1fr;
  }
}

/****************************************************************************/
/* HEADER LOGO CONTAINER - Modern & Centered */
/****************************************************************************/
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border, #e6eef7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.logo-center {
  transition: transform 0.3s ease;
}

.logo-center img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .logo-center img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 15px;
  }

  .logo-center img {
    width: 150px;
  }
}

/****************************************************************************/
/* PARTNER LOGOS - Modern Grid Layout */
/****************************************************************************/
.aso-partner-wrapper {
  padding: 0;
  padding-top: 30px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.aso-partners-section {
  padding: 50px 20px;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.aso-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
}

.aso-partners-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.aso-partners-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  margin: 12px auto 0;
  border-radius: 2px;
}

.aso-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aso-partner-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.aso-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 104, 129, 0.03), transparent);
  transition: left 0.5s ease;
}

.aso-partner-card:hover::before {
  left: 100%;
}

.aso-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 104, 129, 0.15);
  border-color: var(--primary-light);
}

.aso-partner-card img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(0.7);
  transition: all 0.3s ease;
}

.aso-partner-card:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .aso-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .aso-partners-section {
    padding: 40px 15px;
  }

  .aso-partners-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .aso-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .aso-partner-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .aso-partners-section {
    padding: 30px 10px;
  }

  .aso-partners-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .aso-partners-grid {
    gap: 12px;
    padding: 0 10px;
  }

  .aso-partner-card {
    padding: 15px;
    border-radius: 10px;
  }

  .aso-partner-card img {
    max-height: 50px;
  }
}

/****************************************************************************/
/* MODERN FOOTER - Premium Design */
/****************************************************************************/
.aso-footer-modern {
  background: linear-gradient(135deg, #001a33 0%, #002850 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.aso-footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d9a522 0%, #f4c542 50%, #d9a522 100%);
}

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

/* Kütüphane Servisleri - 3 Kolon */
.aso-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aso-services-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.aso-services-column:nth-child(1) {
  animation-delay: 0.1s;
}

.aso-services-column:nth-child(2) {
  animation-delay: 0.2s;
}

.aso-services-column:nth-child(3) {
  animation-delay: 0.3s;
}

/* Ana Footer Grid */
.aso-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.aso-footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.aso-footer-column:nth-child(1) {
  animation-delay: 0.4s;
}

.aso-footer-column:nth-child(2) {
  animation-delay: 0.5s;
}

.aso-footer-column:nth-child(3) {
  animation-delay: 0.6s;
}

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

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

.aso-footer-logo-box {
  text-align: center;
}

.aso-footer-logo-box img {
  max-width: 280px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.aso-footer-logo-box img:hover {
  transform: scale(1.02);
}

.aso-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.aso-social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.aso-social-btn:hover {
  background: #d9a522;
  border-color: #d9a522;
  color: #001a33;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(217, 165, 34, 0.3);
}

.aso-footer-heading {
    font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.aso-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d9a522, transparent);
  border-radius: 2px;
}

.aso-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.aso-contact-item:hover {
  color: #d9a522;
  transform: translateX(5px);
}

.aso-contact-icon {
  width: 20px;
  height: 20px;
  background: rgba(217, 165, 34, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9a522;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.aso-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aso-footer-links li {
  margin-bottom: 12px;
}

.aso-footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.aso-footer-links a:hover {
  color: #d9a522;
  transform: translateX(5px);
}

.aso-footer-links a::before {
  content: '→';
  color: #d9a522;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.2s ease;
}

.aso-footer-links a:hover::before {
  opacity: 1;
  margin-right: 5px;
}

.aso-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.aso-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

.aso-copyright strong {
  color: #d9a522;
  font-weight: 600;
}

.aso-copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aso-copyright a:hover {
  color: #d9a522;
}

/* Creative Commons Lisans */
.aso-license a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.aso-license a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.aso-license img {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.aso-license a:hover img {
  opacity: 1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .aso-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .aso-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .aso-footer-logo-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .aso-footer-container {
    padding: 40px 20px 20px;
  }

  .aso-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 35px;
    padding-bottom: 30px;
  }

  .aso-services-column {
    text-align: center;
  }

  .aso-services-column .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .aso-services-column .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .aso-footer-column {
    text-align: center;
  }

  .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .aso-contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-footer-logo-box img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .aso-footer-container {
    padding: 30px 15px 15px;
  }

  .aso-services-grid {
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
  }

  .aso-footer-logo-box img {
    max-width: 180px;
    margin-bottom: 20px;
  }

  .aso-social-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .aso-footer-heading {
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .aso-contact-item {
    font-size: 0.85rem;
    margin-bottom: 12px;
    gap: 10px;
  }

  .aso-contact-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .aso-footer-links a {
    font-size: 0.85rem;
  }

  .aso-footer-bottom {
    padding-top: 20px;
  }

  .aso-copyright {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .aso-footer-container {
    padding: 25px 12px 12px;
  }

  .aso-footer-logo-box img {
    max-width: 150px;
  }

  .aso-social-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .aso-footer-heading {
    font-size: 0.9rem;
  }

  .aso-contact-item,
  .aso-footer-links a {
    font-size: 0.8rem;
  }
}

/****************************************************************************/
/* RECORD PAGE STYLES - Clean & Modern */
/****************************************************************************/
.record-nav {
  padding: 15px 20px;
  border-radius: var(--radius-medium);
  margin-bottom: 20px;
}

.action-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toolbar-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(15, 91, 156, 0.2);
}

.record .media-left {
  padding-right: 20px;
}

.recordcover {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  max-width: 100%;
  height: auto;
}

.qrcode img {
  height: auto;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  padding: 8px;
  background: var(--white);
}

.record h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.table-striped {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  width: 100%;
}

/* Responsive tablo container */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

/* Truncate field için responsive */
.truncate-field {
  width: 100%;
  overflow-x: auto;
}

.table-striped th {
  background: var(--light-bg);
  color: var(--dark-text);
  font-weight: 600;
  padding: 12px 15px;
  width: 30%;
}

.table-striped td {
  padding: 12px 15px;
  vertical-align: top;
}

.record-tabs .nav-tabs {
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 20px;
}

.record-tabs .nav-tabs>li>a {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--light-text);
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.2s ease;
}

.record-tabs .nav-tabs>li.active>a,
.record-tabs .nav-tabs>li>a:hover {
  border-bottom-color: var(--primary-light);
  color: var(--primary-color);
  background: transparent;
}

.holdings-tab table {
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.holding-row {
  transition: all 0.2s ease;
}

.holding-row:hover {
  background-color: rgba(6, 112, 171, 0.03) !important;
}

.holding-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.holding-field {
  flex: 1;
  min-width: 120px;
}

.holding-field-title i {
  color: var(--primary-light);
  margin-right: 6px;
}

/* Sidebar Related Records */
.sidebar.left {
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--radius-medium);
}

/* .sidebar h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
} */

.list-group-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px !important;
  margin-bottom: 10px;
  padding: 12px;
  transition: all 0.2s ease;
}

.list-group-item:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related__title {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related__title:hover {
  color: var(--primary-light);
}

.related__icon {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .record h1 {
    font-size: 1.4rem;
    margin-top: 20px;
  }

  .action-toolbar {
    gap: 2px;
    justify-content: center;
  }

  .toolbar-btn {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .holding-details {
    gap: 10px;
    padding: 10px;
  }

  .holding-field {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 8px;
  }

  .holding-field-title {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  /* Tablo responsive */
  .table-striped {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-striped table {
    min-width: 100%;
  }

  .table-striped tbody,
  .table-striped tr,
  .table-striped td {
    display: block;
    width: 100%;
  }

  .table-striped thead {
    display: none;
  }

  .holding-row {
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
  }

  .holding-available,
  .holding-unavailable {
    border-left-width: 3px;
  }

  /* Place hold button mobile responsive */
  .holding-field.place-hold {
    width: 100%;
    margin-top: 10px;
  }

  .holding-field.place-hold a {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .holding-field.place-hold a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 91, 156, 0.2);
  }
}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
  .holding-details {
    gap: 12px;
  }

  .holding-field {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
  .table-striped {
    font-size: 0.85rem;
  }

  .holding-field-title {
    font-size: 0.8rem;
  }

  .holding-field-title i {
    font-size: 0.75rem;
  }

  .holding-row {
    padding: 8px;
  }

  .holding-field.place-hold a {
    padding: 8px;
    font-size: 0.85rem;
  }

  /* Tablo başlığı responsive */
  .itemTableHeader {
    padding: 8px !important;
  }

  .itemTableHeader .holding-field-title {
    font-size: 0.75rem;
  }

  /* Meta bilgileri gizle küçük ekranlarda */
  .holding-row meta {
    display: none;
  }

  /* Alfabetik browse linklerini optimize et */
  .holding-field a {
    word-break: break-word;
  }
}

/* Search Tools - Arama Araçları */
.searchtools {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px 15px;
  font-size: 14px;
}

.searchtools strong {
  margin-right: 8px;
}

.searchtools a {
  white-space: nowrap;
}

/* Search Tools Responsive */
@media (max-width: 768px) {
  .searchtools {
    display: block !important;
    text-align: left;
    padding: 10px;
    font-size: 12px;
  }

  .searchtools strong {
    display: block;
    margin-bottom: 8px;
  }

  .searchtools a {
    display: block;
    padding: 3px 0;
  }
}

/****************************************************************************/
/* PAGINATION - Professional & Clean Design */
/****************************************************************************/
.pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 25px 15px;
  margin: 20px 0;
  list-style: none;
}

.pagination li {
  margin: 0;
  list-style: none;
}

.pagination li span,
.pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--dark-text);
}

.pagination li a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Aktif sayfa */
.pagination li.active span {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  font-weight: 600;
}

/* İleri/Geri butonları */
.pagination li a.page-next,
.pagination li a.page-prev {
  gap: 6px;
  padding: 0 20px;
  min-width: auto !important;
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  width: auto;
}

.pagination li a.page-next:hover,
.pagination li a.page-prev:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

/* İleri butonu ok ikonu */
.pagination li a.page-next i {
  margin-left: 4px;
}

/* Geri butonu ok ikonu (varsa) */
.pagination li a.page-prev i {
  margin-right: 4px;
}

/* Son sayfa [330] gibi butonlar */
.pagination li a[href*="page="]:last-child {
  background: var(--light-bg);
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.pagination li a[href*="page="]:last-child:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .pagination {
    gap: 6px;
    padding: 20px 10px;
  }

  .pagination li span,
  .pagination li a {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .pagination li a.page-next,
  .pagination li a.page-prev {
    padding: 0 16px;
    font-size: 0.85rem;
    min-width: auto !important;
    width: auto;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 4px;
    padding: 15px 5px;
  }

  .pagination li span,
  .pagination li a {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .pagination li a.page-next,
  .pagination li a.page-prev {
    padding: 0 12px;
    font-size: 0.8rem;
    min-width: auto !important;
    width: auto;
  }

  /* Küçük ekranlarda metin gizle, sadece ikon */
  .pagination li a.page-next,
  .pagination li a.page-prev {
    min-width: 34px;
  }
}

/* Sayfa numaralarını gizleme (çok küçük ekranlarda) */
@media (max-width: 360px) {
  .pagination li:not(.active):not(:has(.page-next)):not(:has(.page-prev)) {
    display: none;
  }

  .pagination li.active,
  .pagination li:has(.page-next),
  .pagination li:has(.page-prev),
  .pagination li:first-child,
  .pagination li:nth-child(2),
  .pagination li:nth-last-child(2),
  .pagination li:last-child {
    display: list-item;
  }
}


.aso-partner-wrapper {
  padding: 0;
  padding-top: 20px;
  margin: 0;
}

#wrapper>div:nth-child(5)>div>div {
  padding-right: 0px;
  padding-left: 0px;
}

.aso-partners-section {
  padding: 50px 20px;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.aso-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e6881 0%, #1a5f7a 50%, #0e6881 100%);
}

.aso-partners-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.aso-partners-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0e6881;
  margin: 12px auto 0;
  border-radius: 2px;
}

.aso-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aso-partner-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.aso-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 104, 129, 0.03), transparent);
  transition: left 0.5s ease;
}

.aso-partner-card:hover::before {
  left: 100%;
}

.aso-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 104, 129, 0.15);
  border-color: #0e6881;
}

.aso-partner-card img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(0.7);
  transition: all 0.3s ease;
}

.aso-partner-card:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
  transform: scale(1.05);
}

/* Modern Footer */
.aso-footer-modern {
  background: linear-gradient(135deg, #001a33 0%, #002850 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.aso-footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d9a522 0%, #f4c542 50%, #d9a522 100%);
}

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

/* Kütüphane Servisleri Bölümü - 3 Kolon */
.aso-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aso-services-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.aso-services-column:nth-child(1) {
  animation-delay: 0.1s;
}

.aso-services-column:nth-child(2) {
  animation-delay: 0.2s;
}

.aso-services-column:nth-child(3) {
  animation-delay: 0.3s;
}

/* Ana Footer Grid - Logo ve Diğer Bilgiler */
.aso-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.aso-footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.aso-footer-column:nth-child(1) {
  animation-delay: 0.4s;
}

.aso-footer-column:nth-child(2) {
  animation-delay: 0.5s;
}

.aso-footer-column:nth-child(3) {
  animation-delay: 0.6s;
}

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

  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.aso-footer-logo-box {
  text-align: center;
}

.aso-footer-logo-box img {
  max-width: 280px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.aso-footer-logo-box img:hover {
  transform: scale(1.02);
}

.aso-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.aso-social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.aso-social-btn:hover {
  background: #d9a522;
  border-color: #d9a522;
  color: #001a33;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(217, 165, 34, 0.3);
}

.aso-footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.aso-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d9a522, transparent);
  border-radius: 2px;
}

.aso-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.aso-contact-item:hover {
  color: #d9a522;
  transform: translateX(5px);
}

.aso-contact-icon {
  width: 20px;
  height: 20px;
  background: rgba(217, 165, 34, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9a522;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.aso-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aso-footer-links li {
  margin-bottom: 12px;
}

.aso-footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.aso-footer-links a:hover {
  color: #d9a522;
  transform: translateX(5px);
}

.aso-footer-links a::before {
  content: '→';
  color: #d9a522;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.2s ease;
}

.aso-footer-links a:hover::before {
  opacity: 1;
  margin-right: 5px;
}

.aso-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.aso-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

.aso-copyright strong {
  color: #d9a522;
  font-weight: 600;
}

.aso-copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aso-copyright a:hover {
  color: #d9a522;
}

/* Responsive Design - Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .aso-partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .aso-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
  }

  .aso-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .aso-footer-logo-box {
    grid-column: 1 / -1;
    margin-bottom: 15px;
  }

  .aso-footer-heading {
    font-size: 1rem;
  }

  .aso-contact-item {
    font-size: 0.88rem;
  }

  .aso-footer-links a {
    font-size: 0.88rem;
  }
}

/* Responsive Design - Tablet Portrait (768px) */
@media (max-width: 768px) {
  .aso-partners-section {
    padding: 40px 15px;
  }

  .aso-partners-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .aso-partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .aso-partner-card {
    padding: 18px;
  }

  .aso-footer-container {
    padding: 40px 20px 20px;
  }

  .aso-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 35px;
    padding-bottom: 30px;
  }

  .aso-services-column:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .aso-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aso-footer-column {
    text-align: center;
  }

  .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .aso-contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-footer-logo-box img {
    max-width: 220px;
  }
}

/* Responsive Design - Large Phone (600px) */
@media (max-width: 600px) {
  .aso-partners-section {
    padding: 35px 12px;
  }

  .aso-partners-title {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }

  .aso-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .aso-partner-card {
    padding: 16px;
  }

  .aso-partner-card img {
    max-height: 55px;
  }

  .aso-footer-container {
    padding: 35px 18px 18px;
  }

  .aso-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .aso-services-column {
    text-align: center;
    padding: 0 10px;
  }

  .aso-services-column .aso-footer-heading {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .aso-services-column .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .aso-services-column .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-services-column .aso-footer-links li {
    margin-bottom: 11px;
  }

  .aso-services-column .aso-footer-links a {
    font-size: 0.9rem;
  }

  .aso-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aso-footer-column {
    text-align: center;
    padding: 0 10px;
  }

  .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .aso-footer-logo-box img {
    max-width: 200px;
    margin-bottom: 22px;
  }

  .aso-social-links {
    gap: 10px;
  }

  .aso-social-btn {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .aso-footer-heading {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .aso-contact-item {
    font-size: 0.88rem;
    margin-bottom: 13px;
    gap: 11px;
    justify-content: center;
  }

  .aso-contact-icon {
    width: 19px;
    height: 19px;
    font-size: 11.5px;
  }

  .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-footer-links a {
    font-size: 0.88rem;
  }

  .aso-footer-bottom {
    padding-top: 22px;
  }

  .aso-copyright {
    font-size: 0.82rem;
    line-height: 1.55;
  }
}

/* Responsive Design - Phone (480px ve altı) */
@media (max-width: 480px) {
  .aso-partners-section {
    padding: 30px 10px;
  }

  .aso-partners-title {
    font-size: 1.05rem;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
  }

  .aso-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 8px;
  }

  .aso-partner-card {
    padding: 14px;
    border-radius: 10px;
  }

  .aso-partner-card img {
    max-height: 48px;
  }

  .aso-footer-container {
    padding: 28px 14px 14px;
  }

  .aso-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .aso-services-column {
    text-align: center;
    padding: 0 8px;
  }

  .aso-services-column:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .aso-services-column .aso-footer-heading {
    font-size: 0.93rem;
    margin-bottom: 14px;
    padding-bottom: 9px;
  }

  .aso-services-column .aso-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
  }

  .aso-services-column .aso-footer-links {
    display: inline-block;
    text-align: left;
  }

  .aso-services-column .aso-footer-links li {
    margin-bottom: 9px;
  }

  .aso-services-column .aso-footer-links a {
    font-size: 0.84rem;
  }

  .aso-footer-grid {
    gap: 28px;
  }

  .aso-footer-column {
    padding: 0 8px;
  }

  .aso-footer-logo-box img {
    max-width: 170px;
    margin-bottom: 18px;
  }

  .aso-social-links {
    gap: 9px;
  }

  .aso-social-btn {
    width: 37px;
    height: 37px;
    font-size: 15px;
  }

  .aso-footer-heading {
    font-size: 0.93rem;
    margin-bottom: 14px;
    padding-bottom: 9px;
  }

  .aso-footer-heading::after {
    width: 45px;
  }

  .aso-contact-item {
    font-size: 0.84rem;
    margin-bottom: 11px;
    gap: 9px;
  }

  .aso-contact-icon {
    width: 17px;
    height: 17px;
    font-size: 10.5px;
  }

  .aso-footer-links a {
    font-size: 0.84rem;
  }

  .aso-footer-bottom {
    padding-top: 18px;
  }

  .aso-copyright {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* Responsive Design - Small Phone (360px ve altı) */
@media (max-width: 360px) {
  .aso-partners-title {
    font-size: 1rem;
  }

  .aso-partner-card {
    padding: 12px;
  }

  .aso-partner-card img {
    max-height: 40px;
  }

  .aso-footer-container {
    padding: 25px 12px 12px;
  }

  .aso-services-grid,
  .aso-footer-grid {
    gap: 25px;
  }

  .aso-footer-logo-box img {
    max-width: 150px;
  }

  .aso-social-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .aso-footer-heading {
    font-size: 0.9rem;
  }

  .aso-contact-item,
  .aso-footer-links a {
    font-size: 0.8rem;
  }
}

.header-container {
  display: flex;
  justify-content: center;
  /* Center the content horizontally */
  align-items: center;
  padding: 15px 30px;
}

.logo-center img {
  width: 200px;
  height: auto;
}

/* Küçük ekranlar için CSS */
@media (max-width: 768px) {
  .header-container {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    /* Ekran genişliğini kapla */
  }

  .logo-center img {
    margin: 0 auto;
    /* Yatayda ortala */
    display: block;
    /* Blok seviyesinde yap */
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.logo-left img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  transition: transform 0.3s ease;
}

.logo-center img {
  width: 200px;
  height: auto;
}

.ataturk img {
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

/* Küçük ekranlar için CSS */
@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .logo-left,
  .ataturk {
    display: none;
  }

  .logo-center {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
  }

  .logo-center img {
    margin: 0 auto;
    display: block;
    max-width: 180px;
  }
}

/* Q-Box - Quick Links */
.q-box {
  text-align: center;
  padding: 0 10px;
  margin: 15px 0;
  display: inline-block;
}

.q-box a {
  text-decoration: none;
  display: block;
}

.q-box span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  margin-top: 10px;
  transition: color var(--transition-fast) ease-in-out;
}

.q-box .icon {
  transition: all var(--transition-fast) ease-in-out;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto;
}

.q-box .icon i {
  font-size: 28px;
  color: #fff;
}

.q-box .icon img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ASO Logo - Sadece amblem kısmı */
.q-box .icon.aso-logo-icon {
  overflow: hidden;
}

.q-box:hover .icon {
  transform: scale(1.2);
  background: var(--primary-dark);
}

.q-box:hover span {
  color: var(--primary-color);
}

/* Q-Box Layout - Yan Yana */
.aso-quick-access-section .aso-quick-access-wrapper {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 40px !important;
  padding: 20px 0 !important;
}

.aso-quick-access-section .q-box {
  flex: 0 0 auto !important;
  width: 120px !important;
  display: inline-block !important;
}

/* Q-Box Responsive */

/* Tablet Landscape & Portrait (769px - 1366px) - Horizontal Scroll */
@media (min-width: 769px) and (max-width: 1366px) {
  .aso-quick-access-section {
    padding: 15px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(6, 112, 171, 0.3) transparent;
  }

  .aso-quick-access-section::-webkit-scrollbar {
    height: 8px;
  }

  .aso-quick-access-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .aso-quick-access-section::-webkit-scrollbar-thumb {
    background: rgba(6, 112, 171, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
  }

  .aso-quick-access-section::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 112, 171, 0.5);
  }

  .aso-quick-access-section .aso-quick-access-wrapper {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    padding: 15px 10px !important;
    width: max-content;
    min-width: 100%;
  }

  .aso-quick-access-section .q-box {
    flex: 0 0 auto !important;
    width: 110px !important;
  }

  .aso-quick-access-section .q-box .icon {
    width: 66px;
    height: 66px;
  }

  .aso-quick-access-section .q-box .icon i {
    font-size: 26px;
  }

  .aso-quick-access-section .q-box .icon.aso-logo-icon img {
    width: 46px !important;
    height: 230px !important;
  }

  .aso-quick-access-section .q-box span {
    font-size: 13px;
  }
}

/* Mobile (max-width: 768px) - Horizontal Scroll */
@media (max-width: 768px) {
  .aso-quick-access-section {
    padding: 10px 5px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(6, 112, 171, 0.3) transparent;
  }

  .aso-quick-access-section::-webkit-scrollbar {
    height: 6px;
  }

  .aso-quick-access-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .aso-quick-access-section::-webkit-scrollbar-thumb {
    background: rgba(6, 112, 171, 0.3);
    border-radius: 10px;
  }

  .aso-quick-access-section::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 112, 171, 0.5);
  }

  .aso-quick-access-section .aso-quick-access-wrapper {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 25px !important;
    padding: 15px 10px !important;
    width: max-content;
  }

  .aso-quick-access-section .q-box {
    width: 100px !important;
  }

  .aso-quick-access-section .q-box .icon {
    width: 60px;
    height: 60px;
  }

  .aso-quick-access-section .q-box .icon i {
    font-size: 24px;
  }

  /* ASO logo orantılı küçültme (orijinal: 50x250, icon 72->60 = %83) */
  .aso-quick-access-section .q-box .icon.aso-logo-icon img {
    width: 42px !important;
    height: 210px !important;
  }

  .aso-quick-access-section .q-box span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .aso-quick-access-section .aso-quick-access-wrapper {
    gap: 15px !important;
    padding: 10px 5px !important;
  }

  .aso-quick-access-section .q-box {
    width: 90px !important;
  }

  .aso-quick-access-section .q-box .icon {
    width: 50px;
    height: 50px;
  }

  .aso-quick-access-section .q-box .icon i {
    font-size: 20px;
  }

  /* ASO logo orantılı küçültme (icon 72->50 = %69) */
  .aso-quick-access-section .q-box .icon.aso-logo-icon img {
    width: 35px !important;
    height: 175px !important;
  }

  .aso-quick-access-section .q-box span {
    font-size: 10px;
    margin-top: 8px;
  }
}

/****************************************************************************/
/* CHARTS - Grafik Bölümü */
/****************************************************************************/
#chart-analysis {
  border-radius: var(--radius-medium);
  margin: 20px auto;
  max-width: 1200px;
}

.charts-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.chart-box {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal) ease;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: center;
  border: 1px solid rgba(15, 91, 156, 0.1);
}

.chart-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(15, 91, 156, 0.15);
}

.chart-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}

.chart-box h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--primary-dark);
}

/* Chart Wrapper - Responsive Container */
.chart-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto;
}

.chart-wrapper-wide {
  max-width: 100%;
  height: 320px;
}

.chart-box canvas {
  margin: 0 auto;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* Geniş chart box - Konu grafiği için */
.chart-box-wide {
  min-width: 350px;
  max-width: 550px;
}

/* Chart Legend - Adet Bilgisi (Minimal) */
.chart-legend {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
}

.legend-item:hover {
  opacity: 0.8;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

.legend-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Charts Responsive */
@media (max-width: 768px) {
  #chart-analysis {
    padding: 20px 15px;
    margin: 15px 10px;
  }

  .charts-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .chart-box {
    min-width: 280px;
    max-width: 100%;
    padding: 20px 15px;
    width: 100%;
  }

  .chart-box-wide {
    min-width: 280px;
    max-width: 100%;
  }

  .chart-box h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .chart-wrapper {
    max-width: 250px;
    height: 250px;
  }

  .chart-wrapper-wide {
    max-width: 100%;
    height: 280px;
  }

  .legend-item {
    padding: 8px 12px;
  }

  .legend-label,
  .legend-value {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #chart-analysis {
    padding: 15px 10px;
    margin: 10px 5px;
    border-radius: 12px;
  }

  .chart-box {
    min-width: auto;
    width: 100%;
    padding: 15px 10px;
    border-radius: 12px;
  }

  .chart-box-wide {
    min-width: auto;
  }

  .chart-box h4 {
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 12px;
  }

  .chart-wrapper {
    max-width: 220px;
    height: 220px;
  }

  .chart-wrapper-wide {
    max-width: 100%;
    height: 260px;
  }

  .legend-item {
    padding: 6px 10px;
    gap: 8px;
  }

  .legend-color {
    width: 12px;
    height: 12px;
  }

  .legend-label,
  .legend-value {
    font-size: 11px;
  }

  .legend-value {
    padding: 3px 8px;
  }
}

header.header-container {
  position: fixed;
  top: 5%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom: unset;
}

.banner.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
}

body {
  padding-top: 150px;
}

@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
}

header.header-container.scrolled {
  padding: 5px 0;
  transition: all 0.3s ease;
}

header.header-container.scrolled .logo-left img,
header.header-container.scrolled .logo-center img,
header.header-container.scrolled .ataturk img {
  height: 40px;
  transition: all 0.3s ease;
}

@media print {

  header.header-container,
  .banner.navbar {
    position: relative !important;
    box-shadow: none !important;
  }

  body {
    padding-top: 0 !important;
  }
}

.sidebar {
  box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.15);
}

.mainbody.left,
.sidebar.left {
  float: left;
  padding-left: 1rem;
  padding-right: 1rem;
}

body:not(.template-name-home) .container,
body:not(.template-name-home) footer {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.result-link {
    padding-left: 20px;
}