/* Basic Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f6f5f7;
    /* Light, calm background color */
    color: #333;
    line-height: 1.6;
}


/* Initial hidden state for reveal-on-scroll */

.section {
    opacity: 0;
    transform: translateY(50px);
    /* Start slightly below its position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
    /* Translate back to normal position */
}


/* Navigation Bar */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #005f6a;
    /* Dark teal background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 100%;
}

header nav {
    display: flex;
    justify-content: space-between;
    /* Logo on the left, menu on the right */
    align-items: center;
    padding: 0 30px;
    /* Standard padding for spacing */
    width: 100%;
    /* Full-width navigation */
    max-width: 1200px;
    margin: 0 auto;
    /* Center the nav container */
}

.logo {
    flex-shrink: 0;
    /* Prevent the logo from shrinking */
}

.logo img {
    max-width: 50px;
    /* Set a standard size for the logo */
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    /* Space between each navigation link */
    margin-left: auto;
    /* Push the links to the far right */
}


/* Navigation Menu */

.nav-links li a {
    position: relative;
    /* For pseudo-element positioning */
    color: #eef0f4;
    /* Dark blue text color */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    transition: color 0.3s ease;
    /* Smooth color change */
    border-radius: 5px;
    overflow: hidden;
    /* Hide the underline before the hover effect */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff7f81;
    /* Soft coral underline */
    transform: scaleX(0);
    /* Initially hidden */
    transform-origin: left;
    /* Start the animation from the left */
    transition: transform 0.4s ease;
    /* Smooth animation for the underline */
}

.nav-links li a:hover {
    color: #ff7f81;
    /* Text color change on hover */
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    /* Expand underline on hover */
}

.btn-explore {
    background-color: #ffa69e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    /* Space between menu items and button */
}

.btn-explore:hover {
    background-color: #ff7f81;
    transform: scale(1.05);
}


/* Responsive for smaller screens */

@media (max-width: 768px) {
    nav .nav-links, 
    nav .btn-explore {
        display: none;
    }
}


/* Hero Section */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px 150px;
    background: linear-gradient(135deg, #bde0fe, #c3f5d5, #f8d7e4);
    /* Modern gradient background */
    position: relative;
    min-height: 600px;
    overflow: hidden;
}


/* Hero content styling */

.hero-content {
    max-width: 50%;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #083e52;
    /* Dark teal for contrast */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    /* Light shadow to make the text stand out */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #345a67;
    /* Softer dark teal for supporting text */
    font-weight: 400;
    line-height: 1.6;
}


/* Button styling */

.hero-button {
    display: inline-block;
    background-color: #ff5a5f;
    /* Vibrant coral color for the button */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
}

.hero-button:hover {
    background-color: #ff7f81;
    /* Slightly lighter coral on hover */
    transform: scale(1.05);
}


/* Adjustments for Hero Section */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
        margin-top: 20px;
    }
}


/* Hero Image */

.hero-image img {
    max-width: 450px;
    height: auto;
    z-index: 1;
}


/* Wave SVG at Bottom */

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/* General container styling */

.about {
    padding: 60px 20px;
    /* Light background color */
    text-align: justify;
    /* Center the text for a modern look */
}

.about h2 {
    font-size: 2.5rem;
    color: #004d40;
    /* Strong, darker color for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* Adds some spacing for a cleaner look */
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    /* More line height for better readability */
    color: #555;
    /* Soft color for the text */
    max-width: 800px;
    margin: 0 auto 20px;
    /* Center text with margin */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-icon img {
    display: block;
    /* Ensures it is visible */
    width: 500px;
    /* Ensures a reasonable size */
    height: auto;
    /* Maintains aspect ratio */
}

.about-text {
    flex: 1;
    /* Take up the remaining space */
    max-width: 600px;
    /* Limit max-width of text for readability */
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    /* Darker text color for better readability */
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    /* Slightly lighter text color for paragraph */
}


/* Responsive styling for smaller screens */

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        /* Stack icon and text vertically on smaller screens */
        text-align: center;
    }
    .about-icon img {
        max-width: 120px;
        /* Reduce icon size on smaller screens */
    }
    .about-text {
        max-width: 100%;
        /* Let text take full width */
    }
}


/* Features Section */

.features {
    padding: 80px 40px;
    text-align: center;
    margin: 40px 0;
}

.features h2 {
    font-size: 2.5rem;
    color: #083e52;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}


/* Underline styling for H2 */

.features h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    border-radius: 5px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 50px;
    color: #107a8b;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 50%;
}

