@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

:root {
  --body-color: #e4e9f7;
  --nav-color: #4070f4;
  --side-nav: #010718;
  --text-color: #fff;
  --search-bar: #f2f2f2;
  --search-text: #010718;
  --card-color: #ffffff;
}

body.dark {
  --body-color: #1a1b1f;
  --nav-color: #262931;
  --side-nav: #242526;
  --text-color: #ccc;
  --search-bar: #363636;
  --card-color: #21242a;
  --button-color: #5f6061;
}

/* Scrool Bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #003ec4;
  border-radius: 10px;
  transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #0051ff;
}

body {
  background: #f1f1f1;
}

body.dark {
  background-color: var(--body-color);
}

/* DarkMode */
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Moon-Sun */
body.dark nav .darkLight-searchBox .dark-light .moon {
  color: #fff;
}

body.dark nav .darkLight-searchBox .dark-light .sun {
  color: #fff;
}

.darkLight-searchBox .dark-light .sun {
  color: #002333;
}

.darkLight-searchBox .dark-light .moon {
  color: #fff;
}

nav.sticky .darkLight-searchBox .dark-light .moon {
  color: #fff;
}

nav.sticky .darkLight-searchBox .dark-light .sun {
  color: #fff;
}

.dark-light i,
.searchToggle i {
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-light i.sun {
  opacity: 0;
  pointer-events: none;
}

.dark-light.active i.sun {
  opacity: 1;
  pointer-events: auto;
}

.dark-light.active i.moon {
  opacity: 0;
  pointer-events: none;
}

/* Internet Connected */
.popup {
  position: fixed;
  left: 50%;
  top: -25%;
  z-index: 999;
  visibility: hidden;
  width: 490px;
  border-radius: 5px;
  padding: 13px 17px 20px;
  background: #fff;
  display: flex;
  border-top: 3px solid #d0342c;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(52, 87, 220, 0.1);
  transition: all 0.25s ease;
}

.popup.show {
  top: 0;
  visibility: visible;
}

.popup.online {
  border-color: #2ecc71;
}

.popup .icon i {
  width: 40px;
  height: 40px;
  display: flex;
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d0342c;
}

.popup.online .icon i {
  background: #2ecc71;
}

.popup .title {
  font-size: 1.2rem;
}

.popup .desc {
  color: #474747;
  margin: 3px 0 10px;
  font-size: 1.04rem;
}

.popup .reconnect {
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 13px;
  border-radius: 4px;
  background: #5372f0;
}

.popup.online .reconnect {
  background: #bfbfbf;
  pointer-events: none;
}

/* Navigation Bar */
nav {
  position: fixed;
  width: 100%;
  z-index: 998;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #013179, #002333);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
}

body.dark nav {
  background: linear-gradient(135deg, #1a1b1f, #0d1117) !important;
}



/* Sticky navbar */
nav.sticky {
  background: linear-gradient(135deg, #013179, #002333);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark nav.sticky {
  background: linear-gradient(135deg, #1a1b1f, #0d1117) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Hamburger ve çarpı ikonlarını varsayılan olarak gizle */
nav .menu-btn,
.navbar .menu .cancel-btn {
  display: none;
}

body.dark nav.sticky {
  background-color: #002333;
}

nav .navbar {
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

nav .navbar .logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: block;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

nav .navbar .logo-text:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

nav .navbar .menu {
  display: flex;
  position: relative;
}

nav .navbar .menu li {
  list-style: none;
  font-weight: 500;
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 0;
  transition: all 0.4s ease;
}

.navbar .menu a:hover {
  color: #1850a5;
}

/* Dropdown Menu Styles */
.navbar .menu .dropdown {
  color: #fff;
  right: 30px;
  top: 25px;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.icon {
  margin-right: 6px;
}

nav.sticky .menu-btn {
  color: #fff;
}

/* Logo düzeni mobilde */
@media (max-width: 750px) {

  nav .navbar .logo {
    flex: 1;
    max-width: calc(100% - 70px);
  }

  nav .navbar .logo-text {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* SECTİON */
#home {
  display: flex;
  justify-content: space-evenly;
  padding-top: 150px;
}

.mainContent {
  border-radius: 20px;
  width: 55%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

body.dark .mainContent {
  background: var(--card-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mainContent:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mainContent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #002333);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.mainContent:hover::before {
  transform: scaleX(1);
}

.otherContents {
  width: 25%;
  margin-top: 100px;
  padding: 0 20px;
}

.otherContents .ContentTitle {
  margin-bottom: 30px;
  position: relative;
}

.otherContents .ContentTitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 15px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #002333);
  border-radius: 2px;
}

body.dark .cardStructure {
  background-color: var(--side-nav);
}

.cardStructure {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  position: relative;
}

body.dark .cardStructure {
  background-color: var(--side-nav);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cardStructure:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cardStructure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #002333);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.cardStructure:hover::before {
  transform: scaleX(1);
}

.cardStructure .PageControl {
  display: flex;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 20px;
  transition: all 0.3s ease;
}

.cardStructure:hover .PageControl {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.02), rgba(0, 35, 51, 0.02));
}

body.dark .ContentTitle {
  color: var(--text-color);
  border-left: 6px solid #ccc;
}

.ContentTitle {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  padding-left: 15px;
  margin-bottom: 25px;
  border-left: 6px solid #0066ff;
  letter-spacing: 0.3px;
}

body.dark .ContentTitle {
  color: var(--text-color);
  border-left: 6px solid #0066ff;
}

.cardStructure img {
  border-radius: 12px;
  padding: 0;
  object-fit: cover;
  width: 180px;
  height: 120px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cardStructure:hover img {
  transform: scale(1.08);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cardStructure .subContent {
  padding: 8px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cardStructure .subContent h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #002333;
  transition: color 0.3s ease;
}

.cardStructure:hover .subContent h4 {
  color: #0066ff;
}

.cardStructure .subContent .dateTime {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  opacity: 0.8;
}

body.dark .subContent {
  color: var(--text-color);
}

.subContent .dateTime {
  font-size: 12px;
}

.PageControl .subContent {
  color: #002333;
}

.cards p {
  line-height: 1.8;
  font-size: 18px;
  margin: 25px 0;
  font-weight: 400;
  color: #444444;
  text-align: justify;
  letter-spacing: 0.3px;
}

body.dark h1 {
  color: var(--text-color);
}

body.dark h2 {
  color: var(--text-color);
  border-left: 6px solid #ccc;
}

body.dark h3 {
  color: var(--text-color);
}

body.dark .cards p {
  color: var(--text-color);
}

h1 {
  font-size: 42px;
  margin: 20px 0 30px 0;
  font-weight: 700;
  color: #002333;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

body.dark h1 {
  color: var(--text-color);
}

h2 {
  margin-top: 35px;
  margin-bottom: 25px;
  border-left: 6px solid #0066ff;
  padding-left: 15px;
  font-size: 28px;
  font-weight: 600;
  color: #002333;
  line-height: 1.3;
}

body.dark h2 {
  color: var(--text-color);
  border-left: 6px solid #0066ff;
}

h3 {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
  color: #002333;
  line-height: 1.4;
}

body.dark h3 {
  color: var(--text-color);
}

table tr td .table-p {
  font-size: 16px;
  margin: 20px;
}

table {
  width: 100%;
}

iframe {
  width: 100%;
  height: 560px;
}

.cards img {
  object-fit: cover;
  border-radius: 15px;
  height: 100%;
  width: 100%;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cards img:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.php-link {
  color: #0051ff;
}

.php-link:hover {
  text-decoration: underline;
}

body.dark .ic-donanım {
  color: var(--text-color);
}

.ic-donanım {
  line-height: 40px;
  margin-top: 15px;
  font-weight: 500;
  margin-left: 28px;
  list-style: inside;
  color: #333333;
}

.ic-donanim-number {
  line-height: 40px;
  margin-top: 15px;
  font-weight: 500;
  margin-left: 28px;
  text-align: justify;
  list-style: decimal;
  color: #333333;
}

body.dark .source {
  color: var(--text-color);
}

body.dark .source li a {
  color: var(--text-color);
}

.source {
  line-height: 40px;
  margin-top: 15px;
  font-weight: 500;
  margin-left: 28px;
  list-style: decimal;
}

.source li a {
  color: #003cb5;
}

body.dark .ic-donanim-number {
  color: var(--text-color);
}

.ic-donanim-number a {
  color: #003ec4;
}

body.dark strong {
  color: #fff;
  font-weight: 600;
}

strong {
  color: #060606;
}

body.dark .ic-donanım li {
  color: var(--text-color);
}

body.dark .dıs-donanım {
  color: var(--text-color);
}

.dıs-donanım {
  line-height: 40px;
  margin-top: 15px;
  font-weight: 500;
  margin-left: 28px;
  list-style: inside;
  color: #2b2b2b;
}

body.dark .cardDate {
  color: var(--text-color);
}

.dateicon {
  margin-right: 5px;
  color: #0066ff;
  font-size: 14px;
}

.cardDate {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 5px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dateicon {
  margin-right: 5px;
  color: #0066ff;
  font-size: 14px;
}

#check:checked {
  accent-color: blue;
}

#check:checked~label {
  color: blue;
}

/* Footer */
body.dark footer {
  background: linear-gradient(135deg, #1a1b1f, #0d1117);
}

body.dark footer .bottom-details {
  background: linear-gradient(135deg, #0d1117, #010409);
}

footer {
  width: 100%;
  margin-top: 100px;
  background: linear-gradient(135deg, #013179, #002333);
  width: 100%;
  bottom: 0;
  left: 0;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.content .top .logo-details img {
  height: 70px;
}

.content .top .media-icons {
  display: flex;
  padding-top: 20px;
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
  background: #24292e;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.2s ease;
}

.top .media-icons a:nth-child(2) {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}

.top .media-icons a:nth-child(3) {
  background: linear-gradient(29.61deg, #f38334, #da2e7d 50.39%, #6b54c6);
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}

.top .media-icons a:nth-child(4) {
  background: #0e76a8;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}


footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer .bottom-details {
  width: 100%;
  background: linear-gradient(135deg, #002333, #001122);
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

/* Scroll Button */
.scroll-button a {
  position: fixed;
  bottom: 30px;
  z-index: 1;
  right: 30px;
  color: #fff;
  background: #003ec4;
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 10px;

  outline: none;
}

.scroll-button a:hover {
  background-color: #0051ff;
  transition: 0.5s;
}

/* Share Button */
.shareContainer {
  margin-top: 50px;
}

body.dark .shareButton {
  background-color: var(--side-nav);
}

body.dark .shareSpan {
  color: var(--text-color);
}

.shareButton {
  border: none;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

body.dark .shareButton {
  background: linear-gradient(135deg, var(--side-nav), var(--nav-color));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shareButton:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.shareButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #002333);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.shareButton:hover::before {
  transform: scaleX(1);
}

.shareButton .a2a_kit {
  justify-content: space-around;
  display: flex;
  gap: 15px;
}

.shareSpan {
  color: #002333;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
}

body.dark .shareSpan {
  color: var(--text-color);
}

.shareSpan i {
  margin-right: 10px;
  font-size: 22px;
  color: #0066ff;
}

/* MEDİA QUERY */
@media (max-width: 1650px) {
  .mainContent {
    width: 55%;
  }

  .otherContents {
    width: 30%;
  }

  iframe {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 1500px) {
  .mainContent {
    width: 60%;
  }

  .otherContents {
    width: 30%;
  }

  iframe {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 1400px) {
  .mainContent {
    width: 55%;
  }

  .otherContents {
    width: 35%;
  }
}

@media (max-width: 1200px) {
  #home {
    display: block;
    margin: 0 auto;
  }

  .mainContent {
    width: 80%;
    margin: 0 auto;
  }

  .otherContents {
    padding-top: 50px;
    width: 80%;
    margin: 0 auto;
  }

  iframe {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  .scroll-bar {
    display: none;
  }

  table tr td .table-p {
    font-size: 14px;
    line-height: 25px;
    margin: 10px 8px;
    text-align: inherit;
  }
}

@media (max-width: 750px) {
  nav .navbar {
    width: 95%;
    max-width: 100vw;
    padding: 0 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    border: none;
    z-index: 1001;
  }

  .icerik li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0 15px 18px;
    transition: all 0.4s ease;
  }

  .dropdown-content {
    position: absolute;
    background-color: #002333;
    min-width: 240px;
    margin-left: 8px;
    z-index: 1;
    padding: 0;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgb(119 119 119 / 20%);
  }

  nav .dropdown-content {
    background-color: #002333;
    display: none;
    position: absolute;
    min-width: 240px;
    z-index: 1;
    border-radius: 5px;
    padding: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgb(119 119 119 / 20%);
  }

  .dropdown-content a {
    font-size: 12px;
    border-bottom: 1px solid #fff;
  }

  body.dark .dropdown-content {
    background: var(--nav-color);
    box-shadow: 0 5px 10px rgba(144, 145, 146, 0.2);
  }

  body.dark nav.sticky .dropdown-content {
    background: var(--nav-color);
    box-shadow: 0 5px 10px rgba(144, 145, 146, 0.2);
  }

  .darkLight-searchBox .dark-light,
  .darkLight-searchBox .searchToggle {
    margin-right: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
  }

  body.dark nav.darkLight-searchBox .dark-light i {
    color: #fff;
  }

  body.dark nav .navbar .menu {
    background-color: var(--nav-color);
  }

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: linear-gradient(135deg, #002333 0%, #003d5c 100%);
    height: 100vh;
    max-width: 280px;
    width: 100%;
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1000;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .navbar.active .menu {
    left: 0px;
  }

  nav .navbar .menu a {
    font-size: 17px;
    padding: 16px 24px;
    display: flex;
    color: #fff;
    margin: 0;
    width: 100%;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav .navbar .menu a:hover {
    background: rgba(0, 126, 195, 0.15);
    color: #fff;
    padding-left: 30px;
  }

  nav .navbar .menu li:last-child a {
    border-bottom: none;
  }

  nav.sticky .menu a:hover {
    background: rgba(0, 126, 195, 0.15);
    color: #fff;
    padding-left: 30px;
  }

  nav .navbar .media-icons {
    display: none;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: flex;
    outline: none;
  }

  .navbar .menu .cancel-btn {
    position: fixed;
    right: 20px;
    top: 30px;
    color: #fff;
    z-index: 1002;
  }

  .icon {
    margin-right: 15px;
  }

  iframe {
    width: 100%;
    height: 315px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }

  .content .top .logo-details img {
    height: 65px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }

  footer .content .top {
    flex-direction: column;
    margin-bottom: 30px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 500px) {
  #home {
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    padding-top: 60px;
  }

  /* Other Content */
  .otherContents {
    width: 100%;
    padding: 10px;
    margin: 0;
  }

  .cardStructure .PageControl {
    display: flex;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 10px;
  }

  .ContentTitle {
    color: #002333;
    font-weight: 700;
    font-size: 22px;
    padding-left: 10px;
    margin-bottom: 20px;
    border-left: 6px solid #0066ff;
  }

  .cardStructure img {
    border-radius: 15px;
    padding: 10px;
    width: 170px;
    height: 130px;
  }

  .cardStructure .subContent {
    padding: 10px;
  }

  .cardStructure .subContent h6 {
    padding-top: 8px;
  }

  .subContent h4 {
    font-size: 13px;
  }

  .subContent .dateTime {
    font-size: 10px;
  }

  .PageControl .subContent {
    color: #002333;
  }

  /* Share Button */
  .shareButton .a2a_kit {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  nav .navbar .menu a {
    font-size: 16px;
    padding: 7px 17px;
    display: flex;
    color: #fff;
    margin: 10px 0px;
    align-items: center;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    position: absolute;
  }

  nav .navbar .logo img {
    height: 60px;
    padding: 5px;
  }

  .icerik li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0 15px 18px;
    transition: all 0.4s ease;
  }

  .icerik li:hover {
    color: #003cb5;
    transition: all 0.4s ease;
  }

  .dropdown-content {
    position: absolute;
    background-color: #002333;
    min-width: 240px;
    margin-left: 15px;
    z-index: 1;
    padding: 0;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgb(119 119 119 / 20%);
  }

  nav.sticky .dropdown-content {
    background-color: #002333;
    display: none;
    position: absolute;
    min-width: 240px;
    z-index: 1;
    border-radius: 5px;
    padding: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgb(119 119 119 / 20%);
  }

  .dropdown-content a {
    font-size: 12px;
    border-bottom: 1px solid #fff;
  }

  .mainContent {
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
  }

  .cards {
    padding: 20px;
    border-radius: 5px;
  }

  .cards p {
    margin: 10px 0;
    font-size: 16px;
    text-align: left;
  }

  h1 {
    font-size: 28px;
    margin: 20px 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.2;
  }

  h2 {
    border-left: 6px solid #0066ff;
    padding-left: 10px;
    margin: 25px 0;
    font-size: 22px;
    font-weight: 600;
  }

  table tr td .table-p {
    font-size: 10px;
    line-height: 15px;
    margin: 10px 8px;
    text-align: left;
  }

  iframe {
    height: 180px;
    width: 100%;
  }

  .scroll-button {
    display: none;
  }

  .cardDate {
    font-size: 13px;
    margin-bottom: 15px;
    margin-top: 5px;
  }

  .ic-donanim-number {
    line-height: 35px;
    margin-top: 15px;
    font-weight: 400;
    text-align: left;
    margin-left: 28px;
    padding: 0;
    list-style: decimal;
    color: #2b2b2b;
  }

  .ic-donanım {
    line-height: 35px;
    font-weight: 400;
    text-align: left;
    list-style: inside;
    margin: 15px 0 15px 20px;
    padding: 0;
  }

  .dıs-donanım {
    line-height: 30px;
    margin-top: 15px;
    font-weight: 500;
    margin-left: 20px;
    list-style: inside;
  }

  .cards img {
    width: 100%;
    height: 100%;
    margin: 20px 0;
  }

  .content .link-boxes .box li a {
    font-size: 13px;
  }

  /* Internet Connected */
  .popup {
    position: fixed;
    left: 50%;
    top: -25%;
    z-index: 999;
    visibility: hidden;
    width: 340px;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
    display: flex;
    border-top: 3px solid #d0342c;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(52, 87, 220, 0.1);
    transition: all 0.25s ease;
  }

  .popup.show {
    top: 0;
    visibility: visible;
  }

  .popup.online {
    border-color: #2ecc71;
  }

  .popup .icon i {
    width: 40px;
    height: 40px;
    display: flex;
    color: #fff;
    margin-right: 0;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d0342c;
  }

  .popup.online .icon i {
    background: #2ecc71;
  }

  .popup .title {
    font-size: 16px;
  }

  .popup .desc {
    color: #474747;
    margin: 3px 0 10px;
    font-size: 14px;
  }

  .popup .reconnect {
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 4px;
    background: #5372f0;
  }

  .popup.online .reconnect {
    background: #bfbfbf;
    pointer-events: none;
  }
}

/* Modern Animated Scroll Up Button */
.scroll-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 126, 195, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  outline: none;
}

.scroll-button a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.scroll-button a:hover::before {
  width: 300px;
  height: 300px;
}

.scroll-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 126, 195, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.scroll-button a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.scroll-button a:hover i {
  transform: none;
}

body.dark .scroll-button a {
  background: linear-gradient(135deg, #007ec3 0%, #005a8a 100%);
  box-shadow: 0 8px 25px rgba(0, 126, 195, 0.5);
}

body.dark .scroll-button a:hover {
  box-shadow: 0 12px 35px rgba(0, 126, 195, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 126, 195, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 126, 195, 0.5);
  }
}

.scroll-button.show a {
  animation: pulse 2s ease-in-out infinite;
}

.scroll-button.show a:hover {
  animation: none;
}

@media (max-width: 768px) {
  .scroll-button {
    bottom: 20px;
    right: 20px;
  }

  .scroll-button a {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}