/* https://dev.to/clairecodes/how-to-make-a-sticky-sidebar-with-two-lines-of-css-2ki7 */

/* smooth parallel effect  */



/* team css start  */

        .team-member {
            flex: 1 1 120px;
            max-width: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-member img {
            width: 100%;
            height: 80px;
            margin-bottom: 12px;
        }

        .team-member span {
            font-size: 20px;
            line-height: 1.4;
            color: #6FDA44;
            font-weight: 600;
        }

        /* 📱 Mobile responsiveness */
        @media (max-width: 600px) {
            .team-member {
                flex: 1 1 45%;
                max-width: 45%;
            }
        }

        @media (max-width: 400px) {
            .team-member {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
/* team css end */



/* carousel css start  */


/* carousel css end  */


/* banner css start  */

.logo-text-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.logo {
    width: 250px;
    height: auto;
}

.headline-text {
    font-size: 50px;
    line-height: 1.2;
    text-align: left;
    color: #002c54;
    /* max-width: 800px; */
}

.bold {
    font-weight: bold;
}

.highlight-red {
    color: #6FDA44;
    font-weight: bold;
}

.block {
    display: block;
    margin-top: 10px;
}

.subtext {
    font-size: 20px;
    margin: 20px 0;
    color: #1a1a1a;
}

/* .info-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        } */

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 20px 30px;
    width: 100%;
}

.highlight-pink {
    color: #6FDA44;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.card p {
    margin: 10px 0 0;
    font-size: 20px !important;
    color: #333;
}



.visit-button {
    background-color: #6FDA44;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: inline-block;
}

.visit-button:hover {
    background-color: #6FDA44;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}



/* banner css start  */


/* form css  */

.form-containers {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background-color: #6FDA44;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6FDA44;
}

@media (max-width: 600px) {
    .form-containers {
        padding: 20px;
    }

    .h2 {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}

/* form css end  */

.benefit-card {
    background-color: #F9F8F2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #6FDA44;
}

.benefit-card img {
    max-width: 80px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #6FDA44;
}

.benefit-card p {
    font-size: 22px;
    color: #000;
}


/* Timeline */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #6FDA44;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px;
    position: relative;
    width: 50%;
}

.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.left::before,
.timeline-item.right::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #4f46e5;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-item.right .content {
    margin-left: 20px;
}

.timeline-item.left .content {
    margin-right: 20px;
}

.description {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

h3 {
    color: #6FDA44;
    margin-top: 15px;
    margin-bottom: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .timeline-item.left::before,
    .timeline-item.right::before {
        display: none;
    }

    .timeline::after {
        display: none;
    }

    .timeline-item {
        width: 100%;
        /* padding-left: 40px; */
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right .content,
    .timeline-item.left .content {
        margin: 0;
    }

    .timeline-item::before {
        left: 0px !important;
    }
}

/* explora css start  */

.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    background-color: #F7F9FA;
    gap: 30px;
}

.image-box,
.feature-card {
    width: 100%;
}

.image-box {
    overflow: hidden;
    border-radius: 20px;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.feature-card {
    background-color: #6FDA44;
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card p {
    color: #fff;
    line-height: 1.6;
}


/* Tablet & Desktop View (landscape) */
@media (min-width: 1200px) {
    .features-section {
        flex-direction: row;
    }

    .image-box,
    .feature-card {
        width: 50%;
    }

    .feature-card {
        margin-left: -100px;
        z-index: 1;
    }
}

/* explora css end  */


.box4 {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box4-shadow 0.4s ease;
    text-align: center;
    cursor: pointer;
}

.box4:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.box4 img.icon {
    width: 60px;
    margin-bottom: 20px;
}

.box4 h3 {
    margin-bottom: 15px;
    color: #6FDA44;
    font-weight: 600;
}