@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500&family=Montserrat:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Montserrat', sans-serif;
    text-decoration: none !important;
    font-weight: 300;
}

/* Font Awesome — * { font-weight: 300 } solid ikonları bozar (kutu/çarpı) */
.fa-solid,
.fas,
i.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-style: normal;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal;
}

/* Menü kapat — yalnızca mobil menü açıkken (masaüstünde sağ üstte × görünmesin) */
.nav-menu-close {
    display: none !important;
}

@media (max-width: 991px) {
    body.nav-menu-open .nav-menu-close {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .nav-menu-close-bar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body:not(.light-mode) {
    background-color: #0a0a0a;
}
.containers {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
    display: block;
    max-width: 100vw;
    min-height: 0;
    height: auto;
    overflow: visible;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

/* Ana sayfa tuvali — yalnızca masaüstü (mobil: mobile-home.css + responsive.css) */
@media (min-width: 992px) {
    .containers:has(.hero-slider) {
        min-height: 500vh;
    }
}

/* Hex arka plan: viewport'a sabit, fare ışığı grid ile blend eder */
.containers .hex-grid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.containers .header {
    position: relative;
    z-index: 25;
}

.containers .top-nav {
    z-index: 35;
}

@media (max-width: 991px) {
    .containers .top-nav {
        z-index: 1400;
    }

    body.nav-menu-open .containers .top-nav,
    body:has(#menu-toggle:checked) .containers .top-nav {
        z-index: 1500;
    }

    .menu-button-container {
        display: flex !important;
        margin-top: 0 !important;
    }

    /* Sol çekmece masaüstü hover genişlemesi mobilde kapalıyken uygulanmasın */
    .side-nav:not(.is-open) {
        width: min(300px, 88vw) !important;
        transform: translate3d(-105%, 0, 0) !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .side-nav:not(.is-open):hover {
        width: min(300px, 88vw) !important;
        transform: translate3d(-105%, 0, 0) !important;
    }

    /* z-index / tıklama: mobile-nav-stack.css */
}


.containerlog {
    
    background: #000;
   padding: 10px 100px ;
   margin-left: 20px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}



/* Altıgen grid + fare parıltısı: hex-grid.css */

   
    /* Other adjustments for tablet view */



    
        







.top-nav {
    border-radius: 14px;
    display: flex;
    position: fixed;
    left: 108px;
    right: 12px;
    top: 0;
    width: auto;
    max-width: calc(100vw - 120px);
    backdrop-filter: blur(5px);
    z-index: 35;
    height: 48px;
    padding: 4px 8px 4px 12px;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    background: transparent;
    color: #fff;
    box-sizing: border-box;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.45s ease;
}

.top-nav .menu {
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}
 /* body.light-mode .top-nav a{
    color: #000;
    font-weight: 700;
} */
.top-nav a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s, font-weight 0.3s;
    margin: 0 0px; /* Adjusted for spacing */
}

.top-nav a:hover {
    color: #01B1AF;
    transform: scale(1.01);
    border-radius: 8px;
    font-weight: bold;
}

.menu {
    z-index: 50;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    margin-top: 50px;
    display: none;
    height: 48px;
    width: 48px; /* Adjusted for hamburger button size */
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensure relative positioning for the hamburger button */
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: transparent; /* Set background to transparent */
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    background-color: #ffffffd8; /* Color for the lines */
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

/* Mobil/tablet menü: mobile.css + mobile-nav-stack.css (eski 700px kuralları kaldırıldı) */

/* Sol menü — koyu saydam cam / glass */
.side-nav {
    --side-nav-accent: #01b1af;
    --side-nav-accent-soft: rgba(1, 177, 175, 0.32);
    --side-nav-text: #eef2f6;
    width: 100px;
    height: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    padding: 14px 8px 20px;
    margin-left: 0;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.03) 38%,
            rgba(1, 177, 175, 0.06) 100%
        ),
        linear-gradient(
            180deg,
            rgba(52, 58, 68, 0.34) 0%,
            rgba(36, 42, 52, 0.38) 45%,
            rgba(26, 32, 42, 0.42) 100%
        );
    backdrop-filter: blur(36px) saturate(1.65) brightness(1.05);
    -webkit-backdrop-filter: blur(36px) saturate(1.65) brightness(1.05);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        10px 0 36px rgba(0, 0, 0, 0.26),
        0 0 48px rgba(1, 177, 175, 0.1);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease, background 0.45s ease;
    z-index: 40;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: normal;
    font-size: 13px;
}

@media (min-width: 992px) {
    .side-nav {
        overflow-x: visible !important;
        overflow-y: auto !important;
    }

    .side-nav:has(.dropdown:hover),
    .side-nav:has(.dropdown.is-flyout-open) {
        overflow-x: visible !important;
        overflow-y: auto !important;
        z-index: 200;
    }
}

.side-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.03) 32%,
        transparent 54%
    );
    pointer-events: none;
    z-index: 0;
}

.side-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--side-nav-accent-soft) 35%,
        var(--side-nav-accent) 50%,
        var(--side-nav-accent-soft) 65%,
        transparent 100%
    );
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 18px var(--side-nav-accent-soft);
}

.side-nav > * {
    position: relative;
    z-index: 2;
}


/* Mobil sidebar: mobile.css + responsive.css (eski ul li p kuralları kaldırıldı) */

.user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 12px;
    padding: 8px 4px 10px;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    background: none;
}

