
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Audiowide', cursive;
}

body {
    background: url('/Images/36c8a2535c5345a9916b9975c6e75eb5.jpg') no-repeat center center/cover;
    color: #ffffff;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9 )40%, rgba(255, 255, 255) 60%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* Overlay to make background blend better */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

/* Section Styling */
.section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}

/* Text Content */
.text-section {
    width: 50%;
}

.small-text {
    color: #00aaff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 5px;
    color: white;
}
.titlew{
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 5px;
    color: black;
}
.title span {
    color: #00aaff;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.titlew span {
    color: #00aaff;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.title:hover span {
    transform: scale(1.2);
}

.titlew:hover span {
    transform: scale(1.2);
}

.description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}
.robot-image img {
    height: auto;
    width: 100%;
    max-height: 500px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.robot-image2 img {
    height: auto;
    width: 100%;
    max-height: 500px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover Effect */
.robot-image img:hover {
    transform: scale(1.1); /* Zoom effect */
    filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.8)); /* Glowing effect */
}
.robot-image2 img:hover {
    transform: scale(1.1); /* Zoom effect */
    filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.8)); /* Glowing effect */
}
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .robot-image {
        width: 80%;
    }

    .robot-image2{
        width: 100%;
    }
}
@media (max-width: 768px) {
    .title {
        font-size: 40px;
    }

    .description {
        font-size: 12px;
    }

    .robot-image {
        width: 100%;
    }

    .robot-image2{
        width: 100%;
    }

    .cta {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* For extra small screens */
@media (max-width: 480px) {
    .title {
        font-size: 32px;
    }

    .small-text {
        font-size: 14px;
    }

    .description {
        font-size: 12px;
    }

    .cta {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background: #00aaff;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta:hover {
    background: #0088cc;
}

/* Second Section */
.second-section {
    flex-direction: row-reverse; /* Flip the layout */
}

@media (max-width: 1024px) {
  .container,
  .section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .text-section {
    width: 100%;
    margin-bottom: 20px;
  }

  .robot-image,
  .robot-image2 {
    width: 100%;
    max-height: 400px;
  }

  .second-section {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .title,
  .titlew {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .description {
    font-size: 13px;
    margin: 15px 0;
  }

  .small-text {
    font-size: 14px;
  }

  .cta {
    padding: 8px 18px;
    font-size: 14px;
  }

  .robot-image img,
  .robot-image2 img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .title,
  .titlew {
    font-size: 28px;
  }

  .small-text {
    font-size: 12px;
  }

  .description {
    font-size: 11.5px;
  }

  .cta {
    font-size: 12px;
    padding: 6px 14px;
  }

  .robot-image img,
  .robot-image2 img {
    max-height: 250px;
  }
}
