* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

/* HEADER SECTION */
header {
    background: linear-gradient(135deg, #FFDAB9, #708090);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/abstract-shapes.svg') no-repeat center;
    opacity: 0.1;
    z-index: 0;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.demo-box {
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px; /* Add spacing below the text */
}

.cta-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 10px 20px rgba(255, 75, 43, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px; 
}
.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.cta-button:hover {
    box-shadow: 0px 15px 25px rgba(255, 75, 43, 0.5);
    transform: translateY(-5px);
    transform: translateZ(10);
}


/* FEATURES SECTION */
.features-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    z-index: 1;
}

.features-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    width: 30%;
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover img {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

/* DEMO SECTION */
.demo-section {
    padding: 30px 0;
    background-color: #eaeaea;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106,17,203,1) 0%, rgba(37,117,252,1) 100%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.2;
}

.demo-box {
    padding: 50px;
    background-color: white;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.demo-box p {
    font-size: 1.2rem;
    color: #555;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

form input, form textarea {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

form input:focus, form textarea:focus {
    border-color: #2575fc;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

form button {
    padding: 15px 30px;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

form button:hover {
    background-color: #1a5bbf;
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}


/* FOOTER */
footer {
    padding: 30px;
    background-color: #333;
    color: white;
    text-align: center;
}
