.elementor-2395 .elementor-element.elementor-element-d983314{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-057de39 *//* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}
.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, #13AFF0, #0EA758);
    color: #fff;
    text-align: center;
    padding: 80px 20px;  /* Increased padding */
}
.hero-section h1 {
    font-size: 3rem;  /* Increased font size */
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}
.hero-section p {
    font-size: 1.5rem;  /* Increased font size */
    margin-bottom: 25px;
}
.cta-btn {
    background: #fff;
    color: #0EA758;
    border: none;
    padding: 15px 30px;  /* Increased padding */
    font-size: 1.2rem;  /* Increased font size */
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}
.cta-btn:hover {
    transform: scale(1.1);
}

/* Mission & Vision Section */
.mission-vision {
    display: flex;
    justify-content: space-between;
    padding: 60px 30px;
    background: #eafaf4;
    border-radius: 20px;
}
.mission-vision .content {
    width: 45%;
}
.mission-vision h2 {
    font-size: 2.2rem;
    color: #0EA758;
}
.mission-vision p {
    font-size: 1.4rem;
    line-height: 1.8;
    animation: fadeIn 1.5s ease-out;
}

/* Core Values Section */
.core-values {
    text-align: center;
    padding: 60px 30px;
    background: #eafaf4;
}
.core-values h2 {
    font-size: 2.5rem;
    color: #13AFF0;
    margin-bottom: 30px;
}
.values {
    display: flex;
    justify-content: space-around;
}
.value-item {
    text-align: center;
    width: 20%;
}
.value-item i {
    font-size: 3rem;
    color: #0EA758;
    margin-bottom: 15px;
}
.value-item h3 {
    font-size: 1.5rem;
}

/* History Section */
.history {
    text-align: center;
    padding: 60px 30px;
    background: #f4f4f4;
}
.history h2 {
    font-size: 2.5rem;
    color: #13AFF0;
    margin-bottom: 30px;
}
.timeline {
    display: flex;
    justify-content: space-around;
}
.timeline-item {
    text-align: center;
    max-width: 30%;
}
.timeline-item h3 {
    font-size: 2rem;
    color: #0EA758;
}
.timeline-item p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Team Section */
.team-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.team-member img:hover {
    transform: scale(1.1);
}
.team-member h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 30px;
    background: #eafaf4;
    text-align: center;
}
.testimonial-slider {
    margin-top: 30px;
    font-size: 1.5rem;
}
.testimonial h4 {
    font-size: 1.3rem;
    color: #0EA758;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #0EA758, #13AFF0);
    color: #fff;
    text-align: center;
    padding: 60px 30px;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile-Friendly Design */

/* For devices with a width of 768px or less (Tablets and Small Phones) */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;  /* Adjust padding */
    }
    .hero-section h1 {
        font-size: 2.5rem;  /* Adjust font size */
    }
    .hero-section p {
        font-size: 1.3rem;  /* Adjust font size */
    }
    .cta-btn {
        font-size: 1.1rem;  /* Adjust font size */
        padding: 12px 24px;  /* Adjust padding */
    }
    .mission-vision {
        flex-direction: column;
        padding: 40px 20px;
    }
    .mission-vision .content {
        width: 100%;
        margin-bottom: 20px;
    }
    .core-values h2 {
        font-size: 2rem;
    }
    .values {
        flex-direction: column;
    }
    .value-item {
        width: 100%;
        margin: 15px 0;
    }
    .team-gallery {
        flex-direction: column;
        align-items: center;
    }
    .team-member img {
        width: 120px;  /* Adjust image size */
        height: 120px;  /* Adjust image size */
    }
    .testimonials {
        padding: 40px 20px;  /* Adjust padding */
    }
    .cta-section h2 {
        font-size: 2rem;  /* Adjust font size */
    }
}

/* For devices with a width of 480px or less (Very Small Phones) */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;  /* Adjust font size */
    }
    .hero-section p {
        font-size: 1.2rem;  /* Adjust font size */
    }
    .cta-btn {
        font-size: 1rem;  /* Adjust font size */
        padding: 10px 20px;  /* Adjust padding */
    }
    .mission-vision h2 {
        font-size: 1.8rem;  /* Adjust font size */
    }
    .mission-vision p {
        font-size: 1.2rem;  /* Adjust font size */
    }
    .core-values h2 {
        font-size: 1.8rem;  /* Adjust font size */
    }
    .value-item h3 {
        font-size: 1.4rem;  /* Adjust font size */
    }
    .testimonials h4 {
        font-size: 1.2rem;  /* Adjust font size */
    }
    .cta-section h2 {
        font-size: 1.8rem;  /* Adjust font size */
    }
}/* End custom CSS */