@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;
    --araclar-text-color:#00b2eb;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--poppins);
}


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);
    
}


/* 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;
}

@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;
    }
}



main.mainPhantom {
    min-height: 500px;
    display: block;

}

.phantomclass {
    width: 70% !important;
    height: auto;
    position: relative;
    left: 260px;
    top: 100px;

}

.phantomImg .planeDots {
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.phantomImg .planeDots .tooltipDot {
    width: 30px;
    height: 30px;
    box-shadow: 0 10px 17px rgba(0, 0, 0, 0.28);
    background-color: #ffffff;
    border: 4px solid #00bfff;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;

}

.phantomImg .planeDots .tooltipDot .tooltipPopover {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #1e15a1;
    font-size: 15px;
    font-family: var(--poppins);
    font-weight: bold;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    padding: 10px 15px;
    border-radius: 10px;
    transition: opacity 0.5s ease;
}

.phantomImg .planeDots .tooltipDot .tooltipPopover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: #ffffff #0000 #0000 #0000;
}


.phantomImg .planeDots .tooltipDot:hover .tooltipPopover {
    bottom: 200%;
    visibility: visible;
    opacity: 1;
}

.phantomImg .text {
    color: #1743e1;
    font-size: 150px;
    text-align: center; /* Metni ortaya hizalar */
    text-transform: uppercase;
    font-family: var(--poppins);

    /* Merkezi hizalama */
    position: absolute;
    top: 30%; /* Dikey merkez */
    left: 50%; /* Yatay merkez */
    transform: translate(-50%, -50%); /* Gerçek merkezi hizalama */
}

.phantomImg .text::before {
    content: attr(REFL-TEXT);
    position: absolute;
    top: 110px;
    left: 0;
    transform: rotateX(180deg);
    line-height: 55px;
    transform-origin: bottom;
    background: linear-gradient(to top, #1743e1, transparent);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.3;
}

.phantomicon {

    width: 280px;
    text-align: center;

}

.phantomicon img {
    display: inline-block;
    max-width: 100%;

}

.phantomicon span {
    font-size: 31px;
    color: #ffffff;
    font-family: var(--poppins);
    font-weight: 600;
    margin-top: 14px;
    position: relative;
    display: block;
    bottom: 80px;
}

.phantombilgi {
    flex: 1;
    padding-right: 50px;
    justify-content: flex-end;

}

.phantombilgi .sTitle {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 10px;
    position: relative;
    bottom: 50px;
    left: 300px;
}

.phaP {
    width: 80%;
    margin: 0 300px;
    text-align: justify;
    color: #ffffff;
    font-size: 15px;
}

.wrappercard {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.card {
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);
    box-shadow: 0px 10px 30px -5px rgba(255, 255, 255, 0.18);
}


.card>.row {
    color: rgb(0, 213, 255);
    display: flex;
    flex-wrap: nowrap;
}



.card>.row>.description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: rotateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 35px;
    font-weight: bold;
}

.description p {
    color: white;
    padding: 5px;
}

.description h4 {
    text-transform: uppercase;
}

/*input {
    display: none;
}*/

input:checked+label {
    width: 600px;
}

input:checked+label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}





