body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #f9f9f9;
        margin: 0;
        padding: 40px 20px;
    }

    h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        color: #333;
    }

    .team-row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-card {
        width: 100%;
        height: 350px;
        perspective: 1000px;
    }

    .card-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s;
        cursor: pointer;
    }

    .team-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    .card-front,
    .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .card-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-back {
        background-color: #fff;
        color: #333;
        transform: rotateY(180deg);
        padding: 20px;
        text-align: center;
    }

    .card-back h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
        color: #212529;
    }

    .card-back p {
        font-size: 0.9rem;
        margin: 8px 0;
        line-height: 1.4;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        margin: 0 8px;
        color: #007bff;
        font-size: 18px;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #0056b3;
    }





    body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #f5f5f5;
        margin: 0;
        padding: 0;
    }

    .testimonial-section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: auto;
    }

    .testimonial-section span {
        display: inline-block;
        color: #1dbf73;
        font-weight: 600;
        border: 1px solid #1dbf73;
        padding: 4px 10px;
        border-radius: 20px;
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

    .testimonial-section h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #111;
    }

    .testimonial-section p.subtitle {
        color: #555;
        max-width: 650px;
        margin: auto;
        font-size: 0.95rem;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .testimonial-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-content {
        padding: 30px 25px 15px;
        font-size: 1rem;
        color: #333;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        border-top: 1px solid #eee;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }

    .testimonial-author-info h4 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: bold;
        color: #111;
    }

    .testimonial-author-info span {
        font-size: 0.85rem;
        color: #1dbf73;
    }





    .subscribe-section {
        background: linear-gradient(135deg, #1dbf73, #119f4d);
        padding: 60px 20px;
        border-radius: 15px 15px 0 0;
        color: #fff;
        max-width: 1200px;
        margin: auto;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }

    .subscribe-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .subscribe-title {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
    }

    .subscribe-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        gap: 15px;
    }

    .subscribe-form input {
        padding: 12px 15px;
        border-radius: 8px;
        border: none;
        outline: none;
        font-size: 1rem;
    }

    .subscribe-form input::placeholder {
        color: #666;
    }

    .subscribe-btn {
        background-color: #fff;
        color: #16c272ff;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .subscribe-btn:hover {
        background-color: #0fc36fff;
        color: #e6ffe6;

    }




    .team-hero {
        position: relative;
        background-image: url("img/Contact.jpg");
        background-size: cover;
        background-position: center;
        min-height: 300px;
        display: flex;
        align-items: center;
        color: white;
    }

    .team-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        /* Dark overlay */
    }

    .team-hero .container {
        position: relative;
        z-index: 1;
    }

    .breadcrumb-link {
        color: #f8f9fa;
        font-weight: 500;
    }

    .breadcrumb-link:hover {
        color: #a8ffae;
    }

    .team-hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url("img/Contact.jpg");
        /* replace with your image path */
        background-size: cover;
        background-position: center;
        padding: 100px 0;
        min-height: 200px;
        position: relative;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        border-bottom: 4px solid #28a745;
    }

    .team-title {
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .breadcrumb {
        background: transparent;
    }

    .breadcrumb-link {
        color: #ffffffcc;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-link:hover {
        color: #fff;
    }







    .team-row {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        padding: 2rem;
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    }

    .team-card {
        width: 260px;
        height: 360px;
        perspective: 1000px;
    }

    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
        box-shadow: 0 10px 20px rgba(117, 230, 143, 0.15);
        border-radius: 20px;
    }

    .team-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    .card-front,
    .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
    }

    .card-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .card-back {
        background: #1e1e2f;
        color: #fff;
        transform: rotateY(180deg);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-back h4 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-family: 'Poppins', sans-serif;
        color: #ffc107;
    }

    .card-back p {
        font-size: 1rem;
        margin: 0.3rem 0;
        font-family: 'Open Sans', sans-serif;
    }

    .social-icons {
        margin-top: 1rem;
    }

    .social-icons a {
        color: #fff;
        background: #3b3f5c;
        margin: 0 5px;
        padding: 10px;
        border-radius: 50%;
        transition: 0.3s ease-in-out;
        display: inline-block;
    }

    .social-icons a:hover {
        background: #ffc107;
        color: #000;
    }









    /* ✅ CSS */
    .team-hero {
        background-image: url('img/team-banner.jpg');
        /* Replace with your actual image path */
        background-size: cover;
        background-position: center;
        height: 60vh;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }

    .team-hero .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        /* Dark transparent overlay for contrast */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .team-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        font-family: 'Poppins', sans-serif;
    }








    .card-back {
        background: #d0f5d8;
        /* Light green */
        color: #000;
        /* Black text for contrast */
        transform: rotateY(180deg);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }







    .card-back h4 {
        color: #006400;
        /* Dark green for headings */
    }

    .social-icons a {
        color: #fff;
        background: #28a745;
        /* Bootstrap green */
    }

    .social-icons a:hover {
        background: #218838;
        color: #fff;
    }




    .card-back p {
        font-size: 1.1rem;
        /* Increase from 1rem to 1.1rem */
        margin: 0.4rem 0;
        font-family: 'Open Sans', sans-serif;
        color: #333;
        /* Darker text for better readability on light green */
        line-height: 1.6;
        /* Improve spacing between lines */
        text-align: center;
        /* Center the paragraph text */
    }






    .team-hero {
        background-image: url('img/team-banner.jpg');
        /* ✅ Replace with your image path */
        background-size: cover;
        background-position: center;
        height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        border-radius: 12px;
    }

    .team-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* ✅ Dark overlay */
        z-index: 1;
    }

    .team-title {
        position: relative;
        z-index: 2;
        color: #fff;
        font-size: 4rem;
        font-weight: 700;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }









    .team-hero {
        background-image: url("img/bg-pheader.jpg");
        /* ✅ Replace with your image path */
        background-size: cover;
        background-position: center;
        height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        border-radius: 12px;
    }

    .team-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* ✅ Dark overlay */
        z-index: 1;
    }

    .team-title {
        position: relative;
        z-index: 2;
        color: #fff;
        font-size: 4rem;
        font-weight: 700;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }






    body,
    .site-content {
        background-color: #efefef;
    }

    #site-logo a img {
        width: 230px;
    }

    #site-logo {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .header-style-1 .header-topbar,
    .header-style-4 .header-topbar {
        background: #1dbf01;
    }

    .header-topbar {
        border-color: #1dbf01;
    }

    #royal_preloader.royal_preloader_logo .royal_preloader_percentage {
        font-family: Roboto;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 2px;
        line-height: 40px;
        text-align: center;
        text-transform: none;
    }

    /* .page-header {
        background-image: url("assets/img/bg-pheader.jpg");
    } */


    /* Responsive adjustments */
    @media (max-width: 768px) {
        .team-title {
            font-size: 2.5rem;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .team-title {
            font-size: 2.5rem;
        }
    }





    @media (max-width: 576px) {
        .team-title {
            font-size: 1.8rem;
            text-align: center;
        }

        .breadcrumb {
            justify-content: center;
            font-size: 0.9rem;
        }
    }




    @media (min-width: 768px) {
        .subscribe-container {
            flex-direction: row;
            justify-content: space-between;
        }

        .subscribe-title {
            flex: 1;
            text-align: left;
            font-size: 2.2rem;
        }

        .subscribe-form {
            flex: 1;
            flex-direction: column;
            max-width: none;
        }
    }


    @media (min-width: 600px) {
        .testimonial-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 900px) {
        .testimonial-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Responsive Grid */
    @media (min-width: 576px) {
        .team-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 768px) {
        .team-row {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 992px) {
        .team-row {
            grid-template-columns: repeat(4, 1fr);
        }
    }