:root {
  --primary: #e02a1f;
  --secondary: #383b40;
  --text-color: #333;
  --white: #fff;
  --black: #000;
  --border-color: #626262;
  --body-bg: #f6f6f6;
}

body,
html {
  font-family: "Roboto", sans-serif;
  background-color: var(--body-bg);
}

/* HEADER */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  min-height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 99;
}

header nav {
  position: absolute;
  top: 91px;
  right: 0;
  max-width: 300px;
  width: 100%;
  min-height: 758px;
  background-color: #f6f6f6;
  transform: translateX(300px);
  transition: all 0.3s ease-in-out;
}

header nav.active {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

header nav ul {
  display: flex;
  flex-direction: column;
}

header nav ul li {
  width: 100%;
}

header nav ul li a {
  display: flex;
  color: #747474 !important;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  line-height: 29.789px; /* 126.065% */
  letter-spacing: -0.709px;
  height: 60px;
  width: 100%;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-left: 16px;
  position: relative;
  z-index: 1;
  opacity: 1;
  text-transform: uppercase !important;
}

header nav ul li a:hover {
  color: var(--white) !important;
  opacity: 1;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width 0.3s ease-in-out;
  opacity: 0.5;
  z-index: -1;
}

header nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  opacity: 1;
  z-index: -1;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a:hover::before {
  height: 100%;
}

header nav ul li a.active {
  color: var(--white) !important;
  opacity: 1;
}

header nav ul li a.active::after {
  width: 100%;
}

header nav ul li a.active::before {
  height: 100%;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu {
  cursor: pointer;
}

.menu-block {
  border-left: 1px solid var(--border-color);
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.menu-block .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-block:hover {
  background-color: var(--primary);
}

.menu-block:hover .menu .bar1,
.menu-block:hover .menu .bar2,
.menu-block:hover .menu .bar3 {
  background-color: var(--white);
}

.menu-block:hover .menu-title {
  color: var(--white);
  opacity: 1;
}

.menu-block .menu .bar1,
.menu-block .menu .bar2,
.menu-block .menu .bar3 {
  width: 40px;
  height: 5px;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.menu-block .menu.active .bar1 {
  transform: rotate(45deg) translateY(15px);
  background-color: var(--white);
}

.menu-block .menu.active .bar2 {
  opacity: 0;
}

.menu-block .menu.active .bar3 {
  transform: rotate(-45deg) translateY(-15px);
  background-color: var(--white);
}

.menu-title {
  color: var(--secondary);
  font-size: 23.63px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.789px;
  letter-spacing: -0.709px;
  opacity: 0.7;
  padding-left: 12px;
  transition: all 0.3s ease-in-out;
}

.menu-block.active {
  background-color: var(--primary);
}

.menu-block.active .menu-title {
  color: var(--white);
  opacity: 1;
}

.search-block {
  position: absolute;
  right: 180px;
  top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-left: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.search-block:hover {
  background-color: var(--primary);
}

.search-block span {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}

.search-block:hover span {
  color: var(--white);
}

@media (max-width: 576px) {
  .menu-block {
    padding: 0 16px;
  }

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

  .bar1,
  .bar2,
  .bar3 {
    width: 30px !important;
    height: 3px !important;
  }

  .menu-block .menu.active .bar1 {
    transform: rotate(45deg) translateY(13px);
    background-color: var(--white);
  }

  .menu-block .menu.active .bar3 {
    transform: rotate(-45deg) translateY(-13px);
    background-color: var(--white);
  }

  .search-block {
    right: 115px;
  }
}
/* HEADER */

/* FOOTER */
footer {
  background: var(--white);
  box-shadow: 0px 6px 4px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 47px 0 34px 0;
}

footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
}

@media (max-width: 968px) {
  footer .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  footer .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}

@media (max-width: 576px) {
  footer .footer-inner {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

.slogan {
  padding-top: 12px;
  color: var(--text-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.575px; /* 173.654% */
  letter-spacing: -0.195px;
}

.col-title {
  color: var(--text-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 125% */
  padding-bottom: 18px;
}

footer .column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .column ul li a {
  color: var(--text-color) !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
  transition: all 0.3s ease-in-out;
}

footer .column ul li a:hover {
  color: var(--primary) !important;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-block-item {
  display: flex;
  gap: 6px;
}

.contact-block-item span {
  color: var(--text-color);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 166.667% */
}

.contact-block-item p {
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px; /* 146.429% */
}

.contact-block-item a {
  color: var(--text-color) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
  transition: all 0.3s ease-in-out;
}
.contact-block-item a:hover {
  color: var(--primary) !important;
}

.contact-block-item i {
  padding-right: 4px;
}

.contact-block-item span {
  display: flex;
}

.socials {
  display: flex;
  gap: 6px;
}

.socials i {
  font-size: 18px;
}

.socials a svg {
  transition: all 0.3s ease-in-out;
}

.socials a:hover svg {
  fill: var(--primary);
}

.copyright {
  border-top: 1px solid;
  background: var(--white);
  box-shadow: 0px 6px 4px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 16px 0;
}

.copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* FOOTER */

/* ANA SAYFA */
.corporate-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.corporate-boxes .left,
.corporate-boxes .right {
  width: 50%;
  height: 100%;
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.corporate-boxes .left::after,
.corporate-boxes .right::after {
  content: attr(data-title);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 1;
  font-size: 24px;
}

.corporate-boxes .left .image-overlay,
.corporate-boxes .right .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.corporate-boxes .left .image-overlay img,
.corporate-boxes .right .image-overlay img {
  width: 90px;
  height: 90px;
}

.corporate-boxes .left img,
.corporate-boxes .right img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.corporate-boxes .left:hover .image-overlay,
.corporate-boxes .right:hover .image-overlay {
  opacity: 1;
  visibility: visible;
}

.plus-icon {
  position: relative;
}

.icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.plus-icon {
  width: 90px;
  height: 90px;
  display: block;
}

.vertical-line,
.horizontal-line,
.border {
  stroke: var(--primary);
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  fill: none;
  transition: stroke-dashoffset 0.5s ease-in-out;
}

.border {
  rx: 10;
  ry: 10;
}

.stats {
  min-height: 200px;
  background-image: url("../design/stats-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.stats-container {
  background: rgba(255, 255, 255, 0.92);
  min-height: 200px;
}

.stats-inner {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-block {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 33.333%;
}

.stats-block:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.stats-block .stat {
  color: var(--secondary);
  font-size: 37.712px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.stats-block .title {
  color: var(--primary);
  font-size: 18.07px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tanitim {
  position: relative;
  padding: 40px 0;
}

.tanitim .tl {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateY(180deg);
}

.br {
  position: absolute;
  right: 0;
  bottom: 0;
}

.tanitim-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  text-align: center;
  width: 50%;
}

.tanitim-inner .tanitim-title {
  color: var(--primary);
  text-align: center;
  font-size: 41.466px;
  font-style: normal;
  font-weight: 700;
  line-height: 53.76px; /* 129.648% */
  letter-spacing: 1.659px;
}

.tanitim-inner p {
  color: var(--secondary);
  text-align: center;
  font-size: 14.663px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 204.591% */
  letter-spacing: 0.733px;
  margin: 0 !important;
  padding: 0 !important;
}

.devami {
  color: var(--secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.444px; /* 138.889% */
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 0 16px;
  z-index: 999;
}

.devami:hover {
  color: var(--white) !important;
}

.devami:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.devami:hover:after {
  height: 130%;
}

.page-boxes {
  padding-bottom: 40px;
}

.page-boxes .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .page-boxes .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-boxes .boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .page-boxes .boxes {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-boxes .boxes .box {
  max-width: 100%;
  height: auto !important;
  position: relative;
  display: flex;
  overflow: hidden;
}

.inset-shadow {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  box-shadow: inset 0 -30px 50px rgba(0, 0, 0, 1);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  transition: all 0.3s ease-in-out;
}

.box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(224, 42, 31, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
}

.page-boxes .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.text-content {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 50px);
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.6s !important;
  transition: all 0.3s ease-in-out;
}

.text-content .title {
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 36.923px; /* 167.832% */
  letter-spacing: 1.1px;
}

.text-content .link {
  color: var(--white);
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 36.923px; /* 194.332% */
  letter-spacing: 0.95px;
  text-decoration: underline;
}

.plus {
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.3s !important;
  transition: all 0.3s ease-in-out;
}

.plus-image {
  width: 60px !important;
  height: 60px !important;
}

.page-boxes .box:hover .box-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-boxes .box:hover .inset-shadow {
  opacity: 0;
}

.hover-plus {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hover-text {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) !important;
}
/* ANA SAYFA */

/* Dinamik Sayfalar */
.page-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .page-content {
    flex-direction: column;
  }

  .page-content .right {
    width: 100% !important;
    padding-top: 24px;
    text-align: center;
  }
}

.breadcrumbs {
  text-transform: uppercase !important;
  color: var(--secondary);
  font-size: 12.613px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.561px; /* 170.939% */
  letter-spacing: 0.631px;
}

.breadcrumbs a {
  transition: all 0.3s ease-in-out;
}

.breadcrumbs a:hover {
  color: var(--primary) !important;
}

.page-content .right {
  padding-left: 42px;
  width: 50%;
}

h1 {
  color: var(--primary);
  padding-top: 6px;
}

.page-text {
  color: var(--secondary);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 176.471% */
  letter-spacing: 0.85px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.human-resources-form {
  padding: 40px 0;
}

.human-resources-form .form-title {
  color: var(--primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 33.384px; /* 104.326% */
  letter-spacing: 1.28px;
}

#humanResources {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#humanResources .input-row {
  display: flex;
  gap: 24px;
}

#humanResources .input-row input {
  height: 45px;
  border-radius: 5.374px;
  border: 1.075px solid var(--secondary);
  background: #fff;
  transition: all 0.3s ease-in-out;
}

#humanResources .input-row input::placeholder,
#humanResources textarea::placeholder {
  color: var(--secondary);
  font-size: 15.047px;
  font-style: italic;
  font-weight: 500;
  line-height: 48.366px; /* 321.429% */
}

#humanResources .input-row input:focus,
#humanResources textarea:focus {
  border: 1px solid var(--primary);
}

#humanResources textarea {
  border-radius: 5.374px;
  border: 1.075px solid var(--secondary);
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.cv .title {
  color: var(--text-color);
  font-size: 16.719px;
  font-style: normal;
  font-weight: 400;
  line-height: 53.74px; /* 321.429% */
}

#humanResources label {
  color: var(--text-color);
  font-size: 14.331px;
  font-style: normal;
  font-weight: 300;
  line-height: 11.111px; /* 77.534% */
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

#humanResources #gizlilik {
  width: 20px;
  height: 20px;
}

#iletisim {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#iletisim .input-row {
  display: flex;
  gap: 24px;
}

#iletisim .input-row input {
  height: 45px;
  border-radius: 5.374px;
  /* border: 1.075px solid #e2e2e2; */
  background: #fff;
  transition: all 0.3s ease-in-out;
  color: #333;
}

#iletisim .input-row input::placeholder,
#iletisim textarea::placeholder {
  color: #333;
  font-size: 15.047px;
  font-style: italic;
  font-weight: 500;
  line-height: 48.366px; /* 321.429% */
}

#iletisim .input-row input:focus,
#iletisim textarea:focus {
  border: 1px solid var(--primary);
}

#iletisim textarea {
  border-radius: 5.374px;
  /* border: 1.075px solid #e2e2e2; */
  background: #fff;
  transition: all 0.3s ease-in-out;
  color: #333;
}

.cv .title {
  color: var(--text-color);
  font-size: 16.719px;
  font-style: normal;
  font-weight: 400;
  line-height: 53.74px; /* 321.429% */
}

#iletisim label {
  color: var(--text-color);
  font-size: 14.331px;
  font-style: normal;
  font-weight: 500;
  line-height: 11.111px; /* 77.534% */
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

#iletisim #gizlilik {
  width: 20px;
  height: 20px;
}

.gonder {
  width: 156.667px;
  height: 42.222px;
  flex-shrink: 0;
  border-radius: 5.556px;
  background: var(--secondary);
  box-shadow: 0px 1.111px 2.222px 0px rgba(0, 0, 0, 0.25);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.gonder:hover {
  background: var(--primary);
}

.custom-file-upload {
  height: 30px;
  flex-shrink: 0;
  border-radius: 2.353px;
  border: 0.529px solid rgba(56, 59, 64, 0.63);
  background: #f4f4f4;
  color: var(--text-color);
  font-size: 10.447px;
  font-style: normal;
  font-weight: 300;
  line-height: 8.1px; /* 77.534% */
  text-align: center;
  padding: 0 12px;
  cursor: pointer;
}

#file-chosen {
  color: var(--text-color);
  font-size: 13.316px;
  font-style: normal;
  font-weight: 300;
  line-height: 10.324px; /* 77.534% */
}

.cv-upload {
  display: flex;
  align-items: center;
  gap: 12px;
}

.link.page {
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 36.923px; /* 167.832% */
  letter-spacing: 1.1px;
}

.box-title {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 36.923px; /* 167.832% */
  letter-spacing: 1.1px;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.box:hover .box-title {
  opacity: 0;
  visibility: hidden;
}

.page-detail {
  padding: 20px 0;
}

.page-title {
  color: var(--primary);
  padding: 10px 0;
  text-transform: uppercase;
}

.page {
  padding: 70px 0;
}

.members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 32px;
}

.members .member {
  border: 0.35px solid #e02a1f;
  background: #fff;
  text-align: center;
  padding: 13px 15px;
  color: var(--secondary);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.84px; /* 175.695% */
  letter-spacing: 0.65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sertifikalar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sertifika {
  max-width: 300px;
  height: 300px;
  width: 100%;
  display: flex;
}

.sertifika img {
  width: 100%;
  height: 100%;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion {
  border: 0.35px solid #e02a1f;
  background: #fff;
  padding: 12px 40px 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.accordion-header h6 {
  margin: 0 !important;
}

.accordion-desc {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  text-align: left;
}

.accordion-icon .plus-icon {
  position: relative;
  width: 24.5px;
  height: 24.5px;
}

.accordion-icon .plus-icon::before,
.accordion-icon .plus-icon::after {
  content: "";
  position: absolute;
  background-color: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.accordion-icon .plus-icon::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon .plus-icon::after {
  width: 4px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.accordion.open .plus-icon::after {
  transform: scale(0);
}
/* Dinamik Sayfalar */

/* İletişim */
.contact-box {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 2.398px;
  background: #fcfcfc;
  box-shadow: 0px 0px 3.197px 0px rgba(0, 0, 0, 0.14);
  flex: 1;
  width: 350px;
  height: 115px;
  padding: 20px 0;
}

.contact-box .box-left {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-items: center;
  padding: 12px 0;
}

.contact-box .box-left i {
  font-size: 28px;
  color: var(--primary);
}

.contact-box-title {
  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 29.158px; /* 225% */
}

.box-inner {
  display: flex;
  gap: 24px;
}

.box-desc {
  width: 70%;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  color: var(--secondary);
  font-weight: 500;
}

.box-desc:hover {
  color: var(--primary) !important;
}

@media (max-width: 992px) {
  .box-inner {
    flex-direction: column;
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }

  .page-content .right {
    padding-left: 0;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .box-inner {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
  }

  .page {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 576px) {
  .page-image {
    display: none;
  }
}
/* İletişim */

.detail-text {
  padding: 0 120px 0 60px;
}

.detail-text h2 {
  font-size: 20px !important;
}

.detail-text p {
  font-size: 16px;
}

.last {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px;
}

.last p {
  width: 70%;
}

.sayfa-detay {
  overflow: hidden;
  padding: 60px 0;
}

.detay {
  padding: 0 32px;
}

@media (max-width: 992px) {
  .detail-image {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .detail-image {
    width: 300px;
    margin: 0 !important;
    padding-bottom: 10px;
  }

  .sayfa-detay {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .detay {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* MEDYA */

.tab-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* TAB MENÜ */
.tab-menu {
  display: flex;
  list-style: none;
  background: #eee;
  border-bottom: 2px solid #ddd;
}
.tab-menu li {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tab-menu li:hover {
  background: #ddd;
}
.tab-menu li.active {
  background: #fff;
  border-bottom: 2px solid #e02a1f;
  color: #e02a1f;
}

/* TAB İÇERİKLERİ */
.tab-content {
  display: none; /* Başlangıçta gizli */
  padding: 20px;
  line-height: 1.6;
}
.tab-content.active {
  display: block; /* Aktif olan gösterilecek */
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* KART GENEL STİLİ */
.card {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  /* margin-bottom: 20px;  <-- Kaldırıldı; artık .cards-grid'deki gap ile boşluk veriyoruz. */
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-img {
  display: block; /* link olarak kullanıyoruz, tıklanabilir olsun */
  width: 100%;
  height: auto;
  overflow: hidden; /* Taşmaları saklayalım */
}
.card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 10px 15px;
}
.card-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}
.card-content p {
  font-size: 14px;
  color: #666;
}

/* BLOG ÖZEL STİLİ */
.blog-item .card-img img {
  max-height: 180px;
  object-fit: cover;
}

/* E-KATALOG ÖZEL STİLİ */
.catalog-item .card-img img {
  max-height: 180px;
  object-fit: cover;
}

/* VİDEO ÖZEL STİLİ */
.video-item .card-img img {
  max-height: 200px;
  object-fit: cover;
}

/* KARTLARI YAN YANA GÖSTERMEK İÇİN FLEX KONTEYNER */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Kartlar arasındaki boşluk */
}
/* Her kart geniş ekranda 3 sütun olacak şekilde */
.cards-grid .card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px; /* Çok daralmayı engellemek için */
}

/* 768px altına düşünce 2 sütuna geçelim */
@media (max-width: 768px) {
  .cards-grid .card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* 480px altına düşünce 1 sütuna geçelim */
@media (max-width: 480px) {
  .cards-grid .card {
    flex: 1 1 100%;
  }
}

/* FOTOĞRAF ÖZEL STİLİ */
.photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.photo-list a {
  display: block;
  width: calc(25% - 10px);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.photo-list a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}
.photo-list a:hover img {
  transform: scale(1.04);
}

/* FOTOĞRAF SEKMESİ EKRAN KÜÇÜLDÜKÇE 2 SÜTUNA DÜŞSÜN, DAHA KÜÇÜKTE 1 SÜTUN OLSUN */
@media (max-width: 768px) {
  .photo-list a {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .tab-menu li {
    font-size: 14px;
    padding: 10px 0;
  }
  .tab-content {
    padding: 10px;
  }
  .card-content h3 {
    font-size: 16px;
  }
  .photo-list a {
    width: calc(50% - 10px);
  }
}
@media (max-width: 400px) {
  .photo-list a {
    width: 100%;
  }
}
/* MEDYA */

/* BLOG */
.blog-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 30px;
}

.back-button {
  display: inline-block;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  background: #e02a1f;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.back-button:hover {
  background: #c51e19;
}

.blog-image {
  width: 100%;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.blog-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.blog-content {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 600px) {
  .container {
    margin-top: 10px;
    padding: 15px;
  }

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

  .blog-content {
    font-size: 14px;
  }

  .back-button {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* BLOG */

/* cookie */
.cookie {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 600px;
  background-color: var(--secondary);
  padding: 16px;
  border-radius: 6px;
}

.cookie.active {
  opacity: 1;
  visibility: visible;
}

.cookie.hidden {
  opacity: 0;
  visibility: hidden;
}

.cookie-title {
  color: var(--white);
}

.cookie-desc {
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-buttons button {
  cursor: pointer;
  padding: 6px 12px;
  background-color: var(--primary);
  border-radius: 6px;
  color: var(--white);
  transition: all 0.3s ease-out;
}

.cookie-buttons button:hover {
  background-color: #ca261c;
}

.cookie-buttons a {
  cursor: pointer;
  padding: 6px 12px;
  background-color: var(--primary);
  border-radius: 6px;
  color: var(--white) !important;
  transition: all 0.3s ease-out;
}

.cookie-buttons a:hover {
  background-color: #ca261c;
}

.accordion-wrapper {
  padding: 30px 0;
}
/* cookie */

@media (max-width: 768px) {
  .tanitim-inner {
    width: 100%;
  }

  .stat {
    font-size: 22px !important;
  }

  .stats-block .title {
    font-size: 16px;
  }

  .tanitim-title {
    font-size: 22px !important;
  }

  .corporate-boxes {
    flex-direction: column;
    height: auto;
  }

  .corporate-boxes a {
    width: 100% !important;
  }

  .last {
    display: none;
  }
}