/* Sidebar marka alanı — kare kutu / kırpma yok (sidebar-brand.css ile uyumlu) */
.side-nav > .user {
    width: 100%;
    border-radius: 0;
    overflow: visible;
    padding: 8px 4px 10px;
}

.user div {
    display: none;
    position: absolute;
}

.user h1 {
    font-size: 25px;
    font-weight: 700;
    white-space: nowrap;
    margin: auto;
    display: flex;
    position: relative;
    left: 50px;
}

.user-img {
    width: auto;
    max-width: 64px;
    max-height: 46px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    margin: auto;
    display: block;
    position: relative;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav ul {
    top: 360px;
    font-size: calc(0.4vw + 1px);
    list-style: none;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    position: static;
    padding: 0 15px;
    display: flex;
    line-height: 1;
}

.side-nav ul li{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}


.side-nav ul:hover {
    color: #000;
    transform: scale(1.001);
}

.side-nav li {
    margin-top: 0;
    margin: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    line-height: 0;
    left: 0;
    border-radius: 12px;
}

.side-nav:hover ul li {
    border-radius: 12px;
}

.side-nav:hover ul li:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(1, 177, 175, 0.14) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateX(4px);
}

.side-nav .dropdown-content {
    background: linear-gradient(
        160deg,
        rgba(44, 50, 60, 0.72) 0%,
        rgba(28, 34, 44, 0.78) 100%
    );
    backdrop-filter: blur(24px) saturate(1.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 12px 32px rgba(0, 0, 0, 0.32);
}

.side-nav .dropdown-content a {
    color: rgba(255, 255, 255, 0.92);
}

.side-nav .dropdown-content a:hover {
    background: rgba(1, 177, 175, 0.25);
    color: #fff;
}

.side-nav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

ul li p {
    white-space: nowrap;
    display: none;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s, font-weight 0.3s;
    top: 200px;
    font-weight: 100;
    font-size: 16px;
    position: absolute;
    transform: translateY(-15px);
}

ul li p:hover {
    color: #01B1AF;
    font-weight: bold;
    transform: translateY(-15px);
}

.side-nav:hover,
.side-nav.is-flyout-active {
    width: 350px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.05) 38%,
            rgba(1, 177, 175, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(56, 62, 72, 0.4) 0%,
            rgba(40, 46, 56, 0.44) 45%,
            rgba(30, 36, 46, 0.48) 100%
        );
    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        16px 0 44px rgba(0, 0, 0, 0.3),
        0 0 64px rgba(1, 177, 175, 0.14);
}

.side-nav:hover .user div,
.side-nav.is-flyout-active .user div {
    display: flex;
    position: relative;
}

.side-nav:hover .user,
.side-nav.is-flyout-active .user {
    width: 100%;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 4px 10px;
}

.side-nav:hover .user-img,
.side-nav.is-flyout-active .user-img {
    margin: auto;
}

.side-nav:hover ul li p,
.side-nav.is-flyout-active ul li p {
    display: block;
    text-decoration: none;
    margin-top: 200px;
    margin: 0;
}

.side-nav:hover ul li img,
.side-nav.is-flyout-active ul li img {
    margin-right: 0;
}

.side-nav:hover ul li,
.side-nav.is-flyout-active ul li {
    justify-content: center;
}






.desc{
   
    top: 100px;
    left: 100px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    z-index: 10;
    box-shadow: 0.5px 0.5px 1.5px 0.5px #01B1AF;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    justify-content: space-between;
    display: flex;
    margin: auto;
    position: absolute;
    

    

}
 .desc p {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin: 15px;
    justify-content: space-between;
    padding: 10px 20px 10px 40px;
    
}

 .desc h1 {
    top: 20px;
    color:#01B1AF;
    font-size: 28px;
    text-decoration: none;
    margin:auto ;
    justify-content: space-between;
    padding: 10px 20px 10px 40px;

    
}

.desc img {
    padding: 40px 40px 40px 40px;
    max-height: 100vh;
}




.middle h1 {
    font-size: 36px;
    text-align: center;
}

.middle .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    background: transparent;
    margin: 30px 0;
}
.input-box3 input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.middle p {
    text-align: center;
    color: #FFF;
    font-weight: 100;
}

.input-box3 input  {
    width: 150px;
    height: 150px;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}



.desc .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-image: none;

    gap: 50px; /* Adjust the space between products */
}

.desc .product {
    flex: 0 1 calc(33.333% - 20px); /* Three products per row - 20px for gap */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 16px;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product {
        flex: 0 1 calc(50% - 20px); /* Two products per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .product {
        flex: 0 1 100%; /* One product per row on very small screens */
    }
}


