@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;
    
 
    
}
.containers {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    height: 500vh; /* Increased height */
    overflow: hidden;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
/* body.light-mode .containers {
    background: #fff;
}
/* Medium devices (tablets, 1024px and up) */
@media (max-width: 1024px) {
    .containers {
        height: 600vh; /* Increased min-height for medium screens */
        
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    .containers {
        height: 800vh; /* Increased min-height for small screens */
        
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .containers {
        height: 900vh; /* Increased min-height for extra small screens */
        
    }
}


.containerlog {
    
    background: #000;
   padding: 10px 100px ;
   margin-left: 20px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}



.hex-grid .grid {
    position: absolute;
    top: 0;
    left: 0;
    background: url("grid.0b03ec263c7b.svg") repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: 500px;
    background-position: center;
    filter: blur(0.7px);
}
/* body.light-mode .hex-grid .grid {
    background: #fff;
} */
.hex-grid .light {
    position: absolute;
    background-size: cover;
    background-attachment: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8em;
    height: 8em;
    filter: blur(5px);
    background: linear-gradient(90deg, #01B1AF,  #0ABAB5 100%);
    z-index: 0;
}



/* Responsive Styles */
@media (max-width: 768px) {


    .hex-grid .grid {
        background-size: 250px;
    }

    .hex-grid .light {
        width: 4em;
        height: 4em;
    }


}

@media (max-width: 480px) {
    .hex-grid .grid {
        background-size: 150px;
    }

    .hex-grid .light {
        width: 3em;
        height: 3em;
    }


  
}

   
    /* Other adjustments for tablet view */



    
        







.top-nav {
    border-radius: 14px;
    display: flex;
    position: absolute; /* Use absolute positioning */
    right: 15px; /* Align to the right */
    top: 5px;
    backdrop-filter: blur(5px);
    z-index: 10;
    width: auto; /* Allow the width to be auto */
    height: 48px;
    padding: 1px;
    align-items: center; /* Center vertically */
    background:transparent;
    color: #FFF;
}
 /* 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);
}

@media (max-width: 700px) {
    .menu-button-container {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        right: 0;
        font-size: 5px;
        flex-direction: column;
        width: 120px;
        justify-content: center;
   
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
    }
    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
        border: 1px solid #333;
        height: 9em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
        display: flex;
        margin: 0;
        padding: 0.5em 0.5em;
        width: 100%;
        color: white;
        right: 0;
    }
    .menu > li:not(:last-child) {
        border-bottom: 1px solid #5f5e5e;
    }
}

/* Default style for larger screens */
.side-nav {
    width: 100px;
    height: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0px;
    padding: 50px 1px ;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: width 0.5s ease;
    z-index: 10;       
    overflow: hidden;
    line-height: 0.1;
    font-size: 13px;
}

/* body.light-mode .side-nav {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
} */


@media (max-width: 768px) {
    /* Hide all children of .side-nav except for .user */
    .side-nav > *:not(.user) {
        display: none;
    }

    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: 500px;
        font-weight: 100;
        font-size: 16px;
        position: absolute;
        transform: translateY(-15px);
    }

    /* Now configure .side-nav and .user for the mobile view */
    .side-nav {
        width: 12vh; /* Hidden by default */
        height: 80px; /* Auto height based on content */
        position: fixed;
        top: 0px;
        margin-left: 0;
        padding: 10px; /* Adjust padding as needed */
        display: flex; /* Use flexbox for layout */
        justify-content: flex-start; /* Center items horizontally */
        align-items: center; /* Align items vertically */
        z-index: 21; /* Ensure it's above other content */
        background: transparent;
        line-height: 0.1;
        margin: auto;
        font-size: 12px;
        border-top-left-radius: 5px;
    }

    .side-nav .user-img {
        margin-top: 5px;
        left: 13px;
       
        flex-grow: 1; /* Allow .user to fill the available space */
        height: 50px; /* Fixed height */
        display: inline-block; /* Ensure .user uses flexbox layout */
        padding: 5px 0; /* Adjust padding for horizontal layout */
        cursor: pointer;
        margin: auto;
        z-index: 300;
    }

    .side-nav:hover {
        width: 70px; /* Expand to full width on hover */
        height: 100%; /* Full height on hover */
        flex-direction: column; /* Change direction on hover */
        justify-content: flex-start; /* Align items at the start */
        align-items: center; /* Center items horizontally */
        background-color: rgba(0, 0, 0, 0.8); /* Darken background on hover */
        left: 0px;
        margin: auto;
        padding: 0;
        z-index: 200;
        backdrop-filter: blur(50px);
       
    }

    .side-nav:hover > *:not(.user) {
        display: block; /* Show other elements on hover */
    }

    .side-nav ul {
        margin: 30px;
        line-height: 1;
        left: 0px;
        padding: 0 30px;
        justify-content: flex-start;
        margin-left: 0px;
        margin-top: 100px;
    }

    .side-nav ul li{
        margin: 50px 0;
        display: flex;

        
    }

    
}

@media (max-width: 468px) {
    /* Hide all children of .side-nav except for .user */
    .side-nav > *:not(.user) {
        display: none;
    }


    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: 1000px;
        font-weight: 100;
        font-size: 16px;
        position: absolute;
        transform: translateY(-15px);
    }
}

.user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.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: 50px;
    border-radius: 60%;
    margin: auto;
    display: flex;
    position: absolute;
}

ul {
    top: 270px;
    font-size: calc(0.5vw + 1px); 
    list-style: none;
    padding: 0 25px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    position: static;
    display: flex;
    margin: 0;
    line-height: 1;
}

.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; 

}

