/* ===== GLOBAL STYLES ===== */
body {
    margin: 0;
    padding: 0;
    background-color: rgb(14 12 21);
    font-family: 'Outfit', sans-serif;
    color: lightgray;
    overflow-x: hidden;
    line-height: 1.6;
}

button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

* {
    box-sizing: border-box;
}

img {
    pointer-events: none;
    user-select: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: rgba(14, 12, 21, 0.5);
    backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 0.5px solid rgba(107, 88, 116, 0.5);
}

.head-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.head-left img {
    height: 45px;
    margin: 8px 0px;
    margin-right: 15px;
    width: auto;
}

header ul {
    display: flex;
    justify-content: space-between;
    width: 30%;
    min-width: 300px;
    padding: 0;
    margin: 0;
    list-style: none;
}

header ul li {
    white-space: nowrap;
    margin: 0 10px;
}

header a {
    text-decoration: none;
    color: gray;
    font-weight: 900;
    font-size: 15px;
    transition: 0.3s;
}

header a:hover {
    color: lightgray;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.352);
}

.head-right {
    display: flex;
    align-items: center;
}

.button-box {
    position: relative;
    width: 100px;
    height: 45px;
    margin-left: 25px;
    border-radius: 10px;
    background: linear-gradient(to right, #00aaa7, #7f42a7, #6600c5, #1f2b9c, #2a46ff, #0099ff, #00aaa7);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    clip-path: polygon(0 0, 82% 0, 100% 34%, 100% 80%, 100% 99%, 0 100%, 0% 80%, 0% 20%);
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.button-box button {
    position: absolute;
    inset: 3px;
    border: none;
    background-color: rgb(14 12 21);
    color: lightgray;
    border-radius: 10px;
    clip-path: polygon(0 0, 82% 0, 100% 34%, 100% 80%, 100% 99%, 0 100%, 0% 80%, 0% 20%);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.head-right button:hover {
    color: #7e00d2;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    margin: 0 auto;
}

.hero-blur-image {
    position: absolute;
    width: 100vw;
    max-width: 100vw;
    top: -15%;
    margin: 0 auto;
    z-index: -1;
}

.hero-rings-image {
    position: absolute;
    height: 100%;
    /* max-height: 100vh; */
    max-width: 100vw;
    object-fit: cover;
    top: 90px;
    opacity: 0.4;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.hero-icons-image {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}


.hero h4 {
    position: relative;
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 700px;
    text-align: center;
    line-height: 1.5;
    color: rgb(53, 53, 53);
    margin: 0 auto 30px;
    margin-top: 40px;
    z-index: 1;
}

.hero h1 {
    position: relative;
    font-size: clamp(36px, 5vw, 50px);
    max-width: 1000px;
    text-align: center;
    color: white;
    margin: 0 auto 20px;
    margin-top: 8px;
    line-height: 1.3;
    /* padding: 0 20px; */
    z-index: 1;
}

.hero h3 {
    position: relative;
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 700px;
    text-align: center;
    line-height: 1.5;
    color: gray;
    margin: 0 auto 30px;
    margin-top: 24px;
    /* padding: 0 20px; */
    z-index: 1;
}

.hero button {
    position: relative;
    margin: 20px 0;
    border: none;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 10px;
    width: 180px;
    height: 50px;
    clip-path: polygon(0 0, 86% 0, 100% 33%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
    z-index: 1;
}

.hero button:hover {
    opacity: 0.7;
    color: #7e00d2;
}

.hero-image-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 550px;
    margin: 0 auto 0;
    margin-top: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(to right, #00aaa7, #7f42a7, #6600c5, #1f2b9c, #2a46ff, #0099ff, #00aaa7);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    overflow: visible;
}

.hero-image-box .robot-box {
    position: absolute;
    width: 98.5%;
    height: 100%;
    overflow: hidden;
    border-radius: 50px;
}

.hero-image-box .robot-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: hard-light;
}

.hero-image-box .robot-box .robot-header {
    position: absolute;
    top: 0;
    height: 30px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.hero-image-box .element1 {
    position: absolute;
    top: 20%;
    right: -15%;
    backdrop-filter: blur(10px);
    width: 25%;
    max-width: 250px;
    border-radius: 15px;
    z-index: 3;
}

.hero-image-box .element1 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.432);
}

.hero-image-box .element2 {
    position: absolute;
    top: 60%;
    left: -15%;
    backdrop-filter: blur(10px);
    width: 20%;
    max-width: 200px;
    border-radius: 15px;
    z-index: 3;
}

.hero-image-box .element2 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.432);
}

.parallax {
    transition: transform 1s linear;
}

/* ===== COMPANIES SECTION ===== */
.hero h4 {
    position: relative;
    color: gray;
    font-size: clamp(18px, 2vw, 22px);
    margin: 80px 0 20px;
    text-align: center;
    z-index: 1;
}

.companies-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    z-index: 1;
}

