@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;
}

/* ScroLl 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 .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.3s ease;
  background-color: #002333;
}


/* Sticky navbar */
nav.sticky {
  background-color: #002333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 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%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

nav .navbar .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 15px 0;
  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;
}

/* Section */
.services {
  display: flex;
  justify-content: space-evenly;
  padding-top: 150px;
}

section .title {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

body.dark section .title span {
  color: var(--text-color);
}

section .title span {
  color: #0e2431;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

body.dark section .title span::before {
  background-color: var(--text-color);
}

body.dark section .title span::after {
  background-color: var(--text-color);
}

section .title span::before,
section .title span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #002333;
  left: 0;
  bottom: 0;
}

section .title span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

body.dark .CopyButton {
  background-color: var(--button-color);
  color: #fff;
  border: 1px solid #5f6061;
}

.CopyButton {
  padding: 8px 12px;
  margin-top: 5px;
  border: none;
  background-color: #002333;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

body.dark .CopyButton:hover {
  background-color: #003ec4;
  border: 1px solid #fff;
}

.CopyButton:hover {
  background-color: #003ec4;
}

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

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

h5 {
  font-size: 16px;
  font-weight: 500;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 22px;
}

.boxes .box {
  padding: 60px 0;
}

.text-boxes {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-boxes .text-box {
  height: 380px;
  max-width: 650px;
  width: 100%;
  margin: 15px 0;
}

body.dark .text-boxes .text-box .topic {
  color: var(--text-color);
}

.text-boxes .text-box .topic {
  font-size: 18px;
  font-weight: 600;
  color: #002333;
  margin: 4px;
}

body.dark .text-boxes .text-box textarea {
  background: var(--search-bar);
  border: none;
  color: var(--text-color);
}

.text-boxes .text-box textarea {
  height: 100%;
  width: 100%;
  padding: 30px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  border: 1px solid #002333;
  border-radius: 8px;
  background: #fff;
  resize: none;
}

.text-box textarea::-webkit-scrollbar {
  display: none;
  resize: none;
}

/* Other Content */
.otherContents {
  width: 26%;
  margin-top: 150px;
}

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

.cardStructure {
  transition: 0.5s all ease;
  background-color: #fff;
  border-radius: 5px;
}

.cardStructure:hover {
  opacity: 0.8;
  transition: 0.5s all ease;
}

.cardStructure .PageControl {
  display: flex;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-top: 10px;
}

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

.ContentTitle {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  padding-left: 5px;
  margin-bottom: 20px;
  border-left: 5px solid #002333;
}

.cardStructure img {
  border-radius: 15px;
  padding: 10px;
  object-fit: cover;
  width: 210px;
  height: 150px;
}

.cardStructure .subContent {
  padding: 10px;
}

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

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

.PageControl .subContent {
  color: #002333;
}

/* Footer */
body.dark footer {
  background-color: var(--nav-color);
}

body.dark footer .bottom-details {
  background-color: #3c3e42;
}

footer {
  width: 100%;
  margin-top: 100px;
  background: #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: 40px;
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 15px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s 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;
}

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

.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 .bottom-details {
  width: 100%;
  background: #003e5b;
}

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;
}

.icons a {
  background: #ecf0f3;
  position: relative;
  height: 40px;
  width: 40px;
  margin: 0 10px;
  display: inline-flex;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
}

.icons a:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #ecf0f3;
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.scroll-button a {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  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;
}

.shareButton {
  border: 1px solid #d1d1d1;
  padding: 30px;
  border-radius: 10px;
  background-color: #f7f7f7;
}

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

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

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

.shareSpan {
  color: #002333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.shareSpan i {
  margin-right: 7px;
}

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

@media (max-width: 1500px) {
  .otherContents {
    width: 30%;
  }

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

@media (max-width: 1400px) {
  .otherContents {
    width: 35%;
  }
}

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

  .boxes {
    padding: 0 20px;
    margin: 0 auto;
  }

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

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

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

@media (max-width: 750px) {
  nav .navbar {
    width: 90%;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    position: absolute;
    right: 30px;
    top: 24px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
  }

  .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;
  }

  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);
  }

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

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

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: #002333;
    height: 100vh;
    max-width: 270px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
  }

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

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

  nav.sticky .menu a:hover {
    color: #fff;
    transition: none;
  }

  h5 {
    font-size: 16px;
    font-weight: 500;
    max-width: 650px;
    width: 90%;
    margin: 0 auto;
  }

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

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

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

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

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

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

  .icon {
    margin-right: 15px;
  }
}

@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) {
  nav .navbar .menu a {
    font-size: 16px;
    padding: 7px 17px;
    display: flex;
    color: #fff;
    margin: 10px 0px;
    align-items: center;
  }

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

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    position: absolute;
    right: 30px;
    top: 19px;
  }

  .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;
  }

  .shareButton .a2a_kit {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  section .title {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  h5 {
    font-size: 14px;
    font-weight: 500;
    max-width: 650px;
    width: 90%;
    margin: 0 auto;
  }

  .box {
    padding: 10px 0;
  }

  .boxes .box {
    padding: 0;
  }

  .text-boxes {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 100px;
  }

  section .title span {
    color: #0e2431;
    font-size: 23px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
  }

  section .title span::before,
  section .title span::after {
    height: 2px;
  }

  /* 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: 600;
    font-size: 20px;
    padding-left: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #002333;
  }

  .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;
  }

  .services {
    padding: 0;
  }

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

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

  .scroll-button a {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1;
    color: #fff;
    background: #003ec4;
    padding: 6px 12px;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
  }

  /* 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;
  }
}