body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}

/* Hero Section */
.custom-hero-hero {
    background: url('../../assets/img/hero-carousel/hero.webp') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 15px; /* Added padding for top and bottom spacing */
    box-sizing: border-box;
}

.custom-hero-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Hero Title */
.custom-hero-hero-title {
    flex: 1 1 60%; /* Grow and shrink as needed, base width 60% */
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.custom-hero-hero-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-hero-hero-title p {
    font-size: 2rem;
    font-weight: 600;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    
}

/* Contact Form */
.custom-hero-contact-form {
    flex: 1 1 35%; /* Grow and shrink as needed, base width 35% */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.custom-hero-contact-form h2 {
    color: #212529;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.custom-hero-contact-form .form-group {
    margin-bottom: 15px;
    width: 100%;
}

.custom-hero-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #212529;
    text-align: left;
}

.custom-hero-contact-form input,
.custom-hero-contact-form textarea,
.custom-hero-contact-form button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.custom-hero-contact-form textarea {
    resize: none;
    height: 80px;
}

.custom-hero-contact-form button {
    background-color: #FFD700;
    color: #212529;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.custom-hero-contact-form button:hover {
    background-color: #e6c200;
}

#responseMessage {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* New CSS for Counters */
.activation {
    font-size: 2rem;
    color: #0e2e97; /* Gold color for Total Activation */
    font-weight: 700;
}

.users {
    font-size: 2rem;
    color: #021f4b; /* Green color for Satisfied Users */
    font-weight: 700;
}

.count {
    font-size: 2rem; /* Adjust size as needed */
    margin-left: 5px;
    font-weight: 700;
}

/* Responsive Adjustments */

/* Tablets and below */
@media (max-width: 1024px) {
    .custom-hero-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-hero-hero-title {
        text-align: center;
        padding: 20px 10px;
    }

    .custom-hero-hero-title h1 {
        font-size: 2.5rem;
    }

    .custom-hero-hero-title p {
        font-size: 1.1rem;
    }

    .custom-hero-contact-form {
        margin-top: 30px;
        width: 100%;
        max-width: 500px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .custom-hero-hero-title h1 {
        font-size: 2rem;
    }

    .custom-hero-hero-title p {
        font-size: 1rem;
    }

    .custom-hero-contact-form {
        padding: 20px 15px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .custom-hero-hero-title h1 {
        font-size: 1.8rem;
    }

    .custom-hero-hero-title p {
        font-size: 0.95rem;
    }

    .custom-hero-contact-form {
        padding: 15px 10px;
    }

    .custom-hero-contact-form button {
        padding: 10px;
        font-size: 16px;
    }
}