.companies-list .company {
    display: flex;
    align-items: center;
    margin: 10px;
}

.companies-list .company img {
    height: 50px;
    margin-right: 10px;
    width: auto;
}

.companies-list .company p {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: bold;
    white-space: nowrap;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 100px 0;
}

.features-section h1 {
    font-size: clamp(36px, 5vw, 50px);
    max-width: 600px;
    text-align: center;
    color: white;
    margin: 0 auto 80px;
    /* padding: 0 20px; */
}

.features-card-box {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.features-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: 0 0 500px 500px rgba(103, 32, 136, 0.1);
    mix-blend-mode: lighten;
}

.features-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 500px;
    background-color: rgb(17, 14, 27);
    border-radius: 20px;
    padding: 30px;
    clip-path: polygon(0 0, 84% 0, 100% 20%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    overflow: hidden;
}

.features-card h2 {
    font-size: clamp(28px, 3vw, 35px);
    margin-bottom: 30px;
}

.features-card p {
    font-size: 18px;
    color: rgb(127, 109, 135);
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-card .explore-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 0.5px solid rgba(107, 88, 116, 0.5);
}

.features-card .explore-more a {
    text-decoration: none;
    color: rgba(255, 179, 179, 0.5);
    font-size: 16px;
    font-style: italic;
}

.features-card .explore-more :hover {
    color: rgba(255, 196, 0, 0.5);
}

.features-card .explore-more img {
    width: 70px;
    height: auto;
}

.features-back-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.features-back-img:hover {
    opacity: 0.08;
}

/* ===== CHAT APP SECTION ===== */
.chatApp-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

.chatApp-section .left-container {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.chatApp-section .left-container h1 {
    font-size: clamp(36px, 5vw, 50px);
    margin-bottom: 30px;
}

.chatApp-section .left-container p {
    display: flex;
    align-items: center;
    font-size: clamp(18px, 2.5vw, 25px);
    margin-bottom: 20px;
}

.chatApp-section .left-container p img {
    height: 30px;
    margin-right: 20px;
    width: auto;
}

.chatApp-section .left-container h2 {
    max-width: 400px;
    font-size: clamp(16px, 2vw, 20px);
    color: rgb(127, 109, 135);
    line-height: 1.6;
    margin-bottom: 40px;
}

.chatApp-section .left-container .button-box {
    margin: 0;
    margin-top: 40px;
    width: 150px;
    height: 50px;
}

.chatApp-section .right-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.chatApp-section .right-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 30px;
}

.chatApp-section .right-container h2 {
    max-width: 400px;
    font-size: clamp(20px, 3vw, 30px);
    color: rgb(127, 109, 135);
    line-height: 1.5;
    text-align: center;
}

/* ===== GENERATIVE SECTION ===== */
.generative-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /*padding: 40px 20px;*/
    padding: 40px 0px;
}