/* CSS */
.button-63 {
  align-items: center;
  background-image: linear-gradient(144deg, #02618d , #01B1AF 50%,#01c3d1);
  border-radius: 50px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 300;
  justify-content: center;
  line-height: 1.5em;
  max-width: 100%;
  min-width: 50px;

  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-63:active,
.button-63:hover {
  outline: 0;
  
}

@media (min-width: 768px) {
  .button-63 {
    font-size: 24px;
    min-width: 196px;
  }
}

.video


.test {
    top: 0px;
    left: 0px;
    position: absolute;
    width: 1000px;
    z-index: 0;
    height: 800px;
    margin: auto;
    
}

.testiki h {
    top: 50px;
    font-size: 60px;
    z-index: 15;
    padding: 20px 20px 20px 20px;
    color:#fff;
}


.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-name {
    padding: 10px;
    margin: 0;
    background: #007bff;
    color: #fff;
    text-align: center;
}

.product-description {
    padding: 0 10px;
    color: #333;
}

.quote-btn {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px;
    border: none;
    background: #28a745;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.quote-btn:hover {
    background: #218838;
}

/* Responsive styling */
@media (max-width: 600px) {
    .products-container {
        flex-direction: column;
        align-items: center;
    }
}





  .landing {
    background: rgba(255, 255, 255, .1);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    position: absolute;
    backdrop-filter: blur(5px);
    z-index: 5;
    box-shadow: 2px 2px 2px 2px #01B1AF;
    padding: 1px 1px;
    top: 40px;
    left: 180px;
    width:1250px; 
    height: 600px; 
    border-radius: 10px; 
    box-shadow: 2px 2px 2px 2px #01B1AF ;
    
  }

  





.landing-page2 {
    position: absolute;
    top: 200px;
    right: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    z-index: 10;
    color: #fff;
    text-decoration: none;
    justify-content: space-between;
    max-height: 100px;
    display: flex;
    margin: auto;
}


.landing-page2 h1 {
    font-size: 40px;
    font-weight: 700;
}

.landing-page2 p {
    font-size: 20px;
    font-weight: 700;
    left: 30px;
}


.pricing {
    position: absolute;
    top: 120px;
    left: 500px;
    min-height: 70vh;
    display: flex;
    justify-content: center;
  
}

.table * {
    box-sizing: border-box;
}

.table {
    padding: 1em;
    margin: 2em;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 16em;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    perspective: 1000px

}
.card {
    width: 300px;
    height: 250px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    perspective: 1000px; /* For 3D effect */
}

.table .price {
    display: flex;
    justify-content: center;
}

.table h1 {
    font-size: 5em;
    margin: 0.2em 0 0 0;
}

.table h1 sup {
    font-size: 0.5em;
    font-weight: 400;
    margin-right: -0.2em;
}

.table h1 span {
    font-size: 0.2em;
    font-weight: 400;
    margin-left: -1em;
}

.table h4 {
    font-weight: 400;
    color: #ccc
}

.table ul {
    margin: 1em 0 0 0;
    padding: 0%;
    list-style: none;
}

.table ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

.table ul li:not(:last-child) {
    border-bottom: 2px #ccc solid;
}

.table li > div:nth-child(1) {
    text-align: left;
}

.table .material-icons-outlined {
    cursor: pointer;
}

.table a {
    display: inline-block;
    margin: 1em 0;
    color: #fff;
    text-decoration: none;
}

.table a:hover {
    color: #01B1AF

}

.table button {
    margin: 1em auto 0.5em auto;
    border: none;
    display: flex;
    border-radius: 2em;
    padding: 0.5em 1.5em;
    background: linear-gradient( #01B1AF, #025050);
    color: #fff;
    font-weight: 1000;
    align-items: center;
    justify-content: space-between;
    
    cursor: pointer;
}

.table button:hover {
    color:black;
}
@media (max-width: 768px) {
    .table h1 {
        font-size: 2em; /* Even smaller font size for tablets and smaller devices */
    }

    .pricing {
        position: relative; /* Adjust for smaller screens */
        top: initial;
        left: initial;
        transform: none;
        
    }
}

@media (max-width: 480px) {
    .table h1 {
        font-size: 1.5em; /* Smaller font for mobile devices */
    }
}
.containerl {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    position: relative;
    top: auto;
    gap: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 6;
}
/* General Flexbox Container */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Footer Styling */
.footer {
    position: relative;
    background: #000;
    border: 1px solid #363838;
    padding: 70px 0;
    width: 100%;
    margin-bottom: 0;
}

/* Footer Column Titles */
.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 200;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #01B1AF;
    height: 2px;
    box-sizing: border-box;
    width: 150px;
}

/* Footer Lists */
.footer ul {
    display: flex;
    list-style: none;
    text-align: left;
    justify-content: left;
    flex-direction: column;
    margin-bottom: 0;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 16px;

    text-decoration: none;
    font-weight: 600;
    color: #bbb;
    display: block;
    transition: all 0.3s ease;
    text-align: left;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Social Links */
.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}

/* Footer Columns */
.footer-col {
    width: 100%;
    padding: 0 15px;
    flex-direction: column;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-col {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .footer-col {
        width: 25%;
        padding: 0 16px 24px;
    }
}

/* Footer End Section */
.footers {
    color: #000000;
    text-align: center;
    font-weight: 700;
    max-height: 20px;
    margin-bottom: 0;
}

.footers p {
    background-color: #000;
    color: white;
    justify-content: center;
    align-items: center;
}

/* Responsive Iframe Container */
.iframe-container {
    position: relative;
    width: 100%;
    height: 180px;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Adjustments for Mobile */
@media (max-width: 767px) {
    .footer:not(.site-footer) {
        padding: 48px 0;
    }

    .footers {
        padding-top: 0;
    }
}



.middle3 {
  
    
    background-size: cover;  /* Cover the entire area of the div */
    background-position: center;  /* Center the background image */
    background-repeat: no-repeat;  /* Do not repeat the image */
    position: absolute;
    width: 24.5vw; /* Adjusted for responsiveness */
    height: 15.5vw;  /* Adjusted based on aspect ratio you might want */
    box-sizing: border-box;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    font-size: 1rem; /* Adjusted for responsiveness */
    color: #fff;
    padding: 0px;
    overflow: hidden;
    top: 115vh; /* Adjusted for responsiveness */
    left: 68%; /* Adjusted for responsiveness */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    transition: all 0.5s ease; /* Smooth transition for resizing */
}


@media (max-width: 768px) {
    .middle3 {
        position: absolute;
        width: 100%; /* Adjust based on your design needs */
        max-width: 103vw; /* Ensures it doesn't get too large on wider screens */
        height: 50vw; /* Adjust height automatically or use a specific ratio */
        font-size: calc(16px + 1vw); /* Start with a base size and increase based on viewport width */
        color: white;
        top: 121.9%;
        left: 0%;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        display: flex;
        padding: 1vh;

        border: none;
        align-items: center; /* Ensure vertical centering */
        
    }
    .middle3 h3 {
        width:100%;
        top: 30vw;
        left: 10vw;
    }
    .middle h6 {
        padding: 2px;
        font-size: calc(25px + 1vw); /* Responsive font size */
    }
    .middle p {
        padding: 2px;
        font-size: calc(5px + 1vw); /* Responsive font size */
    }
    .middle {
        width:200%;
        top: 30vw;
        left: 0vw;
    }
    .middle h1 {
        padding: 2px;
        font-size: calc(25px + 1vw); /* Responsive font size */
    }
    .middle p {
        padding: 2px;
        font-size: calc(5px + 1vw); /* Responsive font size */
    }


}
.middle {
   
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 2vw; /* Adjusted for responsiveness */
    font-size: calc(10px + 1vw); /* Responsive font size */
}

.middle h1 {
    padding: 2px;
    font-size: calc(25px + 1vw); /* Responsive font size */
}
.middle p {
    padding: 2px;
    font-size: calc(5px + 1vw); /* Responsive font size */
}


.counter {
    
    width: auto;
    padding: 2vw;
    font-size: 4vh;
    text-align: center;
    justify-content: center;
    z-index: 50;
  
}


.countainer {
    position: relative;
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0em;
    font-weight: 600;
    position: relative;
    border-radius: 0.5em;

}

span.num {
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}

.countainer span.text {
    color: #e0e0e0;
    font-size: 2em;
    text-align: center;
    padding: 0em 0;
    font-weight: 600;
    line-height: 0;
}

.middle4 {

    position: absolute;
    width: 24.5vw; /* Adjusted for responsiveness */
    height: 15.5vw; /* Adjusted based on aspect ratio you might want */
    box-sizing: border-box;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    font-size: 1rem; /* Adjusted for responsiveness */
    color: #fff;
    padding: 20px;
    overflow: hidden;
    top: 115vh; /* Adjusted for responsiveness */
    left: 38%; /* Adjusted for responsiveness */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    transition: all 0.5s ease;/* Smooth transition for resizing */
    
    
   
}

@media (max-width:768px) {

    .middle4 {
        position: absolute;
        width: 100%; /* Adjust based on your design needs */
        max-width: 102vw; /* Ensures it doesn't get too large on wider screens */
        height: 50vw; /* Adjust height automatically or use a specific ratio */
        font-size: calc(16px + 1vw); /* Start with a base size and increase based on viewport width */
        color: white;
        top: 90%;
        left: 0;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        display: flex;
        padding: 1vh;
        border: none;
        align-items: center; /* Ensure vertical centering */
       
    }
 

    

}
.middle5 {
    position: absolute;
    width: 24.5vw; /* Adjusted for responsiveness */
    height: 15.5vw; /* Adjusted based on aspect ratio you might want */
    box-sizing: border-box;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    font-size: 1rem; /* Adjusted for responsiveness */
    color: #fff;
    padding: 20px;
    overflow: hidden;
    top: 115vh; /* Adjusted for responsiveness */
    left: 8%; /* Adjusted for responsiveness */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    transition: all 0.5s ease; /* Smooth transition for resizing */
    z-index: 0;
}

.middle5 img {
    width: 64.5vw; /* Adjusted for responsiveness */
    height: 19.5vw; /* Adjusted based on aspect ratio you might want */
    box-sizing: border-box;
    z-index: 10;
    background-size: cover;
}

.middle6s {
    position: absolute;
    display: none;
    height: 100%;
    width:100%;
    max-width: 30vh;
    min-height: 10vh;
    top: 425.7vh;
    left: 65vh;
    align-items: center;
    justify-content: center;
}



@media (max-width: 768px) {
    .middle5 {
        position: absolute;
        width: 100%; /* Adjust based on your design needs */
        max-width: 104vw; /* Ensures it doesn't get too large on wider screens */
        height: 50vw; /* Adjust height automatically or use a specific ratio */
        font-size: calc(16px + 1vw); /* Start with a base size and increase based on viewport width */
        color: white;
        top: 58.8%;
        left: 0;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        display: flex;
        padding: 1vh;
        align-items: center; /* Ensure vertical centering */
        border: none;
    }    .counter {
    
        width: auto;
        padding: 2vw;
        font-size: 2vh;
        text-align: center;
        justify-content: center;
      
    }
    .middle6 {
        top: 700vh;
        width: 60%;
        left: 90px;
    }
}
.middle7 {
    position: absolute;
    display: none;
    max-width: 100vw; /* Adjusted for responsiveness */
    width: 100%;
    height: 35vw; /* Adjusted based on aspect ratio you might want */
    background: transparent;
    box-sizing: border-box;
    outline: none;
    border-radius: 20px;
    font-size: 1rem; /* Adjusted for responsiveness */
    color: #fff;
    padding: 20px;
    overflow: hidden;
    top: 87.5%; /* Adjusted for responsiveness */
    left: 0;
    
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease; /* Smooth transition for resizing */
}

.middle7 video {
    width: 100%; /* Full width of the container */
    height: auto; /* Height is automatic to maintain aspect ratio */
    max-height: 100%; /* Ensure the video is not taller than the container */
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, .2); /* Match the container's border radius */
    object-fit: cover; /* Cover the container fully while maintaining aspect ratio */
}

@media (max-width: 1200px) {
    .middle7 {
        width: 100%;
        height: 40vw;
        top: 80%;
        padding: 15px;
        font-size: 0.9rem;
        border-radius: 15px;
    }
    .middle7 video {
        border-radius: 10px;
    }
}

@media (max-width: 992px) {
    .middle7 {
        width: 100%;
        height: 45vw;
        top: 85%;
        padding: 15px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    .middle7 video {
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .middle7 {
        width: 100%;
        height: 50vw;
        top: 35%;
        padding: 10px;
        font-size: 0.8rem;
        border-radius: 5px;
    }
    .middle7 video {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .middle7 {
        width: 100%;
        height: 60vw;
        top: 37%;
        padding: 10px;
        font-size: 0.7rem;
        border-radius: 0;
    }
    .middle7 video {
        border-radius: 0;
    }
}

@media (max-width: 400px) {
    .middle7 {
        width: 100%;
        height: 70vw;
        top: 35%;
        padding: 5px;
        font-size: 0.6rem;
        border-radius: 0;
    }
    .middle7 video {
        border-radius: 0;
    }
}

/* Extra-extra large devices (larger desktops) */
/* No need for specific styles if max-width is not exceeded, but you can add if needed. */




.middle8 {
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute;
    height: auto;
    min-height: 0;
    width: auto;
    max-width: calc(100vw - 120px);
    top: 160vh;
    right: 10vw;
    left: auto;
    box-shadow: none;
    color: rgba(255, 255, 255, .7);
    border-radius: 0;
    text-align: center;
    background: transparent;
    padding: 0 20px;
    font-size: 4vw;
    font-weight: 100;
    margin: 0;
    pointer-events: none;
}

.middle8 h2 {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 0;
    color: #fff;
    font-size: 5rem;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 7px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .middle8 {
        max-width: 92vw;
        top: 200vh;
        right: 5vw;
        font-size: 4.5vw;
    }
}

@media (max-width: 992px) {
    .middle8 {
        max-width: 95vw;
        top: 230vh;
        right: 2.5vw;
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    .middle8 {
        max-width: 95vw;
        top: 200vh;
        right: 2.5vw;
        font-size: 3.5vw;
    }
    .middle8 h2 {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .middle8 {
        max-width: 100%;
        width: 100%;
        top: 156vh;
        right: 0;
        left: 0;
        font-size: 10vw;
        font-weight: 700;
    }
    .middle8 h2 {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .middle8 {
        max-width: 100%;
        top: 150vh;
        left: 0;
        right: 0;
        font-size: 10.5vw;
    }
    .middle8 h2 {
        font-size: 1.5rem;
    }
}

.middle9 {
    position: absolute;
    height: 100%;
    width: 59%; /* Use percentage for responsiveness */
    top: 120px;
    right: 0%; /* Adjusted for responsiveness */
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: rgba(255, 255, 255, .7);
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    background-size: cover;
    padding: 0;
    font-size: 25px;
    font-weight: 100;
    margin: auto;
    transition: all 0.3s ease; /* Smooth transition for resizing */
}

.middle9 img {
    /* Adjust height automatically */
    width: 100%; /* Make image width responsive */
    height: 35vh;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, .2);
}

/* Adjustments for tablets */
@media (max-width: 768px) {
    .middle9 {
        height: auto;
        width: 95%; /* Slightly wider on smaller screens */
        right: 2.5%; /* Adjust right position */
        font-size: 20px; /* Smaller font size */
    }
}

/* Adjustments for smartphones */
@media (max-width: 480px) {
    .middle9 {
        position: relative; /* Change positioning for small screens */
        top: 100px;
        height: 20px; /* Adjust top position */
        right: 0;
        width: 100%; /* Full width */
        font-size: 16px; /* Even smaller font size */
        padding: 10px; /* Add some padding */
    }

    .middle9 img {
        width: 90%; /* Adjust image width */
        height: 200px;
        margin: auto; /* Center the image */
    }
}








body, html {
    overflow: auto;
    margin: 0;
    padding: 0;
    height: 100%;
}

.sliderl {
    width: 1200px;
    height: 700px;
    margin:auto;
    position: relative;
    overflow: hidden;
    top: 150px;
    left: 150px;
}

.list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: max-content;
    transition: 1s;
}

.list img {
    width: 130px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;


}

.buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.buttons button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-weight: bold;
}

.dots {
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 20px;
    border-radius: 20px;
    transition: 1s;
}

.dots li.active {
    width: 30px;
}


.landing-slide {
    position: relative;
    top: 100px;
    right: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    z-index: 10;
    color: #fff;
    text-decoration: none;
    justify-content: space-between;
    max-height: 100vh;
    display: flex;
    margin: auto; 
}

/* Base Styles */

.landing-page {
    position: absolute;
    top: 150px;
    right: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    z-index: 10;
    color: #fff;
    text-decoration: none;
    justify-content: space-between;
    max-height: 100vh;
    display: flex;
    margin: auto;
   
  }
  
  .landing-page h1 {
    font-size: 40px;
    font-weight: 700;
  }
  
  .landing-page p {
    font-size: 20px;
    font-weight: 700;
    left: 30px;
  }
  
  .video {
    z-index: 0;
    display: flex;
    position: absolute;
    right: 0;
  }
  
  .wrapper4 {
    position: absolute;
    width: 40vh;
    height: 60vh;
    position: relative;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;

    display: flex;
  }
  
  .wrapper2 {
    position: static;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    display: flex;
  }
  

  
  /* For tablets and larger mobile devices */
  @media (max-width: 768px) {
    
    .landing-page {
        width: 90%;
        right: 5%;
        top: 100px;
    }
  
    .landing-page h1 {
        font-size: 32px;
    }
  
    .landing-page p {
        font-size: 18px;
    }
  
    .wrapper {
        padding: 20px 30px;
    }
  
    .wrapper h1 {
        font-size: 28px;
    }
  
    .input-box input {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
  
    /* Additional adjustments as needed */
  }
  
  /* For smaller mobile devices */
  @media (max-width: 480px) {
    .landing-page {
        top: 80px;
        right: 10px;
        left: 10px;
        width: auto;
    }
  
    .landing-page h1 {
        font-size: 24px;
    }
  
    .landing-page p {
        font-size: 16px;
    }
  
   
    .wrapper {
        padding: 15px 20px;
    }
  
    .wrapper h1 {
        font-size: 22px;
    }
  
    .input-box input {
        padding: 10px 30px 10px 10px;
    }
  
    /* Additional adjustments as needed */
  }
  
  
  
  
  .video-container {
      background: url(/media/Untitled2.mp4);
      position: relative;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      z-index: 0;
      
  }
  
  .landing-page2 {
      position: relative;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(1px);
      z-index: 10;
      color: #fff;
      text-decoration: none;
      justify-content: space-between;
      min-height: 100px;
      display: flex;
      margin: auto; 
      left: 0px;
      width: 200px;
      height: 400px;
      top: 0px;
  }
  
  
  /* Eski landing-page3 — partner-marquee dışında kullanılmıyor */
  .landing-page3:not(.partner-marquee) {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    right: 0;
    top: 180vh;
    height: 20vh;
    width: 100vw;
    z-index: 5;
    color: #000;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;
    padding: 0 20px;
}


  
  /*   background: linear-gradient(
        rgba(0, 0, 0, 0.40), 
        rgba(0, 0, 0, 0.40));
      border: 2px solid #000;
      margin: auto; */
  
      .landing-page-index {
        position: absolute;
        top: 15vh; /* relative to the viewport height */
       left: 50vh;
        height: auto; /* relative to the viewport width */
        background: rgba(255, 255, 255, 0.1);
        z-index: 0;
        color: #fff;
        text-decoration: none;
        justify-content: space-between;
        max-height: 100vh;
        max-width: 65vw; /* Prevents element from being too wide on large screens */
        display: flex;
        margin: auto;
    }
    .middle2 h1 {
      font-size: 3vw; /* Adjusts size based on viewport width */
  }
  
  .middle2 p {
      font-size: 1vw;
      font-weight: normal; /* Changed from 40px to 'normal' */
  }
  
  /* Example media query for smaller screens */
  @media (max-width: 600px) {
      .middle2 h1 {
          font-size: 15vw;
      }
      .middle2 p {
          font-size: 15vw;
      }
  }
  
    
    /* Example media query for smaller screens */
    @media (max-width: 768px) {
        .landing-page-index {
            top: 10vh;
            left: 5vw;
            width: 90%;
        }
    }
    
    @media (max-width: 480px) {
        .landing-page-index {
            top: 10vh;
            left: 4vw;
            width: 90%;
            height: auto;
        }
    }
  
  
  
  

 
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
  
  }
  
  .slider .slide-track {
    position: relative;
    animation: scroll 40s linear infinite;
    display: flex;
    flex-direction:row;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    max-width: calc(100px * 30);
  }
  
  .slider .slide {
    height: 100px;
    width: 250px;
  }
  
  
  body {
    align-items: center;
    justify-content: center;
  }
  @keyframes scroll {
    0%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(calc(-250px * 7));
    }
  }

  .slidings {
    position: relative;
    width: 100vw; /* Tam ekran genişlik */
    height: 100vh; /* Tam ekran yükseklik */
    background: transparent;
    box-sizing: border-box;
    outline: none;
    border-radius: 0px;
    font-size: 1rem;
    color: #fff;
    padding: 20px;
    overflow: hidden;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .slidings:not(.hero-slider--desktop) {
        width: 100vw;
        height: 35vh;
        padding: 10px;
        font-size: 0.9rem;
        background-size: contain;
        top: 15vh;
        position: absolute;
    }
}

.banner1, .banner2, .banner3, .banner4 {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.slidings img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-out 5s linear infinite;
}

@keyframes zoom-out {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.text-box {
    position: absolute;
    width: min(55%, 760px);
    top: 135px;
    left: max(8%, 24px);
    transform: none;
    color: #fff;
    animation: textup 12s linear infinite;
    display: block;
    margin-bottom: 10px;
}

.text-box h1 {
    font-weight: 700;
    font-size: calc(3vw + 20px);
    display: block;
}

.text-box p {
    font-size: calc(0.6vw + 10px); /* Responsive font size */
    line-height: normal;
    margin-top: 20px;
    font-weight: 300;
}

/* Dekoratif çizgi — başlığın hemen altında */
.text-box > span:empty {
    display: block;
    margin: 14px 0 0;
    background: #01B1AF;
    height: 3px;
    width: 100px;
    position: static;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-box {
        width: 80%; /* Increase width for smaller screens */
        top: 20px;/* Adjust position for smaller screens */
    }

    .text-box h1 {
        font-size: calc(4vw + 20px); /* Adjust font size for smaller screens */
    }

    .text-box p {
        font-size: calc(1vw + 8px); /* Adjust font size for smaller screens */
        margin-top: 40px;
    }
    .text-box > span:empty {
        margin-top: 20px;
    }
}


.banner1{
    animation: slide1 12s linear infinite;
}
.banner2{
    animation: slide2 12s linear infinite;
}
.banner3{
    animation: slide3 12s linear infinite;
}
.banner4{
    animation: slide4 12s linear infinite;
}

@keyframes slide1{
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden ;
    }
    100%{
        visibility: visible;
    }
}

@keyframes slide2{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden ;
    }
    100%{
        visibility: hidden;
    }
}

@keyframes slide3{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}

@keyframes slide4{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden ;
    }
    100%{
        visibility: visible;
    }
}

@keyframes textup {
    10%{
        transform: translateY(0px);

    }
    100%{
        transform: translateY(0px);

    }
}

.text-box1{
    animation-delay: 0s;
}
.text-box2{
    animation-delay: 3s;
}
.text-box3{
    animation-delay: 6s;
}
.text-box4{
    animation-delay: 9s;
}



.flex{
    display: flex;
    justify-content: center; /* Aligns items horizontally at the center */
    align-items: center; /* Aligns items vertically at the center */
    background: transparent; /* Transparent background */
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(3px);
        border: 1px solid rgba(255, 255, 255, 0.18);

        right: 0;
        top: 927px;
        height: 19vh;
        width: 210vh;
        z-index: 5;
        color: #000;
        text-decoration: none;
        justify-content: space-between;
        align-items: center;
        
    /* Add other styling as needed */
}

.flex-item {
    margin: 10px;
    padding: 20px;
    filter: blur(5px);
    background: linear-gradient(90deg, #01B1AF,  #0ABAB5 100%);
    background-color: rgb(4,52,83);
    background: linear-gradient(8deg, rgba(8,52,83,1) 0%, rgb(0, 230, 199) 41%, rgba(41,17,45,1) 100%);
    /* Add other styling as needed */
}
.service-wrapper {
    position: absolute;
    top: calc(180vh + 20vh + 56px);
    right: 0;
    left: 100px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 16px 20px 80px;
    background: transparent;
    box-sizing: border-box;
    z-index: 7;
    overflow: visible;
}

/* service-wrapper3 → cards3.css */

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Genişleme sağlandı */
    max-width: 1200px; /* Sayfa genişliğini sınırlamak için */
    margin: 0 auto; /* Ortalamak için */
}

.service h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.service h2 {
    color: white;
    font-size: 70px;
    text-align: center;
    margin: 10px 0;
}

.service .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Her satırda 3 kart */
    gap: 40px;
    width: 100%;
    max-width: 1200px; /* Kart alanının maksimum genişliği */
    padding: 0 20px;
    margin: 0 auto; /* Grid'i ortalamak için */
}

.service .cards.solutions-bento {
    max-width: min(1395px, 100%) !important;
    width: min(100%, calc(1260px + 45px)) !important;
}

.service .card {
    height: 345px;
    width: 100%; /* Grid sistemiyle genişlik ayarlandı */
    max-width: 350px;
    background: transparent;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3% 8%;
    border-radius: 8px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service .card:after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #fff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.service .card:hover:after {
    width: 225%;
    top: -100%;
}

.service .card i {
    color: #fff;
    margin: 30px 0 20px;
    font-size: 3.4rem;
}

.service .card h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

.service .card p {
    text-align: center;
    width: 100%;
    margin: 12px 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.service .card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: #01d1a4;
}

.service .card img {
    transition: filter 0.3s ease;
    margin: 30px 0 20px;
}

/* Ürün listesi — görsel alanı kart genişliğini doldurur */
.service-wrapper3 .card-product-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    line-height: 0;
    background: #fff;
}

.service-wrapper3 .card-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
}

