@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay_Complete/Fonts/TTF/ClashDisplay-Variable.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}@font-face {
    font-family: 'ClashDisplayBold';
    src: url('/fonts/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*{
    box-sizing: border-box;
    font-family: ClashDisplay, Open Sans, sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    text-decoration: none;
}
body{
    background-color: #fdfbf7;
}
.yeniGiris{
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    padding: 100px;
    overflow: hidden;
    height: fit-content;
}
.yeniGirisSol{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 60%;
}
.yeniGirisSol h1{
    font-size: 70px;
    font-family: ClashDisplayBold;
}
.yeniGirisSol h1 span{
    font-size: 70px;
    color: #bf441b;
    font-family: ClashDisplayBold;
}
.yeniGirisSol p{
    font-size: 20px;
}
.yeniGirisSag{
    overflow: hidden;
}
svg {
    right: 10vw;
    top: 5vh;
    position: absolute;
    height: 200px;
    width: 300px;
    height: fit-content;
    transform: rotate(60deg) skewX(5deg); /* SAĞA DOĞRU YATIRMA */
}
.base-line {
  fill: none;
  stroke: #bf441b;
  stroke-width: 4;
  opacity: 0.3;
}
.motion-line {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 50 400;
  animation: move 2.5s linear infinite;
}
@keyframes move {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -450;
  }
}
.yeniGirisSag img{
    width: 200px;
}
.marqueee{
    overflow: hidden;
    position: relative;
    min-height: 10vh;
     display: block;
  margin: 50px 0;
  z-index: 1;
}
.hizmetlerKayan1{
    color: #bf441b;
    font-size: 60px;
    transform: rotate(2deg);
    background-color: #bf441b07;
    padding: 20px 0px;
}
.hizmetlerKayan2{
    color: white;
    font-size: 60px;
    transform: rotate(-2deg);
    background-color: #bf441b;
    padding: 20px 0px;
}
.arkaPlan{
    position: absolute;
    top: 20px;
    left: 100px;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: .4;
}
.arkaPlan2{
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: .4;
}.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: bf441b;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 90;
}
.header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(10px);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(10px); 
}
.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo img{
    width: 40%;
}
.logo-main {
    font-size: 32px;
    font-weight: bold;
    color: #bf441b;
    letter-spacing: 2px;
    line-height: 1;
}
.logo-sub {
    font-size: 12px;
    color: #bf441b;
    letter-spacing: 4px;
    margin-top: 2px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    justify-content: center;
    align-self: center;
    text-align: center;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}