.feature-card h3 {
    color: #083e52;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}


/* Our Values Section */

.values {
    padding: 80px 40px;
    background-color: #f0f9ff;
    /* Light soft blue background */
    text-align: center;
    border-radius: 20px;
    margin-top: 40px;
}

.values h2 {
    font-size: 2.5rem;
    color: #345a67;
    /* Soft teal for heading */
    margin-bottom: 40px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

.value-card {
    background-color: #ffffff;
    /* White card background */
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 3rem;
    color: #82c0cc;
    /* Mint green for icons */
}

.value-content h3 {
    color: #345a67;
    /* Softer teal color for headings */
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
}

.value-content p {
    color: #6c757d;
    /* Light gray for the paragraph text */
    font-size: 1rem;
}


/* Responsive Design */

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Team Section */

.team {
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}

.team h2 {
    font-size: 2.5rem;
    color: #004D40;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 10px;
    max-width: 100px;
}

.team-member h3 {
    color: #0288D1;
    margin-bottom: 5px;
}

.team-member p {
    color: #616161;
}


/* Blog Section */

.blog {
    padding: 80px 40px;
    background-color: #197687;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.blog-post {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post h3 {
    color: #0288D1;
    margin-bottom: 10px;
}

.blog-post p {
    color: #616161;
    margin-bottom: 10px;
}

.blog-post a {
    color: #0288D1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #0277BD;
}


/* Explore More Section */

.explore-more {
    padding: 80px 40px;
    background: linear-gradient(135deg, #bde0fe, #c3f5d5, #f8d7e4);
    /* Matching soft gradient */
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.explore-more h2 {
    font-size: 2.5rem;
    color: #345a67;
    /* Soft teal for heading */
    margin-bottom: 20px;
    font-weight: 700;
}

.explore-more p {
    font-size: 1.2rem;
    color: #6c757d;
    /* Light gray for paragraph */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.explore-button {
    display: inline-block;
    background-color: #82c0cc;
    /* Mint green button */
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Button shadow */
}

.explore-button:hover {
    background-color: #72b4bb;
    /* Slightly darker mint green on hover */
    transform: scale(1.05);
    /* Slight zoom effect */
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .explore-more {
        padding: 60px 20px;
    }
    .explore-more h2 {
        font-size: 2rem;
    }
    .explore-more p {
        font-size: 1rem;
    }
}


/* FAQ Section */


/* General FAQ Styling */

.faq {
    padding: 80px 40px;
    background-color: #FFFFFF;
    text-align: center;
    margin: 40px 0;
}

.faq h2 {
    font-size: 2 rem;
    color: #004D40;
    margin-bottom: 20px;
    font-weight: bold;
}


/* FAQ Question Styling */

.faq-question {
    color: #333;
    /* Default text color */
    padding: 15px;
    margin-top: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: normal;
    transition: color 0.3s ease;
    /* Only color change */
    border: none;
    background: none;
    text-align: left;
}

.faq-question:hover {
    color: #197687;
    /* Change color on hover */
}

.faq-answer {
    display: none;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 14px;
}


/* Accordion Buttons */

.accordion-button {
    font-size: 25px;
    font-weight: normal;
    padding: 10px;
    border: none;
    transition: color 0.3s ease;
    /* Color transition only */
}

.accordion-button:hover {
    color: #197687;
    /* Change color on hover */
}

.accordion-body {
    font-size: 14px;
    background: none;
    font-weight: normal;
    padding: 10px;
    text-align: left;
    /* Ensure text is aligned to the left */
}


/* Flexbox for FAQ Layout */

.faq-content {
    flex: 2;
    max-width: 60%;
    text-align: left;
    /* Align text to the left */
}


/* Footer */

footer {
    padding: 30px;
    background-color: #197687;
    color: white;
    text-align: center;
    margin-top: 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}


/* Contact Section Styling */

.contact {
    background: linear-gradient(135deg, #bde0fe, #c3f5d5, #f8d7e4);
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #345a67;
    /* Soft teal for heading */
    margin-bottom: 20px;
    font-weight: 700;
    ;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-basis: 45%;
}

.contact-info-box {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
}

.contact-info-box h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 1rem;
    color: #666;
}

.contact-info-box i {
    font-size: 2rem;
    color: #3366ff;
    margin-bottom: 10px;
}

.contact-form {
    flex-basis: 45%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 15px 30px;
    background-color: #ffa69e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #2850d9;
}


/* Responsive Styling */

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info-boxes,
    .contact-form {
        flex-basis: 100%;
    }
    .contact-info-boxes {
        grid-template-columns: 1fr;
    }
}


/* Newsletter Section */

.newsletter {
    padding: 80px 40px;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    color: #083e52;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.newsletter h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    border-radius: 5px;
}

.newsletter p {
    color: #616161;
    margin-bottom: 20px;
}

.newsletter input {
    padding: 15px;
    width: 60%;
    border-radius: 30px;
    border: 2px solid #056305;
    margin-right: 10px;
}

.newsletter button {
    background-color: #107a8b;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter button:hover {
    background-color: #ff7f81;
    transform: scale(1.05);
}


/* Hero Section Image */

.hero-image img {
    max-width: 550px;
    height: auto;
}


/* FAQ Section Image */

.faq-image img {
    width: 100%;
}


/* Center the heading */

.heading {
    text-align: center;
    margin-bottom: 40px;
}

.sub-heading {
    font-size: 14px;
    color: #0b0b0f;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0a397e;
    margin: 0;
}


/* Flexbox for single row layout */

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Allows wrapping if there are too many members */
    gap: 20px;
    /* Space between members */
}


/* Styling for the member card */

.member {
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    position: relative;
    padding: 20px 0;
    width: 180px;
    /* Fixed width for uniformity */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}


/* Styling for member image */

.member-img {
    position: relative;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member:hover .member-img {
    transform: scale(1.05);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* Member info styling */

.member-info h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 5px;
}

.member-info span {
    font-style: italic;
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.member-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}


/* Responsive design adjustments */

@media (max-width: 768px) {
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    .member {
        width: 100%;
        max-width: 250px;
    }
}


/* Blog Section Styling */

.blog {
    padding: 80px 40px;
    background-color: #eef7f8;
    /* Light mint background */
    text-align: center;
}

.blog h2 {
    font-size: 2.5rem;
    color: #083e52;
    /* Dark teal to match the previous sections */
    margin-bottom: 40px;
    font-weight: 700;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.blog-post {
    background-color: #ffffff;
    /* White card background for clean look */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    /* Consistent card width */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Ensuring all images are the same size */

.foto-image img {
    width: 100%;
    height: 180px;
    /* Fixed height for uniform image size */
    border-radius: 10px;
    object-fit: cover;
    /* Ensure the image doesn't stretch */
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 1.5rem;
    color: #107a8b;
    /* Softer teal color for heading */
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-post p {
    font-size: 1rem;
    color: #555;
    /* Soft gray for readability */
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #ff7f81;
    /* Coral color to match the previous sections */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff4a4f;
    /* Darker coral on hover */
}


/* Responsive design for smaller screens */

@media (max-width: 768px) {
    .blog-posts {
        flex-direction: column;
        align-items: center;
    }
    .blog-post {
        width: 100%;
        max-width: 100%;
    }
}

footer {
    background-color: #083e52;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    max-width: 600px;
    text-align: left;
    /* Make sure the left section text is left-aligned */
}

.footer-right {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    /* Align the right section to the left */
}

.blynk-integration h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #c3f5d5;
}

.blynk-integration p {
    color: #e0f4f8;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    /* Ensure paragraphs are also left-aligned */
}

.footer-app-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.footer-app-buttons a img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-app-buttons a:hover img {
    transform: scale(1.05);
}

footer p {
    color: #c3f5d5;
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-left,
    .footer-right {
        text-align: center;
        max-width: 100%;
    }
    .footer-app-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .footer-app-buttons a img {
        width: 120px;
    }
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image img {
        max-width: 80%;
    }
    .value-image img {
        max-width: 60%;
    }
    .features-list,
    .values-list,
    .team-members,
    .blog-posts {
        flex-direction: column;
    }
}

/* Hide the mobile title on desktop and show only on mobile */
.mobile-title {
    display: none;
    text-align: center;
    font-size: 0.5rem;
    color: #fff;
    background-color: #005f6a;
    padding: 10px;
    margin: 0;
}

/* Show the title on small screens */
@media (max-width: 768px) {
    .mobile-title {
        display: block;
    }
    
}

/* Kegiatan Section */
.kegiatan {
    padding: 80px 40px;
    text-align: center;
    background-color: #f6f5f7;
    margin-top: 40px;
  }
  
  .kegiatan h2 {
    font-size: 2.5rem;
    color: #083e52;
    margin-bottom: 20px;
  }
  
  .kegiatan p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .kegiatan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .kegiatan-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .kegiatan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .kegiatan-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .kegiatan-item h3 {
    font-size: 1.5rem;
    color: #083e52;
    margin-bottom: 10px;
  }
  
  .kegiatan-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  