.generative-section h1 {
    font-size: clamp(30px, 4vw, 40px);
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.generative-section p {
    font-size: clamp(16px, 2vw, 18px);
    color: rgb(127, 109, 135);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.generative-section .grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 95%;
    max-width: 1600px;
}

.generative-section .grid-box .grid-card {
    position: relative;
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    border-radius: 30px;
    overflow: visible;
}

.generative-section .grid-box .grid1,
.generative-section .grid-box .grid4 {
    grid-column: span 2;
    height: 1000px;
}

/* .generative-section .grid-box .grid1 .grid1-robot-img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
} */

.generative-section .grid-box .grid-card .info {
    position: absolute;
    right: 7%;
    top: 20%;
    max-width: 500px;
}

.generative-section .grid-box .grid-card .info h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.generative-section .grid-box .grid-card .info h4 {
    font-size: clamp(16px, 2vw, 18px);
    color: rgb(127, 109, 135);
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.generative-section .grid-box .grid-card .info p {
    display: flex;
    align-items: center;
    color: white;
    font-size: clamp(16px, 2vw, 18px);
    border-top: 0.5px solid rgba(107, 88, 116, 0.5);
    padding-top: 10px;
    margin: 20px 0;
    text-align: left;
}

.generative-section .grid-box .grid-card .info p img {
    height: 40px;
    margin-right: 20px;
    width: auto;
}

.generative-section .grid-box .grid2 {
    position: relative;
}

.generative-section .grid-box .grid2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 30px;
}

.generative-section .grid-box .grid2 h1 {
    position: absolute;
    bottom: 35%;
    left: 10%;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    color: white;
}

.generative-section .grid-box .grid2 p {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: clamp(18px, 2.5vw, 25px);
    color: rgb(127, 109, 135);
    max-width: 400px;
    font-weight: bold;
    text-align: left;
    margin: 0;
}

.generative-section .grid-box .grid2 div {
    height: 130px;
    width: 100%;
    max-width: 300px;
    background-color: black;
    position: absolute;
    top: 10%;
    right: 20%;
    border-radius: 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    padding: 20px;
}

.generative-section .grid-box .grid2 div h2 {
    width: 80%;
    margin-top: 20px;
    margin-left: 30px;
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
}

.generative-section .grid-box .grid2 p {
    padding: 25px;
    background-color: #252134;
    border-radius: 20px;
    opacity: 0.8;
    position: absolute;
}

.generative-section .grid-box .grid2,
.generative-section .grid-box .grid3 {
    height: 800px;
}

.generative-section .grid3 {
    background-color: #15131d;
    position: relative;
}

.generative-section .grid3 img {
    width: 90%;
    position: absolute;
    bottom: 10px;
    left: 5%;
}

.generative-section .grid3 .info {
    width: 90%;
    position: absolute;
    left: 5%;
    margin-top: -20%;
}

.generative-section .grid3 .info .info-icons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8%;
}

.generative-section .grid3 .info .info-icons div {
    padding: 25px;
    background-color: #252134;
    border-radius: 20px;
    font-size: clamp(24px, 4vw, 40px);
    color: white;
    flex: 1 1 100px;
    text-align: center;
}

.generative-section .grid3 .info .info-icons i {
    display: block;
    font-size: inherit;
    margin-bottom: 5px;
}

