* {
    padding: 0;
    margin: 0;
}

.ai-section-background-container {
    background: url("https://res.cloudinary.com/dmfwd8not/image/upload/v1706795267/New_Project_10_dlfutz.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-section-container {
    height: 90%;
    width: 90%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
}

.ai-section-container-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    height: 100%;
    width: 50%;
}

.ai-section-container-image {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
}

.ai-section-container-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ai-section-container-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #08949c, #e6a85f);
    background-clip: text;
    color: transparent;
    text-align: center;
}

.ai-section-container-content p {
    font-size: 1.5rem;
    font-weight: bold;
    max-width: 90%;
    color: #75767b;
    text-shadow: 4px 4px 12px rgba(255, 255, 255, 0.3);
    text-align: start;
}

.ai-section-container-button {
    border: none;
    display: block;
    position: relative;
    padding: 0.7em 2.4em;
    font-size: 1.5rem;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #000;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
}
  
.ai-section-container-button span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 4px solid #08949c;
}
  
.ai-section-container-button span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
}
  
.ai-section-container-button:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #08949c;
}
  
.ai-section-container-button:hover {
    color: white;
}
  
.ai-section-container-button:active span::before {
    background: #08949c;
}

.ai-section-container-button2 {
    border: none;
    display: none;
    position: relative;
    padding: 0.7em 2.4em;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #000;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
}
  
.ai-section-container-button2 span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 4px solid #08949c;
}
  
.ai-section-container-button2 span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
}
  
.ai-section-container-button2:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #08949c;
}
  
.ai-section-container-button2:hover {
    color: white;
}
  
.ai-section-container-button2:active span::before {
    background: #08949c;
}

@media (min-width: 0px) and (max-width: 767px) {
    .ai-section-background-container {
        background: url("https://res.cloudinary.com/dmfwd8not/image/upload/v1706799287/New_Project_11_b3g3sx.png");
        background-size: cover;
    }

    .ai-section-container {
        display: flex;
        flex-direction: column;
        height: 96%;
        width: 96%;
        backdrop-filter: blur(30px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .ai-section-container-content {
        width: 100%;
        height: 50%;
        align-items: center;
        justify-content: center;
    }

    .ai-section-container-content p {
        display: none;
    }

    .ai-section-container-image {
        width: 100%;
        height: 70%;
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: end;
        justify-content: center;
    }

    .ai-section-container-image img {
        height: 100%;
        width: 60%;
        object-fit: cover;
    }

    .ai-section-container-content h1 {
        font-size: 3rem;
    }

    .ai-section-container-button {
        display: none;
    }

    .ai-section-container-button2 {
        display: block;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ai-section-container-content p {
        display: none;
    }

    .ai-section-container-content h1 {
        text-align: start;
    }
}