.techDrawTextPh h3 {
    color: var(--araclar-text-color);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.57px;
    white-space: nowrap;
    background-image: linear-gradient(180deg, #1e73be 0%, #479fed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    top: 60px;
    margin-top: -5%;
    margin-left: 14%;
}



.techDrawPh {
    margin: 100px 0;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cards {
    width: 440px;
    aspect-ratio: 1/0.7;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 10px 30px -5px rgba(255, 255, 255, 0.4);
    font-family: var(--poppins);
}

.cards .image-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cards .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.cards:hover .image-box img {
    transform: scale(1.1);
}

.cards::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 6px solid rgb(28, 93, 125);
    border-radius: inherit;
    opacity: 1;
    transition: 0.4s ease-in-out;
}



.controls label,
.thumbnails label {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.thumbnails {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.controls {
    display: none;
    /* İsteğe bağlı olarak kontrol etiketlerini gizlemek için */
}

input[type="radio"] {
    display: none;
}

.phantomContainer{
    margin: 35px !important;
}

.row{
    
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.phantomTeknik{
    position: relative;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.phantomDonanim{
    position: relative;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}
.phantomTeknik .phantomTeknikKart{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(76, 104, 171, 0.75);
    padding: 25px;
    margin: 15px 0;
}
.phantomDonanim .phantomDonanimKart{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(76, 104, 171, 0.75);
    padding: 25px;
    margin: 15px 0;
}
.phantomTeknik .phantomTeknikKart span.ptText{
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1.08px;
}
.name{
    font-weight: bold;
}
.name::after {
    content: ": "; 
    margin-right: 5px; 
    
}
.phantomDonanim .phantomDonanimKart span.pdText{
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1.08px;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.phantomTeknik .phantomTeknikKart .propertyList li{
    color: #d8e3fd;
    font-size: 16px;
    letter-spacing: -0.14px;
    display: flex;
    margin: 15px 0;
}
.phantomDonanim .phantomDonanimKart .propertyList li{
    color: #d8e3fd;
    font-size: 16px;
    letter-spacing: -0.14px;
    display: flex;
    margin: 15px 0;
}
#threedd{
    width: 1000px;
    height: 600px;
    left: 250px;
    bottom: 100px;
}

/* === Mobil Uyumlu Ayarlar === */
@media screen and (max-width: 768px) {
    /* Genel ayarlar */
    main.mainPhantom {
      min-height: auto;
      padding: 20px;
    }
  
    .phantomclass {
      width: 90% !important;
      left: 0;
      top: 50px;
      margin: 100px auto;
    }
  
    .phantomImg .text {
      font-size: 80px;
      top: 20%;
    }
  
    .phantomicon {
      width: 200px;
      margin: 0 auto;
    }
  
    .phantombilgi .sTitle {
      font-size: 24px;
      left: 0;
      bottom: 20px;
      text-align: center;
      width: 100%;
      margin: 0 auto;
    }
  
    .phaP {
      width: 90%;
      margin: 20px auto;
      font-size: 14px;
    }
  
    /* Kart ve container ayarları */
    .wrappercard {
      height: auto;
      padding: 20px 0;
    }
  
    .container {
      height: auto;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .card {
      width: 60px;
      margin: 5px;
    }
  
    .card > .row > .description {
      width: 100%;
      height: auto;
      padding: 15px;
    }
  
    input:checked + label {
      width: 90%;
    }
  
    /* Diğer metin ve görsel ayarları */
    .techDrawTextPh h3 {
      font-size: 28px;
      top: 40px;
      margin-left: 0;
      text-align: center;
    }
  
    .techDrawPh {
      margin: 50px 0;
      padding: 0 15px;
      justify-content: center;
    }
  
    .cards {
      width: 90%;
      aspect-ratio: auto;
    }
  
    /* Teknik ve donanım kartları */
    .phantomTeknik,
    .phantomDonanim {
      width: 100%;
      padding-right: 10px;
      padding-left: 10px;
    }
  }
  
  @media screen and (max-width: 550px) {
    .phantomImg .text {
      font-size: 60px;
    }
  
    .phantomicon {
      display: none;
    }
  
    .phantombilgi .sTitle {
      font-size: 20px;
      padding-left: 60px;
    }

    .phantomImg .text::before{
        display: none;
    }
  
    .phaP {
      font-size: 13px;
    }
  
    .card {
      width: 50px;
    }
  
    .techDrawTextPh h3 {
      font-size: 24px;
    }
  
    .cards {
      width: 100%;
    }

    p {
        text-align: center; /* Paragraf içindeki metni merkezler */
        margin: 0 auto;
        padding-left: 40px;     /* Eğer p genişlik belirlenmişse, blok olarak ortalar */
    }

    .phantomImg .planeDots .tooltipDot{
        display: none;
    }
   
  }
  