.generative-section .grid3 .info .info-icons div:nth-child(3) {
    background-image: linear-gradient(to right, #a962ff, #5b1f9c);
}

/* .generative-section .grid4 .grid4-robot-img {
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
} */

.generative-section .grid-box .grid1 .grid1-robot-img,
.generative-section .grid-box .grid4 .grid4-robot-img {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 30px;
    height: 110%;
    object-fit: cover;
}


.generative-section .grid-box .grid4 .grid4-robot-img {
    height: 100%;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.pricing-section .pricing-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.pricing-section .pricing-img-box img {
    position: absolute;
    top: 20%;
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.pricing-section .pricing-img-box img:nth-child(2) {
    height: auto;
    max-height: 350px;
    margin-top: 5%;
}

.pricing-section .title {
    font-size: clamp(36px, 6vw, 60px);
    color: white;
    text-align: center;
    margin-bottom: 50px;
    /* padding: 0 20px; */
}

.pricing-section .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    gap: 20px;
    margin: 0 auto;
}

.pricing-section .price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    max-height: 900px;
    height: fit-content;
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    padding: 30px;
    border-radius: 50px;
    background-color: rgba(15, 15, 15, 0.8);
}

.pricing-section .price-box h1 {
    font-size: clamp(30px, 4vw, 40px);
    color: #ffc786;
    margin-bottom: 20px;
}

.pricing-section .price-box h3 {
    font-size: clamp(50px, 8vw, 80px);
    margin: 10px 0 15px;
}

.pricing-section .price-box button {
    border: none;
    background-color: rgb(226, 173, 0);
    color: black;
    border-radius: 10px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    clip-path: polygon(0 0, 96% 0, 100% 35%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    margin-top: 20px;
}

.pricing-section .price-box p {
    display: flex;
    align-items: center;
    font-size: clamp(16px, 2vw, 20px);
    color: rgb(127, 109, 135);
    max-width: 500px;
    border-top: 0.5px solid rgba(107, 88, 116, 0.5);
    padding-top: 20px;
    margin: 10px 0;
    width: 100%;
}

.pricing-section .price-box p img {
    height: 40px;
    margin-right: 20px;
    width: auto;
}

.pricing-section .price-box:nth-child(2) {
    margin-top: -20px;
    max-height: 950px;
    background-color: rgba(29, 29, 29, 0.8);
}

.pricing-section .price-box:nth-child(2) h1 {
    color: #7e00d2;
}

.pricing-section .price-box:nth-child(3) h1 {
    color: #ff776f;
}

.pricing-section a {
    color: white;
    font-size: clamp(18px, 2.5vw, 25px);
    margin-top: 70px;
    text-decoration: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.contact-section .title {
    font-size: clamp(36px, 6vw, 60px);
    color: white;
    text-align: center;
    margin-bottom: 50px;
    /* padding: 0 20px; */
}

.contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    /*padding: 0 20px;*/
}

.contact-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    padding: 50px;
    border-radius: 50px;
    background: rgba(15, 15, 15, 0.2);
}

.contact-box h1 {
    font-size: clamp(30px, 4vw, 40px);
    color: #ffc786;
    margin-bottom: 20px;
}

.contact-box h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgb(127, 109, 135);
    margin-bottom: 40px;
    font-weight: normal;
}

.contact-box h3 {
    font-size: clamp(24px, 3vw, 30px);
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.contact-box h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7e00d2, #ff776f);
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box input,
.contact-box textarea {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    padding: 20px;
    background: rgba(30, 30, 30, 0.8);
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    border-radius: 15px;
    font-size: clamp(16px, 2vw, 18px);
    color: white;
    transition: all 0.3s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: #7e00d2;
    box-shadow: 0 0 10px rgba(126, 0, 210, 0.3);
}

.contact-box textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-box button {
    border: none;
    background-color: rgb(226, 173, 0);
    color: black;
    border-radius: 10px;
    width: 100%;
    height: 60px;
    cursor: pointer;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: bold;
    margin-top: 20px;
    clip-path: polygon(0 0, 96% 0, 100% 35%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
    transition: all 0.3s ease;
}

.contact-box button:hover {
    background-color: rgb(255, 200, 50);
    transform: translateY(-3px);
}


.error-message {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #d32f2f;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.success-message {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.error-message ul {
    margin: 0;
    padding-left: 20px;
}


/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 20px;
}

.roadmap-section h1 {
    font-size: clamp(40px, 6vw, 70px);
    margin: 50px 0;
    text-align: center;
    color: white;
}

.roadmap-section .roadmap-cards-box {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
}

.roadmap-section .roadmap-card {
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 50px;
    overflow: hidden;
}

.roadmap-section .roadmap-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roadmap-section .roadmap-card h2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    font-size: clamp(30px, 5vw, 50px);
    color: white;
}

.roadmap-section .roadmap-card p {
    position: absolute;
    bottom: 5%;
    left: 8%;
    max-width: 78%;
    font-size: clamp(18px, 2.5vw, 25px);
    color: rgb(127, 109, 135);
    line-height: 1.4;
}

.roadmap-section .roadmap-card:nth-child(2) {
    margin-top: 0;
}

.roadmap-section .roadmap-card:nth-child(3) {
    margin-top: 0;
}

.roadmap-section .button-box {
    width: 200px;
    height: 70px;
    margin: 100px 0;
}