.service .card:hover img {
    filter: grayscale(100%);
}

/* Çözümlerimiz kartları — eski kart stillerini geçersiz kıl */
.service .cards.solutions-bento > .card.solution-card,
.service .cards.solutions-bento > .card.solution-card:hover {
    height: auto !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: left !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    overflow: visible !important;
}

.service .cards.solutions-bento > .card.solution-card:hover img,
.service .cards.solutions-bento .solution-card__link img,
.service .cards.solutions-bento .solution-card__hero {
    filter: none !important;
    -webkit-filter: none !important;
    margin: 0 !important;
}

.service .cards.solutions-bento .solution-card__link img {
    display: none !important;
}

.service .card:hover i {
    color: #01d1a4;
}

/* Animasyon */
@keyframes anim {
    95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        left: 88%;
    }
}

.service h1:after {
    content: "";
    position: relative;
    top: 100%;
    left: 10%;
    height: 8px;
    width: 80%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
}

.service h1 span {
    position: absolute;
    top: 100%;
    left: 10%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #72e2ae;
    animation: anim 5s linear infinite;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .service .cards {
        grid-template-columns: repeat(2, 1fr); /* Orta ekranlarda 2 kart */
        gap: 30px;
    }
    .service h1 {
        font-size: 4rem;
    }
    .service h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .service .cards {
        grid-template-columns: 1fr; /* Küçük ekranlarda 1 kart */
        gap: 20px;
    }
    .service h1 {
        font-size: 3rem;
    }
    .service h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .service-wrapper, .service-wrapper3 {
        top: auto;
        padding: 10px;
        right: auto;
        left: auto;
    }
    .service h1 {
        font-size: 2.5rem;
    }
    .service h2 {
        font-size: 30px;
    }
    .service .cards {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .service-wrapper, .service-wrapper3 {
        top: auto;
        padding: 5px;
        right: auto;
        left: auto;
    }
    .service h1 {
        font-size: 2.2rem;
    }
    .service h2 {
        font-size: 25px;
    }
    .service .cards {
        gap: 10px;
    }
    .service .card h2 {
        font-size: 18px;
    }
    .service .card p {
        font-size: 14px;
    }
}


/* İstatistik kartları — arka plan karartma, metin okunurluğu */
.middle3,
.middle4,
.middle5 {
    isolation: isolate;
}

.middle3::before,
.middle4::before,
.middle5::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.58) 45%,
        rgba(0, 0, 0, 0.68) 100%
    );
    pointer-events: none;
}

