﻿
body {
    font-family: Arial, sans-serif;
}
.about-section {
    background-image: url('/images/beautiful-view-aigua-blava-bay-captured-spain.jpg');
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}
@media (max-width: 767px) {
    .about-section {
        min-height: 70vh;
    }
}
        .about-section .overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

    .z-2 {
        z-index: 2;
        position: relative;
    }


    .btno {
        border: solid;
        border-radius: 23px;
        border-color: darkgray;
        background-color: beige;
        text-align: center;
        color: black;
        width: 156px;
        height: 39px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }


        .btno:hover {
            background-color: #333;
            color: white;
        }

    .display-4 {
        font-size: calc(1.475rem + 2.7vw);
        font-weight: 300;
        line-height: 1.2;
        padding-bottom: 33px;
    }

    .btn_name {
        font-weight: 500;
    }

    .ff {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .btno:hover .ff {
        transform: translateX(4px); /* subtle animation */
    }

    .about-us {
        padding: 60px 20px;
        background-color: #fff;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .about-image {
        flex: 1 1 50%;
    }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

    .about-content {
        flex: 1 1 50%;
    }

    .subtitle {
        font-family: 'Brush Script MT', cursive;
        color: #e76f51;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .about-content h2 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #333;
    }

    .description {
        font-size: 1rem;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .cta-button {
        display: inline-block;
        background-color: #e76f51;
        color: #fff;
        padding: 12px 24px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .cta-button:hover {
            background-color: #d45b3d;
            transform: scale(1.05);
        }

    /* Responsive */
    @media (max-width: 768px) {
        .about-container {
            flex-direction: column;
            text-align: center;
        }
    }
        .about-image,
        .about-content {
            flex: 1 1 100%;
        }
    
    /* core values */
    .offerings-section1 {
        text-align: center;
        padding: 60px 20px;
        background-color: #f4f6f8; /* Optional: light section background */
    }

    .offerings-title1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 40px;
    }

    /* Cards Grid */
    .offerings-container1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Card Style */
    .offering-card1 {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        padding: 30px 20px;
        width: 300px;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

        /* Hover Effects */
        .offering-card1:hover {
            border-color: #e75c3c;
            background-color: #fff5f2;
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(231, 92, 60, 0.15);
        }

    /* Icon Container */
    .icon-wrapper1 {
        margin-bottom: 20px;
    }

    .icon-circle1 {
        border: 2px solid #dcdcdc;
        border-radius: 50%;
        padding: 15px;
        display: inline-block;
        transition: border-color 0.3s;
    }

        .icon-circle1:hover {
            border-color: #e75c3c;
        }


    /* Icon Image */
    .icon {
        width: 48px;
        height: 48px;
    }

    /* Card Title */
    .card-title1 {
        font-size: 1.2rem;
        font-weight: bold;
        color: #2e2e2e;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    /* Card Description */
    .card-description1 {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
    }

    /* Responsive Tweaks */
    @media (max-width: 960px) {
        .offering-card1 {
            width: 45%;
        }
    }

    @media (max-width: 640px) {
        .offering-card1 {
            width: 100%;
        }
    }
    /*team section*/
    .team-section {
        padding: 60px 20px;
        background-color: #f5f5f5;
        text-align: center;
    }

    .team-heading {
        font-size: 32px;
        font-weight: bold;
        color: #2c2c2c;
        margin-bottom: 50px;
    }

    .team-profile {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 40px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .team-image img {
        width: 180px;
        height: 180px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 40px;
        border: 4px solid #e0e0e0;
    }

    .team-info {
        flex: 1;
    }

    .team-role {
        color: #2f805c;
        font-size: 16px;
        font-style: italic;
        margin-bottom: 5px;
    }

    .team-name {
        font-size: 24px;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 15px;
    }

    .team-description {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }

    /* Responsive layout */
    @media (max-width: 768px) {
        .team-profile {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
    }
        .team-image img {
            margin-right: 0;
            margin-bottom: 20px;
        }

        .team-info {
            text-align: center;
        }
    }
    /*testimonial-section*/
    .team-section {
        padding: 40px;
        background: #2e2a2a5c;
        text-align: center;
    }

    .team-image img {
        width: 100%;
        border-radius: 10px;
    }

    .team-info {
        padding: 10px;
    }

    .team-swiper {
        width: 80%;
    }

    .swiper-slide {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .swiper {
        padding: 40px 0;
    }

    .mission-vision {
        background: linear-gradient(60deg, black, #dee8e3);
        padding: 60px 20px;
        font-family: 'Segoe UI', sans-serif;
    }

        .mission-vision .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-vision h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: #333;
        }

    .content-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        padding: 30px;
        flex: 1 1 400px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #007BFF;
        }

        .card p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }

        .card .icon {
            font-size: 40px;
            color: #007bff;
            margin-bottom: 15px;
            padding-left: 240px;
        }

    @media (max-width: 767px) {
        .card .icon {
            font-size: 40px;
            color: #007bff;
            margin-bottom: 15px;
            padding-left: 157px;
        }
    }
