@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/airstrike');

:root{
    --main-color: #111832;
    --second-color: #1743e1;
    --third-color: #23336c;
    --white: #ffffff;
    --black: #000000;
    --airstrike: 'AirStrike', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --text-color: #1e73be;
    --basarilar-text-color:#00B2EB;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--main-color);
}

::-webkit-scrollbar {
    width: 8px; 
    height: 3px; 
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5); 
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1); 
}   


/* HEADER */

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 4rem 7%;
}

header.sticky{
    padding: 5rem 100px;
    background: var(--main-color);
}

header .logo{
    position: relative;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-size: 3em;  
    font-family: var(--airstrike);
    font-weight: bold;
    text-decoration: none;
    transition: 0.6s;
    letter-spacing: 0.2rem;
}

header .navbar{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .navbar{
    position: relative;
    list-style: none;
}

header .navbar a{
    position: relative;
    margin: 0 1.5rem;
    text-decoration: none;
    color: var(--white);
    font-family: var(--poppins);
    letter-spacing: 0.2rem;
    font-weight: bold;
    font-size: 1.4rem;
    transition: .3s;
}

.navbar a:hover{
    color: var(--second-color);
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: .3s;
}

.navbar a:hover::before{
    width: 100%;
    background: var(--second-color);
}

header .header-icons div{
    color: var(--white);
    cursor: pointer;
    font-size: 2.15rem;
    margin-left: 2rem;
}

header .header-icons div:hover{
    color: var(--second-color);
    transition: 0.4s;
}
header.hovered {
    background: var(--main-color); /* Mavi renk */
}
#menu-btn{
    display: none;
    color: var(--white);
}

header .search-form{
    position: absolute;
    top: 115%; right: 7%;
    background: var(--white);
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    padding: 1rem;
    text-transform: none;
}

header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);
}

.mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 100px;
    opacity: 0;
    visibility: hidden; 
    transition: all 0.5s;
}

.nav-item:hover .mega-box {
    top: 54px;
    opacity: 1;
    visibility: visible;
}
.contenta{
    background: var(--main-color);
    border: 10px;
    padding: 25px 40px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    
}

.main-mega{
    width: 25%;
    line-height: 45px;
}

img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.mega-links{
    margin-left: -42px;
    list-style: none;
}

.mega-links li{
    padding: 0 20px;
}

.mega-links li a{
    padding: 10px 20px;
    color: var(--white);
    font-size: 20px;
    font-family: var(--poppins);
    display: inline-block;
    width: 80%;
}


.lang{
    margin: 0 10px;
    padding-left: 15px;
    position: relative;
}

.lang a{
    display: block;
    color: #ffffff;
    font-size: 23px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-family: Poppins, Sans-Serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lang a:hover {
    color: var(--second-color); /* Sarı renk */
    transform: scale(1.2); /* Simge büyür */    
}

#menu-btn {
    display: none;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1100;
}

.navbar a.active{
    color: var(--second-color);
}

@media screen and (max-width: 992px) {
    #menu-btn {
        display: block;
        position: fixed;
        top: 35px;
    }

    header .navbar {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--main-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 6rem;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    }

    header .navbar a {
        display: block;
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        font-size: 1.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar.show {
        right: 0;
    }

    .mega-box{
        display: none;
    }

    .navbar a::before
    {
        content: none !important;
        display: none !important;
    }

    header .logo{
        position: relative;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        font-size: 2em;  
        font-family: var(--airstrike);
        font-weight: bold;
        text-decoration: none;
        transition: 0.6s;
        letter-spacing: 0.2rem;  
    }

    .lang a{
        margin: 0 10px;
        padding-right: 10px;
        position: relative;
    }
}

/* FOOTER */

.footer {
    background-color: var(--black); /* Koyu arka plan */
    color: #fff; /* Beyaz metin rengi */
    padding: 40px 20px;
    text-align: center;
    
}