.middle3 .counter,
.middle4 .counter,
.middle5 .counter {
    position: relative;
    z-index: 2;
}

.middle3 .counter h3,
.middle4 .counter h3,
.middle5 .counter h3,
.middle3 .counter h6,
.middle4 .counter h6,
.middle5 .counter h6 {
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.9),
        0 1px 4px rgba(0, 0, 0, 0.85);
}

  .counter-container {
    display: flex;
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 500px) {
    .counter-container {
      flex-direction: column;
      padding: 50px;
    }
  }
  
  .counter {
   
    flex-direction: column;
    text-align: center;

  }
  
  .counter h3 {
    font-size: 3.5rem;
    padding-top: 25px;
    font-weight: 800;
    justify-content: space-between;
  }

  .counter h6 {
    font-size: 2rem;
    padding-bottom: 4rem;
  }


html {
    scroll-behavior: smooth; /* Yumuşak geçiş etkisi */
  }




.box-element{
    box-shadow:hsl(0, 0%, 80%) 0 0 16px;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
}

.thumbnail {
    width: 100%;
    height: 200px;
    -webkit-box-shadow: -1px -3px 5px -200px;
    -moz-box-shadow: -1px -3px 5px -2px rgba(210, 210, 210, 2);
    box-shadow: -1px -3px 5px -2px rgba(210, 210, 210, 2);
}