.roadmap-section .button-box button {
    font-size: 18px;
}

.roadmap-gradient {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
    box-shadow: 0 0 300px 300px rgba(181, 47, 226, 0.10);
    mix-blend-mode: lighten;
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 0.5px solid rgba(107, 88, 116, 0.5);
    min-height: 200px;
    padding: 50px 20px;
    text-align: center;
}

footer h1 {
    color: gray;
    font-size: clamp(16px, 2.5vw, 24px);
    margin-bottom: 30px;
}

footer .box-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer .box-icons a {
    color: gray;
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    border-radius: 50%;
    font-size: clamp(24px, 4vw, 40px);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: 0.5s;
}

footer .box-icons a:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.217);
}

/* ===== ANIMATIONS ===== */
.autoDisplay {
    animation: autoDisplayAnimation;
    animation-timeline: view();
}

@keyframes autoDisplayAnimation {
    from {
        filter: blur(10px);
        transform: translateY(-200px) scale(0.5);
    }

    50% {
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
}

.fadeInLeft {
    animation: fadeInLeftAnimation;
    animation-timeline: view();
}

@keyframes fadeInLeftAnimation {
    0% {
        opacity: 0;
        transform: translateX(-500px) scale(0.2);
    }

    35%,
    50% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

.fadeInRight {
    animation: fadeInRightAnimation;
    animation-timeline: view();
}

@keyframes fadeInRightAnimation {
    0% {
        opacity: 0;
        transform: translateX(500px) scale(0.2);
    }

    35%,
    50% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

.autoBlur {
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}

@keyframes autoBlurAnimation {
    0% {
        filter: blur(40px);
    }

    30%,
    70% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(40px);
        opacity: 0;
    }
}

/* ===== SIDEBAR ===== */
.menu-icon {
    font-size: 35px;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 35px;
    margin-right: 10px;
    background: linear-gradient(to right, #00aaa7, #7f42a7, #6600c5, #1f2b9c, #2a46ff, #0099ff, #00aaa7);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    clip-path: polygon(0 0, 82% 0, 100% 34%, 100% 80%, 100% 99%, 0 100%, 0% 80%, 0% 20%);
    border-radius: 5px;
    display: none;
}

.menu-icon i {
    position: absolute;
    inset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #15131d;
    clip-path: polygon(0 0, 82% 0, 100% 34%, 100% 80%, 100% 99%, 0 100%, 0% 80%, 0% 20%);
    border-radius: 5px;
    font-size: 30px;
}

.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background-color: rgb(14 12 21);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}

.close-icon {
    font-size: 50px;
    color: lightgray;
    margin: 20px 0 0 25px;
    cursor: pointer;
}

.sidebar ul {
    padding: 0;
    margin: 50px 0 0 30px;
    list-style: none;
}

.sidebar ul li {
    margin: 40px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: lightgray;
    font-size: 30px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(128, 128, 128, 0.4);
}

.social-sidebar {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 60px 0 0 30px;
    gap: 15px;
}

.social-sidebar a {
    color: gray;
    border: 0.5px solid rgba(107, 88, 116, 0.5);
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: 0.5s;
}

.sidebar .button-box {
    width: 150px;
    height: 50px;
    margin: 40px 0 0 30px;
}

.sidebar.open-sidebar {
    width: 100%;
    opacity: 1;
    padding: 20px;
}

.sidebar.close-sidebar {
    width: 0%;
    opacity: 0;
    padding: 0;
}

/* ===== SIGN IN PAGE ===== */
.signin-page-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    height: auto;
    max-height: 90vh;
    scale: 0;
    filter: blur(10px);
    z-index: 2000;
    background-color: rgb(14 12 21);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.484);
    overflow: auto;
    transition: all 0.2s ease;
}