.side-nav ul li{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}


ul:hover {
    color: #000;
    transform: scale(1.001);
}

.side-nav li {
    margin-top: 300px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    line-height: 0;
    left: 0px;
}

.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 {
    width: 350px;
}

.side-nav:hover .user div {
    display: flex;
    position: relative;
}

.side-nav:hover .user {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.side-nav:hover .user-img {
    margin: auto;
}

.side-nav:hover ul li p {
    display: block;
    text-decoration: none;
    margin-top: 200px;
    margin: 0;
}

.side-nav:hover ul li img {
    margin-right: 10px;
  
}

.side-nav:hover ul li {
    justify-content: flex-start;
}






.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: 100vw;
    height: 100vh;
    margin-bottom: 0;
    position: absolute;
    top: 450vh;
    gap: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
}

/* Medium devices (tablets, 1024px and up) */
@media (max-width: 1024px) {
    .containerl {
        max-width: 100vh; /* Adjust max-width for medium screens */
        height: 20vh; /* Adjust height for medium screens */
        top: 700vh; /* Adjust top position for medium screens */
       
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    .containerl {
        max-width: 80vh; /* Adjust max-width for small screens */
        height: 25vh; /* Adjust height for small screens */
        top: 800vh; /* Adjust top position for small screens */
        
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .containerl {
        max-width: 70vh; /* Adjust max-width for extra small screens */
        height: 20vh; /* Adjust height for extra small screens */
        top: 900vh; /* Adjust top position for extra small screens */
        
    }
}
/* 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 {
    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 15vh 10vh;
    }
}

/* 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%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    max-width: 100vh;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 128vh;
    height: 27vh;
    border: 0;
}

/* Adjustments for Mobile */
@media (max-width: 767px) {
    .footer {
        padding: 100px 0; /* Increase padding to push footer lower on mobile */
    }

    .footers {
        padding-top: 50px; /* Add padding-top to move footer text lower on mobile */
    }
    .iframe-container iframe {
        max-width: 49vh;
    }
}



.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;
}

.middle6 {
    position: absolute;
    height: 210px;
    width:275px;
    top: 420.7vh;
    right: 45px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 15px;
    padding: 5px 5px 5px 5px;
    background: transparent;
    background-size: cover;
    align-items: center;
    justify-content: center;
}
.middle6 img {
    height: 185px;
    width: 265px;
}

.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: 20vh; /* Use relative units for height */
    width: 80vw; /* Use relative units for width */
    top: 160vh; /* Adjust this value as needed for your design */
    right: 10vw; /* Adjust this value as needed for your design */
    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: 4vw; /* Adjust for responsiveness */
    font-weight: 100;
    margin: auto;
}

