body {
    background-color: #0d1a26;
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    position: relative;
    height: 60vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 0;
    background: linear-gradient(to right, #008080, #008B8B);
}
.background-animation-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.demo-contact-section {
    background: linear-gradient(to right, #72d9e8, #c1f2f8);
    padding: 50px 0 100px 0; 
    /* font-family: 'Montserrat', sans-serif; */
    color: #333;
    position: relative;
    z-index: 10;
}

.demo-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    padding: 80px 30px;
}

    .demo-info-wrapper {
        flex: 1;
        max-width: 50%;
        padding-top: 20px;
        position: relative;
    }

.demo-title {
    font-size: 3em;
    margin-bottom: 10px;
    color: #0d1a26;
}

.demo-subtitle {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1a3a5e;
}

.demo-features-list h3 {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #1a3a5e;
}

.feature-group {
    margin-bottom: 30px;
}

.feature-heading {
    font-size: 1.1em;
    margin: 0 0 5px 0;
    color: #0d1a26;
}

.feature-description {
    font-size: 1em;
    margin: 0;
    line-height: 1.4;
    max-width: 85%;
}

.speech-bubble-graphic {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(20%);
    width: 200px;
    height: 150px;
    opacity: 0.3;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%235A9BB3' d='M80 20c11 0 20 9 20 20s-9 20-20 20H40L20 80V60H0V20c0-11 9-20 20-20h60z'/%3E%3Ccircle cx='60' cy='35' r='4' fill='white'/%3E%3Ccircle cx='50' cy='35' r='4' fill='white'/%3E%3Ccircle cx='40' cy='35' r='4' fill='white'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 50%;
}

.form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-half {
    flex: 1;
}

.form-group-full {
    margin-bottom: 20px;
}

.form label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.form input[type="text"],
.form input[type="email"],
.form select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 1em;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form select:focus {
    background-color: #e6e6e6;
    outline: 2px solid #04dae6;
}

.form select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%22292.4%22 height%3D%22292.4%22 viewBox%3D%220 0 292.4 292.4%22%3E%3Cpath fill%3D%22%23666%22 d%3D%22M287 197.8L146.2 57c-2.7-2.7-7.2-2.7-9.9 0L5.4 197.8c-2.7 2.7-2.7 7.2 0 9.9 2.7 2.7 7.2 2.7 9.9 0L141.2 72.3c2.7-2.7 7.2-2.7 9.9 0L277.2 207.7c2.7 2.7 7.2 2.7 9.9 0 2.7-2.7 2.7-7.2 0-9.9z%22%2F%3E%3C/svg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
    padding-right: 2.5em;
}

.form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 1em;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
    transition: background-color 0.3s ease;
}

.form textarea:focus {
    background-color: #e6e6e6;
    outline: 2px solid #04dae6;
}

.submit-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background-color: #04dae6;
    color: #333;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(4, 218, 230, 0.4);
}

.submit-btn:hover {
    background-color: #6583c5;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 7px 25px rgba(101, 131, 197, 0.5);
}

@media (max-width: 992px) {
    .demo-contact-container {
        flex-direction: column;
        align-items: center;
        padding: 50px 30px; 
    }
    .demo-info-wrapper,
    .contact-form-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .demo-info-wrapper {
        padding-top: 0;
        padding-bottom: 20px;
    }
    .demo-title {
        font-size: 2.5em;
    }
    .demo-subtitle {
        margin-bottom: 20px;
    }
    .speech-bubble-graphic {
        display: none; 
    }
    .hero-section {
        height: 40vh;
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
}



@media (max-width: 600px) {
    .demo-contact-section {
        padding: 50px 0 50px 0;  
    }
    .demo-contact-container {
        padding: 0 20px; 
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group-half {
        margin-bottom: 20px;
    }
    .demo-title {
        font-size: 2em;
    }
    .feature-group {
        margin-bottom: 20px;
    }
    .hero-section {
        height: 35vh; 
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 30vh; 
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 0.9em;
    }
    .hero-content {
        max-width: 90%; 
    }
    .demo-contact-container {
        padding: 0 15px;
    }
}
.submit-btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* honeypot hide css */

.honeypot-field {
    position: absolute; 
    left: -9999px;  
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0; 
}
.honeypot-field label,
.honeypot-field input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}