.signin-page {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.signin-page h1 {
    font-size: clamp(30px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}

.signin-page input {
    padding: 15px 30px;
    background-color: lightgray;
    width: 80%;
    max-width: 400px;
    height: 45px;
    border: none;
    outline: none;
    clip-path: polygon(0 0, 93% 0, 100% 43%, 100% 80%, 100% 99%, 0 100%, 0% 80%, 0% 20%);
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

.signin-page button {
    width: 60%;
    max-width: 300px;
    height: 45px;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    /* background-color: #7e00d2; */
    background-color: #00a832;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    margin-bottom: 20px;
}

.signin-page p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    max-width: 300px;
    height: 45px;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    background-color: gray;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.signin-page div {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
    color: lightgray;
}

.signin-page div:hover {
    opacity: 0.7;
}

.openSignin {
    scale: 1;
    filter: blur(0);
    top: 50%;
}

.closeSignin {
    scale: 0;
    filter: blur(10px);
    top: 60%;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 1200px) {
    header {
        padding: 10px 20px;
    }

    header ul {
        display: none;
    }

    .container {
        overflow-x: clip;
    }

    .head-right {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero-image-box .element1 {
        right: 5%;
        top: -12%;
        width: 40%;
    }

    .hero-image-box .element2 {
        left: 5%;
        top: 95%;
        width: 30%;
    }

    .companies-list {
        justify-content: center;
    }

    .generative-section .grid-box {
        display: flex;
        flex-direction: column;
    }

    .generative-section .grid-box .grid-card {
        min-height: 400px;
    }

    .generative-section .grid-box .grid-card .info {
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: rgba(21, 19, 29, 0.8);
        backdrop-filter: blur(5px);
    }

    .pricing-section .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-section .price-box {
        width: 100%;
        min-height: auto;
        margin: 20px 0;
    }

    .roadmap-section .roadmap-cards-box {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-section .roadmap-card {
        height: 500px;
    }

    .generative-section .grid-box .grid1 .grid1-robot-img,
    .generative-section .grid-box .grid4 .grid4-robot-img {
        height: 40%;
    }

    .generative-section .grid-box .grid1,
.generative-section .grid-box .grid4 {
    height: 500px;
}
}

@media screen and (max-width: 768px) {
    .head-left img {
        height: 35px;
    }

    .hero h1 {
        margin-top: 80px;
    }

    .hero h3 {
        max-width: 90%;
    }

    .hero-image-box {
        margin-top: 150px;
        border-radius: 50px;
        height: 400px;
    }

    /* .hero-image-box .element1,
    .hero-image-box .element2 {
        display: none;
    } */

    .features-card {
        min-height: 400px;
        padding: 20px;
    }

    .features-card h2 {
        font-size: 24px;
    }

    .features-card p {
        font-size: 16px;
    }

    .chatApp-section .left-container,
    .chatApp-section .right-container {
        padding: 0 10px;
    }

    .chatApp-section .left-container h1 {
        font-size: 32px;
    }

    .chatApp-section .left-container p {
        font-size: 18px;
    }

    .contact-box {
        padding: 30px;
        border-radius: 30px;
    }

    .contact-box h1 {
        font-size: 28px;
    }

    .contact-box input,
    .contact-box textarea {
        padding: 15px;
    }

    .roadmap-section .roadmap-card h2 {
        font-size: 32px;
    }

    .roadmap-section .roadmap-card p {
        font-size: 18px;
    }

    footer {
    flex-direction: column;
    justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .head-left img {
        height: 30px;
        margin-right: 10px;
    }

    .hero h1 {
        font-size: 28px;
        margin-top: 60px;
    }

    .hero h3 {
        font-size: 16px;
    }

    .hero button {
        width: 160px;
        height: 45px;
        font-size: 16px;
    }

    .hero-image-box {
        margin-top: 100px;
        border-radius: 50px;
        height: 280px;
    }

    .features-card {
        min-height: 350px;
        padding: 15px;
    }

    .contact-box {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-box h1 {
        font-size: 24px;
    }

    .contact-box h2 {
        font-size: 16px;
    }

    .contact-box input,
    .contact-box textarea {
        padding: 12px;
        font-size: 14px;
    }

    .roadmap-section .roadmap-card {
        height: 400px;
    }

    .roadmap-section .roadmap-card h2 {
        font-size: 24px;
        bottom: 25%;
    }

    .roadmap-section .roadmap-card p {
        font-size: 16px;
    }

    footer .box-icons a {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}