body{
   background: linear-gradient(#faa436, #ffcd26, #ffcc26b9);
   height: 100%;
   margin:0;
   padding: 0;
}

 .header-title-mobile .title-big-mobile {
  display:none;
 }

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    margin: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

/* Desktop Title Container - Slider altında */
.desktop-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 5px 0;
}

.desktop-title-container .title-big {
    font-size: 40px;
    color: #000000;
    font-weight: bold;
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    text-align: center;
}

/* Desktop Description Container - Title altında */
.desktop-description-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0 20px 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.desktop-description-container .description-text {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

/* Mobile Description Container - En alta */
.mobile-description-container {
    display: none; /* Desktop'ta gizli */
    width: 100%;
    padding: 20px;
    margin-top: 30px;
}

.mobile-description-container .mobile-description-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 15px;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Header'daki text icon container */
.fixed-header .text-icon-container {
    position: static;
    transform: none;
    flex: 0 0 auto;
}

.logo{
    width: auto;
    height: 70px !important;
    margin-top: 35px;
}

.content {
    z-index: 2;
    width: 100%;
    padding-top: 170px;
    padding-bottom: 0px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    top: -170px;
    align-items: center;
    justify-content: flex-start;
    border-bottom-left-radius: 800px;
    border-bottom-right-radius: 800px;
    gap: 15px;
}

/*.sub-title{
    font-size:25px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0px;
    margin-top: 175px;
}*/

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Extrabold.woff') format('woff'),
       url('assets/fonts/Gilroy-Extrabold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Light.woff') format('woff'),
       url('assets/fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
 .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
  }

.image-container .img-vector {
    height: 230px;
    width: auto;
    transition: transform 0.6s ease-in-out;
    position: relative;
}

.image-container .img-vector:hover{
    animation: moveSide 1s ease-in-out infinite alternate;
}


.title-big{
    font-size: 50px;
    color: #faa436;
    font-weight: bold;
    font-family: 'Gilroy', sans-serif;
    margin-bottom: 0px;
    margin-top: 0px;
}

.paragrapgh{
    width:50%;
    font-size:17px;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    color:#000;
    text-align: center;
    margin-bottom: 0px;
}

.paragrapgh-title{
    width:50%;
    font-size:19px;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    color: #000;
    text-align: center;
    margin-bottom: 0px;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 80%;
    max-width: 700px;
    margin: 25px auto 0 auto;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.slide:first-child {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

/* Navigation Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 15;
    transition: all 0.3s ease;
    user-select: none;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn:active, .next-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slide.show {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

/* .text-slide {
    background: linear-gradient(135deg, #faa436, #ffcd26);
    color: white;
    padding: 40px;
    pointer-events: auto;
    z-index: 10;
}

.text-content {
    text-align: center;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.text-content .paragrapgh {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.paragrapgh.collapsed {
    max-height: 60px;
    overflow: hidden;
    position: relative;
}

.paragrapgh.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.read-more-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.read-more-btn:hover {
    background: white;
    color: #faa436;
    transform: scale(1.05);
} */

/* Fixed Text Icon - Güncellenmiş */
.text-icon-container {
    position: relative;
}

.text-icon-btn {
    background: linear-gradient(135deg, #686666, #413535);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(25 25 25 / 30%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    position: relative;
    white-space: nowrap;
}

.text-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(250, 164, 54, 0.5);
}

.text-icon-btn svg {
    width: 20px;
    height: 20px;
}

.text-icon-btn .about-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

/* Tooltip - Header için güncellenmiş */
.tooltip {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Gilroy', sans-serif;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.8);
}

.text-icon-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.image-slide {
    background: #f0f0f0;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #faa436;
}

.modal-content h3 {
    color: #faa436;
    font-family: 'Gilroy', sans-serif;
    margin-bottom: 20px;
}

.modal-content p {
    font-family: 'Gilroy', sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slideshow navigation dots */
.slideshow-container::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

@keyframes moveSide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-big,
.paragrapgh,
.paragrapgh-title,
.logo,
.image-container {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Sıralı gecikmeler */
.title-big {
  animation-delay: 0.2s;
}

.paragrapgh:nth-of-type(1) {
  animation-delay: 0.4s;
}

.paragrapgh:nth-of-type(2) {
  animation-delay: 0.6s;
}

.paragrapgh:nth-of-type(3) {
  animation-delay: 0.8s;
}

.paragrapgh:nth-of-type(4) {
  animation-delay: 1s;
}

.paragrapgh-title {
  animation-delay: 1.2s;
}

.logo {
  animation-delay: 1.4s;
}

.image-container {
  animation-delay: 1.6s;
}

.img-laptop{
   position: fixed;
    bottom: -8vh;
    left: -6vw;
    rotate: 30deg;
    width: auto;
    height: 345px;
    animation-delay: 3s;
    z-index: 5;
}

.img-coffee{
   position: fixed;
    bottom: 4vh;
    left: 23vw;
    rotate: -10deg;
    width: auto;
    height: 80px;
    animation-delay: 3.4s;
    z-index: 5;
}

.img-phone{
    position: fixed;
    bottom: 28vh;
    left: 0vw;
    rotate: 25deg;
    width: auto;
    height: 100px;
    animation-delay: 3.8s;
    z-index: 5;
}

.img-papers{
       position: fixed;
    bottom: -8vh;
    right: 1vw;
    rotate: -15deg;
    width: auto;
    height: 320px;
    animation-delay: 4.5s;
    z-index: 5;
}

@keyframes slideUpLeft {
  0% {
    opacity: 0;
    transform: translate(-60px, 60px) rotate(40deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

.img-laptop,
.img-coffee,
.img-phone,
.img-papers {
  opacity: 0;
  animation: slideUpLeft 1.1s forwards;
}

/* ===========================
   📱 Mobil Görünüm Ayarları
   (Sadece 768px ve altı)
   =========================== */
@media only screen and (max-width: 768px) {

  /* Genel görünüm */
  body {
    background: linear-gradient(180deg, #faa436);
    overflow-x: hidden;
  }

  /* Fixed Header Mobil - Tamamen Yeniden Düzenlenmiş */
     .fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        padding: 15px 20px;
        margin: 0;
        display: flex;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header-title-mobile{
      width: 100%;
    }

  .header-title-mobile .title-big-mobile {
        display: block;
        margin: -12px 21px 0px auto;
        width: fit-content;
        height: 7rem;
  }

  .image-container .img-vector {
    height: 10rem;
    width: auto;
    transition: transform 0.6s 
ease-in-out;
    position: relative;
}

  /* Header Title - Mobilde En Üstte */
  .header-title {
    order: 2;
    flex: none;
    margin: 0;
    display:none;
    width: max-content;
  }

  .header-title .title-big {
    font-size: 22px;
    color: #faa436;
    margin: 0;
    text-align: center;
    line-height: 1.2;
  }

  /* Logo ve İkon - Alt satırda yan yana */
  .header-bottom {
    order: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-container {
    order: 1;
    flex: none;
  }

  .header-logo {
    height: 35px;
    width: auto;
  }

  .text-icon-container {
    order: 3;
    flex: none;
    position: static;
    transform: none;
  }

  .text-icon-btn {
    padding: 8px 15px;
    border-radius: 20px;
    gap: 6px;
  }

  .text-icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .text-icon-btn .about-text {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .tooltip {
    display: none; /* Mobilde tooltip gizle */
  }

  /* Desktop Title Container - Mobilde gizle */
  .desktop-title-container {
    display: none;
  }

  /* Desktop Description Container - Mobilde gizle */
  .desktop-description-container {
    display: none;
  }

  /* Mobile Description Container - Mobilde göster */
  .mobile-description-container {
    display: block;
    position: absolute;
    bottom: -120px;
    width: 95%;
  }

  /* Slideshow mobil optimizasyonu */
  .slideshow-container {
    width: 95%;
    height: 250px;
    margin: 20px auto;
    border-radius: 10px;
  }

  /* Mobile Navigation Arrows */
  .prev-btn, .next-btn {
    padding: 10px 15px;
    font-size: 18px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .slide img {
    border-radius: 10px;
  }

  /* Paragraf başlığı */
  .paragrapgh-title {
    width: 90%;
    font-size: 18px;
    margin: 20px 0 10px 0;
    text-align: center;
    color: #faa436;
  }

  /* Slideshow mobil ayarları */
  .slideshow-container {
    width: 90%;
    max-width: 95%;
    height: 27vh;
    margin: 0px auto 0px auto;
  }

  /* Modal mobil ayarları */
  .modal-content {
    width: 80%;
    margin: 20% auto;
    padding: 20px;
    max-width: 80%;
    border-radius: 10px;
    text-align: center;
  }

  .modal-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .modal-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Eski elementleri gizle */
  .img-laptop,
  .img-coffee,
  .img-phone,
  .logo {
    display: none !important;
    visibility: hidden !important;
  }

  /* Animasyon süreleri mobilde kısaltıldı */
  .title-big,
  .paragrapgh-title,
  .slideshow-container {
    animation-duration: 0.6s;
  }

  .img-papers 
  {
    width: 80%;
    height: auto;
    display: none !important;
  }

  .content{
    top:-90px;  
    border-bottom-right-radius: 70vh;
    border-bottom-right-radius: 0vh;
  }
  
}
