* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Verdana pro", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensure body takes the full viewport height */
    margin: 0;
    background-color: var(--white);
    font-optical-sizing: auto;

}

main {
    flex: 1;
    /* Makes the main content expand to fill available space */
}



:root {
    --logo-color: #f79836;
    --primary-color: #a8cf45;
    --primary-color-dark: #0e844d;
    --text-dark: #333333;
    --white: #ffffff;
    --button: #0b3d26;

}

.container {
    max-width: 1200px;
    margin: 15px auto 0px;
    padding: 0.5rem;
    line-height: 1.4;
    font-size: 1.2rem;
    text-align: justify;
}


/* Section Titles */
.contact-details p {
    line-height: 2.1;
}

section h2 {
    color: var(--primary-color-dark);
    /* Dark Teal */
    margin-bottom: 10px;
    font-size: 1.5rem;
}

section p {
    color: var(--text-dark);
    font-size: 16px;
}

section li {
    color: var(--text-dark);

    font-size: 16px;
}

section strong {
    color: var(--logo-color);
}

.contact-details {
    line-height: 2.5;
}

/* Contact Form */
.contact-form {
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    width: 100%;
    border-radius: 15px;
    background-color: var(--white);
}

.contact-form h3 {
    color: var(--logo-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 13px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 7px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

.contact-form button {
    background-color: var(--button);
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 0 10px var(--primary-color);
}

.contact-flex {
    display: flex;
    gap: 2rem;
    /* Space between the two sections */
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    max-width: 70%;
    border-radius: 30px;
}

.contact-input {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.contact-field {
    display: flex;
    gap: 10px;
}



/* Media Query for smaller screens */
@media (max-width: 767px) {
    .contact-flex {
        flex-direction: column;
        align-items: center;
        /* Stack on smaller screens */
    }

    .contact-details,
    .contact-form {
        max-width: 90%;
        /* Full width */
    }
}

.carousel-container1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 10px;
    background-color: var(--white);
    text-align: center;
}

.carousel-track1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-btn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    user-select: none;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-btn1 {
    transform: translateY(-50%) scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 6px 15px var(--primary-color);
    /* Make the shadow more pronounced on hover */
}

.carousel-btn1.prev {
    left: 10px;
}

.carousel-btn1.next {
    right: 10px;
}

.certified-img {
    flex: 1 0 250px;
    margin: 10px;
    padding: 20px;
    height: 200px;
    object-fit: cover;
}

.certified-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer {
    background: radial-gradient(#fff, #49d2d05e);
    padding: 30px 0;
    margin-bottom: 30px;

}

.col-2 .offer-img {
    width: 400px;
    height: 400px;
    margin-left: 70px;
    object-fit: inherit;
    padding: 0px;
    box-shadow: 0 8px 20px rgba(88, 101, 108, 0.753);
    transition: all 1.5s ease-in;
}

.col-2 .offer-img:hover {
    transform: scale(1.05);
}

.col-2 h2 {
    font-size: 40px;
    line-height: 60px;
    margin: 25px 0;
}

.col-2 .app-logos img {
    width: 75px;
    height: 40px;
    object-fit: inherit;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.app-logos {
    margin-top: 10px;
    translate: transform 0.5s ease-in-out;
}

.app-logos a {
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-logos a:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.offer-row {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-around;
}

small {
    line-height: 2;
    color: #555;
    font-size: 14px;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--button);
    color: #ffffff;
    padding: 8px 30px;
    margin: 0px 0;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    border: none;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);

    font-weight: 700;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Base arrow behavior */
.arrow-flicker {
    display: inline-block;
    transition:
        transform .35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity .35s ease;
    opacity: .9;
    font-weight: 500;
}

/* Smooth slide + soft fade */
.contact-btn:hover .arrow-flicker {
    transform: translateX(10px);
    opacity: 1;

}



.col-2 p {
    margin: 15px 0px;

}

@media (max-width: 568px) {
    .offer-row {
        display: block;

    }

    .offer {
        padding: 30px;
    }

    .col-2 {
        text-align: center;
    }



    .col-2 h2 {
        font-size: 35px;


    }

    .col-2 .offer-img {
        margin-left: 0px !important;
        padding: 0px;
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {

    .col-2 .offer-img {
        margin-left: 45px;
        padding: 0px;
        width: 260px;
        height: 260px;
    }
    .container{
        margin: 0px;
    }

    .col-2 h2 {
        font-size: 30px;
        line-height: 45px;
    }

    .offer-row {
        gap: 55px;

    }

    section h2 {
        font-size: 20px;
        text-align: center;
    }

    section li,
    section p {
        font-size: 14px;
    }

    section strong {
        font-size: 16px;
    }

}