@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/high-spirited');

html,
body {
    height: auto;
    overflow-x: hidden;
}

.map-container {
    width: 100%;
    height: 600px;
    /* Bilgisayarda istediğin yükseklik */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif !important;
    background-color: #0a0a0a !important;
}


nav.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    height: 5.5rem;
    transition: transform 0.3s ease;
}

.navbar img:hover {
    transform: scale(1.05);
}

.custom-toggler {
    position: relative;
    width: 35px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.custom-toggler:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.custom-toggler .bar {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #ffffff, #d9d9d9);
    border-radius: 2px;
    transition: all 0.4s ease;
    box-shadow:
        0 0 6px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.custom-toggler.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
    box-shadow: 0 0 15px #fff, 0 0 30px #ff3c78;
}

.custom-toggler.active .bar:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
    box-shadow: 0 0 15px #fff, 0 0 30px #ff3c78;
}

.custom-menu {
    position: fixed;
    top: 0;
    left: 0;
    /* soldan başlasın */
    width: 100vw;
    height: 100vh;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(6px);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    z-index: 2000;
}

.custom-menu.active {
    transform: translateX(0);
}

.custom-menu .nav-link {
    color: #fff;
    font-size: 1.5rem !important;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;

}

.custom-menu .nav-link:hover {
    color: #fff;
    text-shadow:
        0 0 10px #ff3c78,
        0 0 20px #ff3c78,
        0 0 40px #ff3c78,
        0 0 80px #ff3c78,
        0 0 120px #ff3c78;
}


@media (max-width: 991px) {
    .custom-menu .nav-link {
        font-size: 1.2rem !important;
    }
}

.mt-6 {
    margin-top: 6rem !important;
}

.mt-7 {
    margin-top: 7rem !important;
}

.mt-8 {
    margin-top: 8rem !important;
}

.pb-6 {
    padding-bottom: 6rem;
}

.pb-7 {
    padding-bottom: 7rem;
}


.pb-8 {
    padding-bottom: 8rem;
}

.pb-9 {
    padding-bottom: 9rem;
}

.pb-10 {
    padding-bottom: 10rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-7 {
    padding-top: 7rem;
}

.pt-8 {
    padding-top: 8rem;
}

.pt-10 {
    padding-top: 10rem;
}

.pt-12 {
    padding-top: 12rem;
}

.hero-text {
    font-weight: 700;
    background: linear-gradient(90deg, #bcbcbc, #8a8a8a, #5e5e5e, #bcbcbc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: metalShift 8s ease-in-out infinite, metalGlow 3s ease-in-out infinite alternate, fadeIn 2s ease forwards;
    text-shadow:
        0 0 8px rgba(200, 200, 200, 0.25),
        0 0 15px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.neon-icon {
    width: 85px;
    height: 85px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #ffffff);
    transition: all 0.3s ease;
}

.service-box:hover .neon-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #ffffff) drop-shadow(0 0 30px #ffffff) drop-shadow(0 0 45px #ffffff);
}

.icon-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 8px 0 4px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: "Montserrat", sans-serif;
}

.icon-desc {
    font-size: 0.9rem !important;
    color: #ccc !important;
    line-height: 1.3 !important;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2) !important;
    display: block !important;
    max-width: 100% !important;
    /* sütunu doldur */
    text-align: center !important;
    margin: 0 auto !important;
}

.service-box:hover .icon-text {
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78, 0 0 20px #ff3c78;
}

@media (max-width: 768px) {
    .neon-icon {
        width: 70px;
        height: 70px;
    }

    .icon-text {
        font-size: 1rem;
    }

    .icon-desc {
        font-size: 0.85rem;
    }
}

.hero-text-sub {
    color: #f5f5f5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeIn 2s ease forwards;
}

#markaSlogan {
    animation: fadeIn 2s ease forwards !important;
}

.full-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#fullBgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.full-video-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    text-align: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-video-wrapper .overlay {
    background: rgba(0, 0, 0, 0.2);
    /* Daha az koyu */
    backdrop-filter: none;
    /* Eğer blur varsa kaldır */
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.8) contrast(1.4) saturate(1.3);
}