.nav-menu a:hover {
    color: #bf441b;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #bf441b;
    transition: width 0.3s ease;
}
.nav-menu a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #bf441b;
    transition: all 0.3s ease;
}
.content {
    margin-top: 120px;
    padding: 40px 5%;
    text-align: center;
}
.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bf441b;
}
@media (max-width: 768px) {
    .header {
        padding: 12px 5%;
        height: 10vh;
    }
    .logo-main {
        font-size: 24px;
    }
    .logo-sub {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .hamburger {
        display: flex;
    }
.logo img{
    width: 70%;
}
.nav-menu {
    position: fixed;
    top: 10vh;
    right: -100%;
    width: 80%;
    height: 90vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    transition: right 0.4s ease;
    color: black;
    backdrop-filter: blur(10px);
    display: flex;
}
.nav-menu.active {
    right: 0;
}
.nav-menu a {
    font-size: 18px;
    color: black;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
}
#altiCizili{
    border-bottom: 2px solid #bf441b;
}
.buton{
    position: relative;
    color: white;
    background-color: #bf441b;
    border-radius: 20px;
    padding: 10px 60px;
    border: 1px solid #bf441b;
    transition: .3s;
    width: fit-content;
    margin-right: 0 auto;
}
.buton:hover{
    box-shadow: 0px 0px 5px 5px #bf441b5e ;
    transition: .3s;
}
.giris{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    height: 90vh;
    position: relative;
    overflow: hidden !important;
    padding: 25vh 0vh;
}
.giris div{
    display: flex;
    gap: 20px;
}

#sekil1{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 3s linear infinite;
    opacity: .2;
    top: 10vh;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
    left: -200px;
}
#sekil2{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 3.3s linear infinite;
    opacity: .2;
    top: 15vh;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
    left: -200px;
}
#sekil3{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 3.7s linear infinite;
    opacity: .2;
    top: 25vh;
    width: 200px;
    height: 200px;
    animation-delay: 6s;
    left: -200px;
}
#sekil4{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 4.1s linear infinite;
    opacity: .2;
    top: 30vh;
    width: 140px;
    height: 140px;
    animation-delay: 4s;
    left: -200px;
}
#sekil5{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 4.5s linear infinite;
    opacity: .2;
    top: 40vh;
    width: 220px;
    height: 220px;
    animation-delay: 5s;
    left: -200px;
}
#sekil6{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 4.8s linear infinite;
    opacity: .2;
    top: 55vh;
    width: 110px;
    height: 110px;
    left: -220px;
    animation-delay: 1s;
    left: -200px;
}
#sekil7{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 5.2s linear infinite;
    opacity: .2;
    top: 60vh;
    width: 190px;
    height: 190px;
    animation-delay: 3s;
    left: -200px;
}
#sekil8{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 5.6s linear infinite;
    opacity: .2;
    top: 10vh;
    width: 210px;
    height: 210px;
    animation-delay: 2s;
    left: -200px;
}
#sekil9{
    position: absolute;
    z-index: -100;
    animation: sola-sola-ilerle 6s linear infinite;
    opacity: .2;
    top: 15vh;
    width: 170px;
    height: 170px;
    animation-delay: 0s;
    left: -200px;
}
@keyframes sola-sola-ilerle {
    100% {
        left: calc(100vw + 20px);
    }
}
.giris div a{
    color: white;
    background-color: #bf441b;
    border: 1px solid #bf441b;
    border-radius: 20px;
    padding: 10px 30px;
    font-weight: bold;
    transition: .3s;
}
.giris div a:hover{
    color: #bf441b;
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 30px;
    transition: .3s;
}
.giris h1{
    font-size: 90px;
}
.giris p{
    font-size: 40px;
    font-weight: bold;
}
.giris p span{
    color: #bf441b;
}
.giris div a:nth-child(2){
    color: #bf441b;
    background-color: transparent;
}
.base-line {
  fill: none;
  stroke: #bf441b;
  stroke-width: 4;
  opacity: 0.3;
}
.motion-line {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 50 400;
  animation: move 2.5s linear infinite;
}
@keyframes move {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -450;
  }
}
.yeniGirisSag img{
    width: 200px;
}
.alan1{
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.alan1 .image-container img{
    width: 900px;
    border-radius: 20px;
    transition: opacity 0.4s ease;
}
.sticky-section {
    position: relative;
    height: 200vh;
}
.image-container { 
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.alan1Kare1{
    left: 0px;
    top: 35%;
    position: absolute;
    display: flex;
    user-select: none;
    z-index: 2;
    width: 300px;
}
.alan1Kare2{
    right: 0px;
    top: 35%;
    position: absolute;
    display: flex;
    user-select: none;
    z-index: 2;
    width: 300px;
}
.alan2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 100px;
    gap: 50px;
    position: relative;
    padding: 80px;
    text-align: center;
    border-radius: 100px;
    overflow: hidden;
    margin: 300px 0px;
    height: fit-content;
}
.nelerSekil1Container{
    position: absolute;
    top: 100px;
    right: 200px;
    width: 300px;
    height: 300px;
    overflow: hidden;
}
.nelerSekil1{
    position: absolute;
    top: 0;
    left: 0;
    width: 900px;
    height: 1050px;
    z-index: 10;
    opacity: 0.4;
}
.alan2Baslik{
    font-size: 20px;
}
.alan2Baslik span{
    color: #bf441b;
}
.alan2 .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.alan2 .content .yazilar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

}
.isler-wrapper {
  width: 100%;
  white-space: nowrap;
  background: #fdfbf7;
}
.isler-track {
  display: flex;
  width: max-content;
  gap: 20px;
}
.isler {
  display: flex;
  gap: 40px;
}
.isler p {
  white-space: nowrap;
  min-width: max-content;
  padding: 20px;
  font-size: 20px;
  border-radius: 20px;
  background: white;
  border-radius: 8px;
}
.isler-wrapper.sol .isler-track {
  animation: slideLeft 60s linear infinite;
}
.isler-wrapper.sag .isler-track {
  animation: slideRight 60s linear infinite;
}
.yazilar p{
    font-size: 35px;
    width: 500px;
    font-family: ClashDisplayBold, sans-serif;
}
.alan2 .hizmetlerButon{
    width: 300px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
}
.alan2 .alan2Kare{
    position: absolute;
    width: 1100px;
    z-index: -1;
    opacity: 0.4;
}
.alan3{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.alan3 .arkaGizliKare{
    position: absolute;
    width: 80%;
    top: 300px;
    height: 500px;
    z-index: -1;
    background-color: #bf441b;
    border-radius: 20px;
    opacity: 0.06;
}
.alan3 .kutular{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 100px;
    gap: 50px;
}
.alan3 .kutu{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
    position: relative;
}
.alan3 .alan3ImgContainer {
    border-radius: 20px;
    width: 1100px;
    height: 400px;
    position: relative;
    display: flex;
    overflow: hidden;
}
.alan3 .alan3ImgContainer img{
    border-radius: 20px;
    width: 1100px;
    height: 700px;
    display: flex;
}
.alan3 .kutu .yazilar3{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.alan3 .kutu .yazilar3 p{
    font-size: 17px
}
.alan3 .kutu .yazilar3 h1{
    font-size: 35px
}
.alan3 .kutu .yazilar3 span{
    background-color: #bf441b;
    width: 60px;
    height: 5px;
    border-radius: 20px;
    opacity: 0.6;
}
.alan3 .kutu .yazilar3 .yazi1{
    color: #bf441b;
}
.alan3 .kutu .yazilar3 .yazi2{
    color: #000000b3;
}
.katilin{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: 10vh;
    padding-bottom: 10px;
    margin-bottom: 100px;
    overflow: hidden;
}
.katilinYazi{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.katilinYazi h1{
    color: #bf441b;
    font-size: 100px;
}
.katilinYazi p{
    width: 90%;
    font-size: 19px;
}
.katilinYazi a{
    background-color: #bf441b;
    color: white;
    width: 250px;
    border-radius: 20px;
    padding: 15px 20px;
    transition: .3s;
    font-size: 20px;
}
.katilinYazi a:hover{
    box-shadow: 0px 0px 5px 5px #bf441b5e ;
    transition: .3s;
}.circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #bf441b;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.circle.left {
  left: 100px;
  top: 30%;
}

.circle.right {
  right: 100px;
  top: 60%;
  animation-name: floatRight;
}

@keyframes float {
  0% { transform: translateX(0); }
  50% { transform: translateX(200px); }
  100% { transform: translateX(0); }
}

@keyframes floatRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(-200px); }
  100% { transform: translateX(0); }
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;
    gap: 50px;
}
footer .ust{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
footer .ust .ustSol {
    font-size: clamp(30px, 8vw, 100px);
}
footer .alt{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
footer .alt .altSag{
    display: flex;
    gap: 20px;
}
footer .alt .altSag a{
    color: black
}
#footerHR{
    background-color: gray;
    height: 1px;
    width: 100%;
    border: none;
}
.asagi{
    position: absolute;
    top: 100px;
    right: 100px;
    width: 100px;
    height: 100px;
    background-color: #bf441b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 100px;
    transition: .3s;
    animation: float2 3s ease-in-out infinite;
}
.asagi:hover{
    box-shadow: 0px 0px 5px 10px #c5705d3d ;
    transition: .3s;
}

@keyframes float2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(0); }
}
@keyframes slideLeft {
    0% {
        transform: translateX(0%);
      }
    100% {
        transform: translateX(-50%);
      }
}
@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
@media (max-width: 1200px) {
    .asagi{
        position: relative;
        top: 0px;
        right: 0px;
        width: 100px;
        height: 100px;
        background-color: #bf441b;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        border-radius: 100px;
        transition: .3s;
        animation: float2 3s ease-in-out infinite;
    }
    .asagi:hover{
        box-shadow: 0px 0px 5px 10px #bf441b3d ;
        transition: .3s;
    }
    .alan3 .arkaGizliKare{
        display: none;
    }
    .giris{
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .giris h1 {
        font-size: 70px;
    }
    .giris p {
        font-size: 30px;
    }
    .alan1 .image-container img {
        width: 700px;
    }
    .alan1Kare1,
    .alan1Kare2 {
        width: 200px;
    }
    .alan2 {
        padding: 50px;
    }
    .alan3 .kutular {
        padding: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .alan3 .kutu {
        width: 350px;
    }
    .alan3 .alan3ImgContainer {
        width: 90%;
        height: 300px;
    }
    .alan3 .alan3ImgContainer img {
        width: 100%;
        height: auto;
    }
    footer {
        padding: 50px;
    }.arkaPlan{
    width: 200px;
    height: 200px;
    top: 100px;
    left: 0px;
}
.arkaPlan2{
    width: 200px;
    height: 200px;
    right: 0;
    bottom: 100px;
}
}

@media (max-width: 768px) {
    
    .yeniGiris{
        justify-content: center;
        padding: 0px;
        margin-top: 10vh;
    }
    .yeniGirisSol{
        width: 90%;
        gap: 20px;
        flex-wrap: wrap;
    }
    .yeniGirisSol h1{
        width: 90%; 
        font-size: xxx-large;
    }
    .yeniGirisSol h1 span{
        width: 90%; 
        font-size: xxx-large;
    }
    svg{
        opacity: .4;
        width: 100%;
    }
    .giris {
        padding: 0px 20px;
        border-radius: 20px;
    }
    .giris h1 {
        font-size: 50px;
    }
    .giris p {
        font-size: 24px;
    }
    .giris div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
    }
    .giris div a {
        width: 60%;
        text-align: center;
    }
    .alan1 .image-container img {
        width: 90%;
    }
    .alan1Kare1{
        display: none;
    }
    .alan1Kare2 {
        display: none;
    }
    .alan2 {
        padding: 30px;
        margin: 100px 0px;
    }
    .yazilar p {
        font-size: 28px;
        width: 100%;
    }
    .isler p {
        padding: 15px;
        font-size: 16px;
    }
    .alan3 .kutular {
        padding: 20px;
    }
    .alan3 .kutu {
        width: 100%;
        background-color: #bf441b18;
        border-radius: 20px;
        padding: 50px 20px;
    }
    .alan3 .alan3ImgContainer {
        width: 90%;
        height: 200px;
    }
    .alan3 .alan3ImgContainer img {
        width: 100%;
        height: auto;
    }
    footer {
        padding: 30px;
    }
    footer .ust {
        flex-direction: column;
        gap: 20px;
    }
    footer .alt {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    footer .alt .altSag {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .giris h1 {
        font-size: 40px;
    }
    .giris p {
        font-size: 20px;
    }
    .alan2Baslik {
        font-size: 18px;
    }
    .yazilar p {
        font-size: 24px;
    }
    .isler p {
        padding: 10px;
        font-size: 14px;
    }
    .alan3 .kutu .yazilar3 h1 {
        font-size: 28px;
    }
    .alan3 .kutu .yazilar3 p {
        font-size: 15px;
    }
    footer .ust .ustSol {
        font-size: 40px;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .katilinYazi h1 {
        font-size: 60px;
    }
    .katilinYazi p {
        font-size: 15px;
    }
}