.containerfooter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

.footer .brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--white); /* Sarı renk */
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    font-family: var(--airstrike);
}

.footer .brand:hover {
    color: var(--second-color); /* Açık sarı */
}

.menufooter {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--poppins);
}

.menufooter li {
    margin: 10px 15px;
}

.menufooter a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menufooter a:hover {
    color: var(--second-color); /* Sarı renk */
}

.media-icons {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.media-icons li {
    margin: 0 10px;
}

.media-icons a {
    color: #fff;
    font-size: 24px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.media-icons a:hover {
    color: var(--second-color); /* Sarı renk */
    transform: scale(1.2); /* Simge büyür */
}

.footer p {
    font-size: 14px;
    color: #aaa; /* Hafif gri yazı */
    margin-top: 20px;
    line-height: 1.8;
    font-family: var(--poppins);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .menufooter {
        flex-direction: column;
    }

    .menufooter li {
        margin: 5px 0;
    }

    .media-icons {
        flex-wrap: wrap;
    }

    .media-icons li {
        margin: 5px 10px;
    }
}

.timeline-main_heading-wrapper h2 {
  font-size: 6rem; 
  font-weight: bold; 
  color: var(--basarilar-text-color); 
  text-align: center; 
  text-transform: uppercase;
  font-family: var(--poppins);
}


.inline-block {
  max-width: 100%;
  display: inline-block;
}

.page-wrapper {
  z-index: 0;
  position: relative;
}

.container {
  width: 90vw;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.section-timeline-heading {
  background-color: var(--main-color);
}

.padding-vertical-xlarge {
  padding-top: 120px;
  padding-bottom: 120px;
}

.timeline-main_heading-wrapper {
  color: #fff;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--poppins);
}

.timeline_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.timeline_item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
}

.timeline_centre {
  justify-content: center;
  display: flex;
}

.timeline_date-text {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
  font-family: var(--poppins);
}

.timeline_text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--poppins);
}

.timeline_circle {
  background-color: #fff;
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px #0a0a0a;
}

.timeline_progress {
  z-index: -2;
  background-color: #414141;
  width: 3px;
  height: 100%;
  position: absolute;
}

.timeline_progress-bar {
  z-index: -1;
  background: #ff6a00;
  background: -webkit-linear-gradient(to bottom, #23336c, #1743e1);
  background: linear-gradient(to bottom, #23336c, #1743e1);
  width: 3px;
  height: 50vh;
  position: fixed;
  inset: 0 auto 50vh;
}

.section-timeline {
  z-index: -3;
  background-color: var(--main-color);
  position: relative;
}

.margin-bottom-xlarge {
  margin-bottom: 56px;
}

.timeline_link {
  opacity: 0.6;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  font-family: var(--poppins);
}

.timeline_link:hover {
  opacity: 1;
}

.link-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.inline-block {
  display: inline-block;
}

.text-colour-lightgrey {
  color: #ffffffa6;
}

.overlay-fade-top {
  background-image: linear-gradient(#111832, #11183200);
  height: 80px;
  position: absolute;
  inset: 0% 0% auto;
}

.overlay-fade-bottom {
  background-image: linear-gradient(to top, #111832, #11183200);
  height: 80px;
  position: absolute;
  inset: auto 0% 0%;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }

  .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .timeline_item {
    grid-template-columns: 64px 1fr;
    width: 100%;
  }

  .timeline_left {
    text-align: left;
    grid-area: 1 / 2 / 2 / 3;
  }

  .timeline_centre {
    justify-content: flex-start;
    grid-area: 1 / 1 / 3 / 2;
  }

  .timeline_right {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  .timeline_date-text {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .timeline_text {
    font-size: 20px;
  }

  .timeline_progress {
    left: 6px;
  }

  .margin-bottom-xlarge {
    margin-bottom: 48px;
  }

  .timeline-main_heading-wrapper h2{
    font-size: 40px;
  }
}