.middle8 h2 {
    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-text-fill-color: transparent;
    position: relative;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .middle8 {
        width: 90vw;
        height: 25vh;
        top: 200vh;
        right: 5vw;
        font-size: 4.5vw;
    }
}

@media (max-width: 992px) {
    .middle8 {
        width: 95vw;
        height: 30vh;
        top: 230vh;
        right: 2.5vw;
        font-size: 4vw;
    }
}

@media (max-width: 768px) {
    .middle8 {
        width: 95vw;
        height: 35vh;
        top: 200vh;
        right: 2.5vw;
        font-size: 3.5vw;
    }
    .middle8 h2 {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .middle8 {
        width: 100vw;
        height: 40vh;
        top: 156vh;
        right: 0;
        font-size: 10vw;
        font-weight: 700;
    }
    .middle8 h2 {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .middle8 {
        max-width: 80vw;
        width: 100%;
        height: 45vh;
        top: 150vh;
        left: 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: 25%;
        height: 25%;
    
   
    }
  
    /* 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;
  }
  
  
  .landing-page3 {
    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); /* Example blur value */
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    right: 0;
    top: 180vh;
    height: 20vh;
    width: 100vw; /* Make width responsive */
    z-index: 5;
    color: #000;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;
    padding: 0 20px; /* Add padding for better spacing */
}

/* Adjustments for tablets */
@media (max-width: 768px) {
    .landing-page3 {
        height: 15vh; /* Increase height for smaller screens */
        top: 1300px; /* Adjust position */
        backdrop-filter: blur(5px); /* Adjust blur for smaller screens */
        padding: 0 10px; /* Adjust padding */
    }
}

/* Adjustments for mobile devices */
@media (max-width: 480px) {
    .landing-page3 {
        height: 20vh; /* Increase height for smaller screens */
        top: 1500px; /* Adjust position */
        padding: 0 5px; /* Adjust padding */
    }
}


  
  /*   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 {
        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: 55%;
    top: 135px;
    left: 10%;
    transform: translateX(-50%);
    color: #fff;
    animation: textup 12s linear infinite;
    display: block;
    margin-bottom: 10px;
}

.text-box h1 {
    font-weight: 700;
    font-size: calc(3vw + 20px); 
    display: flex;/* Responsive font size */
}

.text-box p {
    font-size: calc(0.6vw + 10px); /* Responsive font size */
    line-height: normal;
    margin-top: 55px;
    font-weight: 300;
}

.text-box span {
    margin-top: 30px;
    background: #01B1AF;
    height: 3px;
    width: 100px;
    position: absolute;
    display: inline;
   
  
}

/* 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 {
        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, .service-wrapper3 {
    position: absolute;
    top: 470px;
    right: 0;
    left: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
}

.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 .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;
}

.service .card:hover img {
    filter: grayscale(100%);
}

.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: 335px;
        padding: 10px;
        right: 0px;
        left: 0px;
    }
    .service h1 {
        font-size: 2.5rem;
    }
    .service h2 {
        font-size: 30px;
    }
    .service .cards {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .service-wrapper, .service-wrapper3 {
        top: 335px;
        padding: 5px;
        right: 0px;
        left: 0px;
    }
    .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;
    }
}


  .counter-container {
    display: flex;
  }
  
  @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;}
  
  /* Show the dropdown menu on hover */
  .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;} 


body.light-mode .containers {
    background: #fff;
    color: #000;
}

body.light-mode .containers p{
    color: #000;
}

body.light-mode .hex-grid .grid {
    background: #fff;
}