.subscribe-form {
    max-width: 450px;
    border: 1px solid #007bff;
    border-radius: 50px;
    overflow: hidden;
}

.input-group {
    display: flex;
}

.email-input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.subscribe-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: transparent;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 1px solid #007bff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form .subscribe-btn:hover {
    background-color: #FFD700; /* yellow */
    color: black;
}


     .testimonial-section {
        background-color: #f8f9fa;
        }
        .testimonial {
        border: 1px solid #e0e0e0;
        transition: background-color 0.3s ease;
        }
        .testimonial:hover {
        background-color: #ffe082; /* Light yellow hover */
        }

        /* Default blue border */
.feature-boxes > div {
    border-color: #0d6efd !important; /* Bootstrap primary blue */
    transition: border-color 0.3s ease; /* Smooth transition */
}

.feature-boxes > div > div {
    transition: background-color 0.3s ease;
}

.feature-boxes > div > div:hover {
    background-color: #f3f0d5 !important;
}


.accordion-button:not(.collapsed) {
      background-color: #3B82F6; /* Blue background for active */
      color: white;
    }

    .accordion-button {
      background-color: #f8f9fa;
      color: #000;
    }

    .accordion-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .video-thumbnail {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-size: cover; /* Make sure image covers area */
    background-position: center; /* Keep image centered */
    background-repeat: no-repeat;
    border-radius: 8px; /* Optional rounded corners */
}

.feature-box:hover{
 background-color: #f3f0d5

}

.contact-submit-btn {
    border: 1px solid blue;
    background-color: transparent; /* transparent background */
    color: black; /* blue text */
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: yellow; /* yellow background */
    color: white; /* white text */
    border-color: yellow; /* keep border aligned with hover color */
}