.product {
    border-radius: 0 0 4px 4px;
}

.bg-dark {
    background-color: #4f868c!important;
}

#cart-icon{
    width: 25px;
    display: inline-block;
    margin-left: 15px;
}

#cart-total {
    display: block;
    text-align: center;
    color: #fff;
    background-color: red;
}

.btn {
    border-radius: 0;
}

.row-image {
    width: 100px;
}

.form-field{
    width: 250px;
    display: inline-block;
    padding: 5px;
}

.cart-row {
    display: flex;
    align-items: flex-start;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.quantity {
    display: inline-block;
    font-weight: 700;
    padding-right: 10px;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  background: #000;
}



/* CSS */
.button-17 {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-family: "Google Sans",Roboto,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  max-width: 100%;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  width: auto;
  will-change: transform,opacity;
  z-index: 0;
}

.button-17:hover {
  background: #F6F9FE;
  color: #174ea6;
}

.button-17:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.button-17:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.button-17:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-17:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.button-17:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

button:hover {
  color: #01B1AF;
}
span {
  transition: all 0.7s;
  z-index: -1;
}

button .first {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 25%;
  height: 100%;
  background: turquoise;
}

button:hover .first {
  top: 0;
  right: 0;
}
button .second {
  content: "";
  position: absolute;
  left: 25%;
  top: -100%;
  height: 100%;
  width: 25%;
  background: turquoise;
}

button:hover .second {
  top: 0;
  left: 50%;
}

button .third {
  content: "";
  position: absolute;
  left: 50%;
  height: 100%;
  top: 100%;
  width: 25%;
  background: turquoise;
}

button:hover .third {
  top: 0;
  left: 25%;
}

button .fourth {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 25%;
  background: turquoise;
}

button:hover .fourth {
  top: 0;
  left: 0;
}

.mainmenubtn {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    padding:20px;
    margin-top:20px;
  }
  .mainmenubtn:hover {
    background-color: red;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-child {
    display: none;
    background-color: black;
    min-width: 200px;
  }
  .dropdown-child a {
    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
  }
  .dropdown:hover .dropdown-child {
    display: block;
  }

  @media (max-width: 768px) {
    .service-wrapper .card .row-mt {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .landing-page-index {
        top: 10vh;
        left: 4vw;
        width: 90%;
        height: auto;
    }
}

 /* Dropdown Button */
 .dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Genel dropdown hover — sol menü hariç (sidebar-dropdown.css) */
  .containers .top-nav .dropdown:hover .dropdown-content,
  .menu .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;} 


/* Aydınlık tema: theme-light.css + hex-grid.css */

/* =========================
   Akışkan sayfa yüksekliği
   ========================= */
html {
    height: auto;
}

body {
    min-height: 100vh;
    height: auto;
    background-color: #000;
    display: block;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: auto;
}

.page-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page-content > *:not(.career-page):not(.contact-page):not(.about-page):not(.auth-login-page):not(.auth-register-page):not(.blog-page):not(.profile-page) {
    max-width: 100%;
}

.pagination {
    position: relative !important;
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 5;
}

/* Mobil page-content padding: mobile.css */


