* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.text-align-center {
    text-align: center;
}
.move {
    position: relative;
    top: 20px;
}


a:link, a:visited {
  text-decoration: none;
}
html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    z-index:0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index:1000;
}

.container-why {
    max-width: 1200px;
    margin: 0 auto;
    padding:0 2rem;
    padding-bottom:1rem;
    z-index:1000;
}
.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
    min-height:3.5rem;
    position:sticky;
}
@media (max-width:800px) {
    .container1 {
        position:fixed;
        width:100%;
        background:rgb(0, 0, 0);
        z-index:10000;
    }
}

.head {
    display: flex; 
    justify-content: space-evenly;  
    flex-direction: row;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5213c0;
    cursor: pointer;
}
.about {
    margin-right: 120px;
}
.about:hover {
    color: #430ca1;
}
.contact{
    margin-right: 120px;
}
.contact:hover {
    color: #430ca1;
}
.offer:hover {
    color: #430ca1;
}
.automation {
    margin-left: 120px;
}
.automation:hover {
    color: #430ca1;
}
nav {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 1000;
}
.hoverrr:hover {
    color: #1c1429;
    background:grey;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;

}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
}
@media (max-width:800px) {
    .hero {
    height: 90vh;
    }
}
.hero-content {
    max-width: 600px;
}
.about-text {
    display: flex;
    justify-content: center;
}
.description-container-left {
    position:relative;
    left: 50%;
}
.example    {
    display: flex;
    justify-content: space-between;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    width: 420px;
    }
.description-text {
    color: rgba(255, 255, 255, 0.685);
    padding-bottom: 30px;
    padding-top: 30px;
}
.title {
    padding-top: 30px;
}
html,body{
    overflow-x: hidden;
}
h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}
.h1d {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}
.description-container-right {
    position:relative;
    right: 1000px;
} 
.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}
.img-hover {
    transition: transform 0.25s ease;
    cursor: pointer;
}
.img-hover:hover {
    transform: scale(1.5);
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #7c3aed;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
    cursor: pointer;
}

button {
    border: rgb(13, 9, 60) 2px solid;
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover {
    background: #7f4adb;
}

section {
    padding: 8rem 0;
}
.first-img {
    padding-right: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    }
.hamburger {
    overflow: hidden;
    background-color: #333;
    display: inline-block;
    position:fixed;
    top: 3.5em;
    z-index:100000;
    right:0;
}
.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: #ffffff;
    color: black;
    padding: 20px;
    border-radius: 20px;
    z-index: 9999;
    display:flex; 
    justify-content:center;
    flex-direction: column;
    align-items:center;
    text-align:center;
}
.cookie-modal-2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: black;
    padding: 20px;
    border-radius: 20px;
    z-index: 9999;
    display:flex; 
    justify-content:center;
    flex-direction: column;
    align-items:center;
    text-align:center;
}
.save-preferences {
    font-size:70%;
}
@media (max-width:400px) {
    .save-preferences {
        font-size:60%;
    }
}

@media (max-width: 500px) {
    .cookie-modal {
        width: 90%;
        max-width: 90%;
        border-radius: 15px;
        padding: 15px;
    }

    .cookie-button {
        width: 100%;
        margin-top: 10px;
    }

    .modal-content label {
        font-size: 0.9rem;
    }
}

  .cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    background: #d2d1d6;
    color: rgb(24, 26, 63);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 9999;
}

@media (max-width: 600px) {
    .cookie-banner {
        width: 95%;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    .cookie-button {
        width: 48%;
        margin: 5px 1%;
    }
}


#Myvideo {
    position: absolute;
    width: 100%;
    height: 90%;
    left: 0;
    right: 1000px;
    top: 100px;
    opacity: 0.5;
}
.cookie-button {
    color: black;
    background: rgb(83, 83, 216);
    border-radius: 100px;
    width: 45%;
    height: 30px;
}
  .cookie-modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 20%;
    max-height: 40%;
    background: rgb(255, 255, 255);
    color: black;
    padding: 20px;
    border-radius: 50px;
    display: none;
  }
  
  .modal-content label {
    display: block;
    margin: 10px 0;
  }
  
.hamburger a.icon {
    background: black;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    cursor: pointer;
}

.hamburger #myLinks {
    display: none;
}

.move3 {
    margin-top: 100px;
}
.hamburger a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}
.hamburger.show #myLinks {
    display: block;
}

.text-example {
    padding: 20px;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    font-size: 2.5rem;
    color: #7c3aed;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 3rem 0;
    background: #1a1a1a;
}

.form-status {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}
.Style-color {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3abaed, #2842d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}
.Style-colormb {
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3abaed, #2842d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}
.form-status.success {
    color: #7c3aed;
    display: block;
}
.form-status.error {
    color: #ff3860;
    display: block;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 1770px) {
    .head-move {
    position: relative;
    left: 300px;
}
}
@media (max-width: 800px) {
    body {
        width: auto;
    }
    .width {
        width: 100%;
    }
    h1 {.topnav #myLinks {
        display: none;
      }
      
        font-size: 2.5rem;
    }
    .navigation-color-text {
        color: #6d28d9;
    }
    .width-style {
        width: auto;
    }
    img {
        /* Responsive images (ensure images don't scale beyond their parents) */
      
        /* Part 1: Set a maxium relative to the parent */
        max-width: 100%;
      
        /* IE7-8 need help adjusting responsive images */
        width: auto\9;
      
        /* Part 2: Scale the height according to the width, otherwise you get stretching */
        height: auto;
      
        vertical-align: middle;
        border: 0;
        -ms-interpolation-mode: bicubic;
      }
    .tagline {
        font-size: 1.2rem;
    }
    .center {
        display:flex;
        justify-content: center;
    }
    .mover {
        padding-top: -60px;
    }
    .dontdisplayonmobile    {
        display: none;
      }
}
@media (min-width: 801px) {
    .dontdisplayonpc {
        display: none;
    }
}
@media (max-width: 275px) {
    .short {
    padding-top: 10px;
    }
}
@media (min-width: 1360px) {
    .image2 {
        position: relative;
        left: 750px;
    }
}

@media (min-width: 801px) and (max-width: 1360px) {
    .future {
        position: relative;
        left: 10%;
    }
    .simple {
        position: relative;
        left: 20%;
    }
    .sleek {
        position: relative;
        left: 25%;
    }
}
@media (min-width: 801px) {
    .img-height {
        height: 250px;
    }
}
@media (min-width: 1100px) and (max-width: 1360px) {
    .future {
        position: relative;
        left: 46%;
    }
    .simple {
        position: relative;
        left: 60%;
    }
    .sleek {
        position: relative;
        left: 65%;
    }
}
@media (max-width: 1757px) and (max-height: 850px) {
    .onlybigscreen {
        display: none;
    }
}