.overlay {
    position: relative;
    z-index: 1;
    background: rgba(3, 9, 22, 0.11);
    min-height: 100vh;
    backdrop-filter: blur(2px);
}

.desktop-carousel .photo-wrapper img {
    max-width: 400px;
    /* istediğin genişlik */
    max-height: 400px;
    /* istediğin yükseklik */
    width: auto;
    height: auto;
    object-fit: cover;
    /* kırpma yerine sığdır */
    display: inline-block;
    margin: 0 5px;
    /* aralıklı görünüm */
}

.desktop-carousel {
    position: relative;
    display: none;
}

@media (min-width: 992px) {
    .desktop-carousel {
        display: block;
    }
}

.photo-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.photo-wrapper img {
    flex: 0 0 auto;
    width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.photo-wrapper img {
    scroll-snap-align: start;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    z-index: 10;
}

.scroll-btn.prev {
    left: 10px;
}

.scroll-btn.next {
    right: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #ffffff);
    transition: all 0.3s ease-in-out;
}

.neon-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #ffffff) drop-shadow(0 0 30px #ffffff) drop-shadow(0 0 45px #ffffff);
}

.icon-text {
    color: #f5f5f5;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
    .neon-icon {
        width: 65px;
        height: 65px;
    }

    .icon-text {
        font-size: 0.9rem;
    }
}

.hero-text .light-sweep {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: sweep 4s infinite ease-in-out;
}

@keyframes sweep {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator span {
    position: relative;
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.8s infinite;
}

.team-section {
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.mini-title {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 2px;
}

.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
}

.neon-scroll-wrapper {
    position: relative;
}

.neon-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.neon-scroll::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 250px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 2px solid #00ffff;
}

.team-card h4 {
    margin-top: 12px;
    font-weight: 600;
    color: #00ffff;
}

.team-card p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: #00ffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.scroll-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px #00ffff;
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

.neon-scroll-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: neonFlow 2s linear infinite;
}

@keyframes neonFlow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}


.hero-text {
    font-size: 6rem;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 12px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 24px);
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem;
    }

    .navbar img {
        height: 4rem;
    }

    .hero-text-sub {
        font-size: 1rem !important;
        margin: 0 1rem;
    }

    .hero-section {
        margin-top: 10rem !important;
        padding: 0 1rem;
    }

    .scroll-indicator {
        margin-top: 2.5rem;
    }

    .custom-menu {
        width: 100%;
        background: rgba(5, 5, 5, 0.85);
    }

}

@media (max-width: 600px) {
    .hero-section {
        margin-top: 7rem !important;
        padding: 0 1rem;
    }

    .hero-text-sub {
        font-size: 0.95rem !important;
    }

    .mt-8 {
        margin-top: 4rem;
    }

    /* .pb-8{
        margin-bottom:8rem !important;
    } */

    .scroll-indicator {
        margin-top: 1.5rem;
    }

    .hero-text {
        font-size: 2.2rem !important;
    }
}

.nav-item.dropdown {
    position: relative;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 4000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 3000;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 60, 120, 0.2);
}

.nav-item.dropdown:hover .custom-dropdown {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.custom-dropdown .dropdown-item {
    color: #000;
    font-size: 1rem;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78, 0 0 20px #ff3c78;
}

.contactBtn {
    background-color: white !important;
    color: black !important;
}

@media (max-width: 991px) {
    .nav-item.dropdown {
        width: 100%;
    }

    .custom-dropdown {
        position: relative;
        background: rgba(10, 10, 10, 0.9);
        box-shadow: none;
        border: none;
        width: 100%;
        padding: 0;
    }

    .custom-dropdown .dropdown-item {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item.dropdown:hover .custom-dropdown {
        display: none;
    }
}

.site-footer {
    background-color: #0a0a0a;
    color: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    margin: 10px 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer-center h5,
.footer-right h5 {
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 8px;
}

.footer-center ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-center ul li a:hover {
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78;
}

.footer-right p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-right p:first-of-type {
    color: #ffffff;
    /* Adres neon renk efekti */
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: #ff3c78;
    text-shadow: 0 0 10px #ff3c78, 0 0 20px #ff3c78;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin: 15px 0;
    }

    .footer-right p,
    .footer-right a {
        display: block;
        margin: 5px 0;
    }
}