@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@400,500,600,700&display=swap');

            :root {
                --primary-yellow: #C6FF00;
                --primary-dark: #e6c209;
                --cream-bg: #fffcf0;
                --card-bg: #fff9e6;
                --text-primary: #1a1a1a;
                --text-secondary: #555;
                --gradient-start: #F8FFDF;
                --gradient-middle: #F2FFC5;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family:  'Segoe UI', sans-serif;
                background: white;
                display: flex;
                flex-direction: column;
                min-height: 100vh;
                overflow-x: hidden;
            }

            /* Smooth scrolling */
            html {
                scroll-behavior: smooth;
            }

            /* Enhanced Navigation */
            .navbar {
                padding: 0.5rem 2rem;
                background-color: white;
                transition: all 0.3s ease;
                z-index: 1900;
            }

            @media (max-width: 576px) {
                .navbar {
                    padding: 0 0;
                }
            }

            .navbar-brand svg {
                width: 70px;
                height: 70px;
                transition: transform 0.3s ease;
            }

            .navbar-brand:hover svg {
                transform: rotate(15deg) scale(1.1);
            }



            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }

            .nav-link {
                color: var(--text-primary) !important;
                font-weight: 500;
                margin: 0 0.75rem;
                position: relative;
                transition: color 0.3s ease;
                padding: 0.5rem 0.75rem !important;
            }




            /* Enhanced Buttons */
            .btn-warning,
            .btn-order,
            .btn-cta,
            .btn-register-now,
            .btn-start-now {
                background: linear-gradient(135deg, #C6FF00 0%, #C6FF00  100%);
                border: none;
                color: var(--text-primary);
                font-weight: bold;
                padding: 0.40rem 2rem;
                border-radius: 50px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(255, 214, 10, 0.3);
                position: relative;
                overflow: hidden;
                z-index: 1;
                font-size: 22px;
            }

            .btn-warning::before,
            .btn-order::before,
            .btn-cta::before,
            .btn-register-now::before,
            .btn-start-now::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #C6FF00  0%, var(--primary-yellow) 100%);
                transition: left 0.3s ease;
                z-index: -1;
            }

            .btn-warning:hover::before,
            .btn-order:hover::before,
            .btn-cta:hover::before,
            .btn-register-now:hover::before,
            .btn-start-now:hover::before {
                left: 0;
            }

            .btn-warning:hover,
            .btn-order:hover,
            .btn-cta:hover,
            .btn-register-now:hover,
            .btn-start-now:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
                color: var(--text-primary);
            }




/*--------------------------- Hero Section -----------------------------*/

/* 1. Ensure the parent container can hold the overlay */
.carousel-item {
    position: relative;
    overflow: hidden;
}

/* 2. Style the actual image */
.hero-img {
    display: block;
    height: 35rem;
    width: 25rem;
    object-position: center;
}

/* 3. Create the dark overlay using a pseudo-element */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.carousel-caption {
    z-index: 2;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 200px;
  }

.carousel-caption h5 {
  color: white;
  font-size: 50px;
}

@media (max-width: 576px) {
    .hero-img {
        height: 18rem;
    }

    .carousel-caption {
        margin-bottom: 80px;
    }
    .carousel-caption h5 {
        font-size: 25px;
    }
    .carousel-caption p {
        font-size: 8px;
    }
}
/*-------------------- hero section css end ------------------------*/





/*---------------------- About Section Homepage ------------------------*/
/*---------------------- Our history, Marshfield Today, Our vision ------------------------*/
        .about-section-container {
            /* Sets the default font for the page */
            padding: 1rem;
            font-family: 'Open Sans', sans-serif;
            background-color: #f8f9fa;
        }

        h1, h2, h3, h4, h5, h6 {
            /* Sets the heading font */
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #343a40; /* Dark gray for text */
        }

        .sub-heading {
            color: #056991; /* Bootstrap's primary blue color */
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* Custom class for the main heading */
        .main-heading {
            font-size: 2rem;
        }

        /* This wrapper gives the white background, shadow, and rounded corners */
        .about-content-wrapper {
            background-color: #ffffff;
            border-radius: 0.5rem; /* 8px rounded corners */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow-x: hidden; /* Prevents scrollbar during animation */
        }

        /* Ensures the image is responsive and has rounded corners */
        .about-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.5rem;
            min-height: 300px;
        }

        /* Mobile Responsive Font Sizes */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.2rem;
                text-align: center; /* Center heading on mobile */
            }
            .mobile-main-heading {
                font-size: 2rem;
            }
            .sub-heading {
                text-align: center; /* Center sub-heading on mobile */
            }

            .about-section-container{
                padding: 0;
            }
            .about-hero-image {
            width: 100%;
            height: 5rem;
            border-radius: 0.5rem;
        }

            .about-p{
                font-size: small;
                text-align: justify;
            }
        }

        /* --- Animation Styles --- */

        /* This is the initial state for all animated columns */
        .animated-col {
            opacity: 0; /* Start hidden */
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Initial state for items sliding from the left */
        .slide-from-left {
            transform: translateX(-50px);
        }

        /* Initial state for items sliding from the right */
        .slide-from-right {
            transform: translateX(50px);
        }

        /* This class is added by JavaScript when the element is in view */
        .animated-col.visible {
            opacity: 1;
            transform: translateX(0);
        }
/*------------------ About Section Css end --------------------*/
/*------------------ Our history, Marshfield Today, Our vision end ------------------------*/



/* ----------------- Service Section Start ---------------------- */

        .service-headline{
            display: flex;
            flex-direction: column; /* stack h2 & h1 vertically */
            justify-content: flex-start; /* align to top */
            align-items: center; /* horizontal center */
            margin-top: 20px;
            margin-bottom: 30px;

        }

        /* Custom Styles to match the image precisely */
        .service-section-container {

            justify-content: center;
            align-items: center;
            font-family: 'Inter', sans-serif;
        }

        .service-card-grid-container{
                  /* Enable grid layout */
            grid-template-columns: repeat(4, 1fr); /* 3 equal columns */
            gap: 5px;                         /* Space between columns */
            padding: 15px;
            justify-items: center;

        }

                /* 3. Optional: Card Hover Effect */
        .service-card-body {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card-body:hover {
            transform: translateY(-5px); /* Lifts the card slightly */
            box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Adds a shadow */
        }

        .card-body h5 {
            font-size: 18px;
            text-align: center;
        }


        @media (max-width: 576px) {
          .card-body h5 {
            font-size: 12px;
          }
        }



        .service-card-image {
            height: 220px;      /* Adjust this value based on your preference */
            width: 100%;        /* Full width of the card */
            object-fit: cover;  /* Crops the image cleanly if ratios differ */
        }

        /* Tablet view: 2 columns */
        @media (max-width: 992px) {
            .service-card-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile view: 1 column */
        @media (max-width: 576px) {


            .service-card-grid-container {
                grid-template-columns: 1fr;
            }

            .service-headline {
                margin-bottom: 0;
            }
            .service-headline h1{
                margin-bottom: 0;
            }



            .service-card-image img{
                height: 100px;
                margin-right: 10px;
                overflow: hidden;
                object-fit: cover;
            }
        }

/* ----------------- Service Section end ---------------------- */



/*---------------------------- Best collaboration and communication Section CSS Start -------------------------*/

/* General Styling & Background */
.info-section {
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Text Styling */
.text-block h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    font: bold;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Carousel Layout (Desktop: Three Images) */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space for indicators */
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* On desktop, we want to show all 3 images */
    gap: 20px; /* Space between images */
    justify-content: center;
}

.carousel-slide {
    min-width: calc(33.333% - 13.333px); /* Approx. 1/3 width minus gap allowance */
    max-width: 350px; /* Max size for the card */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: none; /* Hide all slides by default for JS to control */
}

@media (min-width: 900px) {
    .carousel-wrapper {
        display: flex; /* Show all three images */
        transform: translateX(0) !important; /* Override JS transform on desktop */
    }

    .carousel-slide {
        display: block;
        flex: 1; /* Equal width for all three */
    }

    .carousel-controls {
        display: none !important; /* Hide navigation buttons/dots on desktop */
    }
}

/* Mobile/Slider View (1 Image at a time) */
@media (max-width: 899px) {
    .carousel-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
    }
    .carousel-slide {
        min-width: 100%; /* Each slide takes full width for sliding */
        margin: 0 10px; /* Add margin for breathing room */
        box-sizing: border-box;
    }

    /* Only the active slide is shown initially (JS handles the rest) */
    .carousel-slide.active-slide {
        display: block;
    }
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Controls (Buttons and Indicators) */
.carousel-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure controls are centered within container */
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5); /* Outer ring shadow for the indicator */
}

/* Optional: Hide buttons or style them */
.prev-btn, .next-btn {
    display: none; /* Hidden for now as the image only shows dots */
    /* To show buttons, use:
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    */
}
/*---------------------------- Best collaboration and communication Section CSS end -------------------------*/




/*---------------------------- Best collaboration and communication Section CSS Start -------------------------*/

/* General Styling & Background */
.last-section {
    background: white; /* Adjusted for a blue gradient look */
    color: white;
    padding: 60px 20px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Text Styling */
.text-block h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: black;
    font: bold;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
    color: black;
}

/* Carousel Layout (Desktop: Three Images) */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space for indicators */
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* On desktop, we want to show all 3 images */
    gap: 20px; /* Space between images */
    justify-content: center;
}

.carousel-slide {
    min-width: calc(33.333% - 13.333px); /* Approx. 1/3 width minus gap allowance */
    max-width: 350px; /* Max size for the card */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: none; /* Hide all slides by default for JS to control */
}

/* Only show one image on desktop *if* we're using the JS slider for 1 at a time.
   For the desktop layout in the image (3 visible), the JS needs to be adapted or
   we rely solely on CSS Grid/Flexbox for desktop and JS for mobile slider.

   The code below implements a 3-image-at-a-time view on desktop, and a 1-image-at-a-time slider on mobile.
*/
@media (min-width: 900px) {
    .carousel-wrapper {
        display: flex; /* Show all three images */
        transform: translateX(0) !important; /* Override JS transform on desktop */
    }

    .carousel-slide {
        display: block;
        flex: 1; /* Equal width for all three */
    }

    .carousel-controls {
        display: none !important; /* Hide navigation buttons/dots on desktop */
    }
}

/* Mobile/Slider View (1 Image at a time) */
@media (max-width: 899px) {
    .carousel-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
    }
    .carousel-slide {
        min-width: 100%; /* Each slide takes full width for sliding */
        margin: 0 10px; /* Add margin for breathing room */
        box-sizing: border-box;
    }

    /* Only the active slide is shown initially (JS handles the rest) */
    .carousel-slide.active-slide {
        display: block;
    }
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Controls (Buttons and Indicators) */
.carousel-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure controls are centered within container */
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5); /* Outer ring shadow for the indicator */
}

/* Optional: Hide buttons or style them */
.prev-btn, .next-btn {
    display: none; /* Hidden for now as the image only shows dots */
    /* To show buttons, use:
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    */
}


@media (max-width: 576px) {
    /* Text Styling */
.text-block h1 {
    font-size: 2rem;
    /* font-weight: 700; */
    color: black;
    /* font: bold; */
    margin-bottom: 20px;
}

/* .text-block p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
    color: black;
} */
}

/*---------------------------- Best collaboration and communication Section CSS end -------------------------*/





    /* Footer Class */
    .footer-social-link {
        font-size: 1.25rem; /* Makes icons a little larger */
        transition: color 0.15s ease-in-out;
    }

    .footer-social-link:hover {
    color: #a9a9a9; /* A lighter gray on hover */

    }


/* ------------------------------------------------------------------------------------------------------------------ */
/* --------------------------------------------Index/Home page CSS END---------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------ */




/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- About Us Page CSS Start --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */


/* ---------------------------------- all Banner CSS Start -------------------------------------------- */
        .page-banner {
            /* !!! IMPORTANT: Replace with your actual image path !!! */
             /* Placeholder image, replace this! */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 300px; /* Adjust height as needed */
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            /* Optional: Add a subtle linear gradient overlay for better text contrast */
            position: relative; /* Needed for pseudo-element overlay */
        }
        .page-banner h1{
            margin-left: 150px
        }

        .about-page-banner {
            /* !!! IMPORTANT: Replace with your actual image path !!! */
             /* Placeholder image, replace this! */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 300px; /* Adjust height as needed */
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            /* Optional: Add a subtle linear gradient overlay for better text contrast */
            position: relative; /* Needed for pseudo-element overlay */
        }
        .about-page-banner h1{
            margin-left: 150px
        }

        /* Overlay for better text readability */
        .page-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); /* Adjust transparency as needed */
            z-index: 1; /* Place overlay behind text but in front of background image */
        }

        .page-banner .container-fluid {
            position: relative; /* To make text appear above the pseudo-element overlay */
            z-index: 2;
        }
        .about-page-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); /* Adjust transparency as needed */
            z-index: 1; /* Place overlay behind text but in front of background image */
        }

        .about-page-banner .container-fluid {
            position: relative; /* To make text appear above the pseudo-element overlay */
            z-index: 2;
        }

        .slide-up {
            transform: translateY(50px);
        }

        /* --- NEW --- Initial state for items sliding from above */
        .slide-down {
            transform: translateY(-50px);
        }

        /* This class is added by JavaScript when the element is in view */
        .animated-col.visible {
            opacity: 1;
            transform: translate(0, 0); /* Changed to general transform */
        }

        /* --- NEW --- Styles for the Team Section */
        .team-section {
            padding-top: 2rem; /* Add some space above the section */
        }

        .team-card {
            background-color: #ffffff;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden; /* Ensures image corners are rounded */
            text-align: center;
        }

        .team-card-img {
            width: auto;
            height: 20rem;
            object-fit: cover;
            /* Optional: Ensure smooth transition for the effect */
            transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
        }

        /* Hover Effect */
        .team-card-img:hover {
            /* 1. Scale/Zoom Effect: Increases the size by 5% */
            transform: scale(1.05);

            /* 2. Brightness Effect: Makes the image slightly brighter */
            filter: brightness(1.1);

            /* 3. Optional: Add a subtle shadow for depth */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .team-card-body {
            padding: 1.5rem;
        }

        .team-card-body h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .team-card-body p {
            color: #000000;
            font-size: 0.95rem;
            line-height: 1.6;
        }


        @media (max-width: 576px) {
                .page-banner h1{
                    margin-left: 90px;
                }
                .about-page-banner .container-fluid {
                    justify-content: flex-start !important;
                    padding-left: 1rem !important;
                    padding-right: 1rem !important;
                }
                .about-page-banner h1 {
                    margin-left: 90px;
                    font-size: 2rem;
                }

                /* Fix all mobile content sections */
                .about-content-wrapper {
                    padding-left: 1rem !important;
                    padding-right: 1rem !important;
                }

                /* Hide horizontal scroll */
                body, html {
                    overflow-x: hidden !important;
                }
            /* } */
        }

/* ---------------------------------------------Banner CSS End ----------------------------------------------- *//* ------------------------------------------------------------------------------------------------------------------ */

@media(max-width: 576px){
    .aboutUs-last-text p{
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: justify;
    }
}


/* ---------------------------------------------Director's Card CSS start ----------------------------------------------- *//* ------------------------------------------------------------------------------------------------------------------ */

/* Custom CSS to match the image style */
.about-directors-section {
    background-color: #f8f9fa; /* Light background color */
}

.director-card {
    /* Style for the card background and shadow */
    border-radius: 10px; /* Rounded corners for the card */
    max-width: 400px; /* Optional: Constrain max width for better spacing */
    margin: 0 auto;
}

.director-img {
    /* Image container style */
    width: 100%;
    height: auto; /* Allow image to scale */
    display: block;
    padding: 20px 20px 0 20px; /* Inner spacing around the image */
    border-radius: 10px 10px 0 0; /* Match card border radius */
}

/* Ensure the image content fits within the rounded frame */
.director-img img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* Slight inner rounding on the image itself */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.director-name {
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 5px;
}

.director-bio {
    font-size: 0.95em;
    line-height: 1.4;
    padding: 0 10px;
}

/* ---------------------------------------------Director's Card CSS end ----------------------------------------------- *//* ------------------------------------------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- About Us Page CSS Ends --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */







/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Services Page CSS Start --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */




/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Services Page CSS End --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */
















/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Team Page CSS End --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */

.team-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    padding-right: 92px;
    padding-left: 92px;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Container for all member cards */
.members-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* Styling for an individual member card */
.member-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Styling for the avatar/image container */
.member-avatar {
    flex-shrink: 0; /* Prevent the image from shrinking */
    width: 100px; /* Fixed width for the image */
    height: 100px; /* Fixed height for the image */
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide overflow for circular shape */
    border: 1px solid #ddd; /* Light border */
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
    display: block;
}

/* Styling for member details text */
.member-details {
    flex-grow: 1; /* Allow details to take remaining space */
}

.member-details h3 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.member-details p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #666;
}

.member-details .role {
    font-weight: normal;
    color: #056991; /* Red color for roles */
    margin-bottom: 10px;
}

/* Styling for the View Profile button */
.view-profile-btn {
    display: inline-block;
    background-color: #056991; /* Red button background */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.view-profile-btn:hover {
    background-color: #172651; /* Darker red on hover */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .team-container{
        /* padding: 20px; */
        padding-left: 20px;
        padding-right: 20px;
    }
    .members-container {
        grid-template-columns: 1fr;
        margin-top: 10px;
        margin-bottom: 20px;
        gap: 10px;
    }
    .member-card {
        flex-direction: column; /* Stack image and text vertically */
        text-align: start;
        align-items: start;
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
        margin-bottom: 10px;
    }
    .member-avatar {
        margin-bottom: 10px; /* Add space below image */
    }
}








/* --- Default (Desktop) Table Style --- */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.responsive-table th, .responsive-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}
.responsive-table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}
.responsive-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* --- Mobile-Specific Styles (max-width: 600px) --- */
@media only screen and (max-width: 600px) {
    /* Force table to not be like a table */
    .responsive-table, .responsive-table tbody, .responsive-table tr, .responsive-table td, .responsive-table th {
        display: block;
    }

    /* Hide table headers (but not display: none;, just move to the side) */
    .responsive-table thead {
        display: none;
    }

    /* Make each row look like a card */
    .responsive-table tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    /* Make cells act like table headers/data */
    .responsive-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%; /* Space for the label */
        text-align: right;
        word-break: break-all;
    }

    /* Add labels/headers to cells before the actual data */
    .responsive-table td:before {
        /* Set the data-label attribute to use as the label text */
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #333;
        text-align: left;
    }
    .responsive-table td:last-child {
        border-bottom: 0;
    }
}


/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Team Page CSS End --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */











/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Contact Page CSS Start --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */

/* -------------------- contact Form CSS start ---------------------------------- */

        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: flex-start;
            max-width: 1200px;
            width: 100%;
            margin-top: 5rem;
            margin-bottom: 5rem;
            margin-left: 10rem;
        }

        .contact-form-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
            overflow: hidden;
            flex-shrink: 0;
            flex-basis: 500px;
            flex-grow: 1;
        }

        .contact-form-header {
            background-color: #3f51b5;
            color: white;
            padding: 25px 20px;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
        }

        .form-content {
            padding: 30px;
        }

        .form-content h3 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #333;
            font-size: 18px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group textarea {
            width: calc(100% - 20px);
            padding: 12px 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
            transition: border-color 0.3s ease;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group input[type="tel"]:focus,
        .form-group textarea:focus {
            border-color: #3f51b5;
            outline: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-button {
            width: 100%;
            padding: 15px;
            background-color: #3f51b5;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-button:hover {
            background-color: #303f9f;
        }

        /* Responsive adjustments */
        @media (max-width: 960px) { /* This breakpoint (960px) is roughly 500 + 400 + gap. */
            .contact-section {
                flex-direction: column;
                align-items: center;

            }
            .contact-form-container, .contact-info-container {
                max-width: 90%; /* Make them take up more width when stacked */
                flex-basis: auto; /* Reset flex-basis when stacked */
            }
        }

        @media (max-width: 576px) {
            .contact-section{
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .contact-form-header {
                font-size: 20px;
                padding: 20px 15px;
            }
            .form-content {
                padding: 20px;
            }
            .form-content h3 {
                font-size: 16px;
            }
            .form-group input, .form-group textarea {
                padding: 10px;
                font-size: 14px;
            }
            .submit-button {
                padding: 12px;
                font-size: 16px;
            }
        }

/* -------------------- contact Form CSS end ---------------------------------- */



/* -------------------- contact information CSS start ---------------------------------- */
.contact-info-container {

                width: 100%;
                max-width: 400px;
                flex-shrink: 0;
                flex-basis: 400px;
                flex-grow: 1;
                padding-top: 20px;
                /* align-items: center;
                justify-items: center;
                justify-content: center; */
            }

            .info-item {
                display: flex;
                align-items: center;
                margin-bottom: 25px;
            }

            .info-item:last-child {
                margin-bottom: 0;
            }

            .info-icon {
                font-size: 28px;
                color: #3f51b5;
                margin-right: 15px;
                width: 35px;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
            }


            .info-icon img {
                width: 100%;
                height: auto;
            }


            .info-details {
                display: flex;
                flex-direction: column;
            }

            .info-details h4 {
                margin: 0;
                font-size: 20px;
                color: #333;
                margin-bottom: 5px;
                font-weight: bold; /* ADDED: Makes headings bold */
            }

            .info-details p, .info-details a {
                margin: 0;
                font-size: 16px;
                color: #555;
                line-height: 1.4;
                text-decoration: none;
            }

            /* Style links specifically to be blue */
            .info-details a {
                color: #3f51b5;
            }

            .info-details a:hover {
                text-decoration: underline;
            }

            /* Responsive adjustments */
            @media (max-width: 960px) {
                 .contact-info-container {
                    /* Remove top padding when stacked */
                    padding-top: 0;
                 }
            }

            @media (max-width: 576px) {
                .contact-info-container {
                    padding: 0;
                    padding-right: 20px;
                    padding-left: 20px;
                }
                .info-item {
                    margin-bottom: 20px;
                }
                .info-icon {
                    font-size: 24px;
                    margin-right: 10px;
                    width: 30px;
                }
                .info-details h4 {
                    font-size: 18px;
                }
                .info-details p, .info-details a {
                    font-size: 14px;
                }
            }
/* -------------------- contact information CSS end ---------------------------------- */

/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Contact Page CSS Start --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */







/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Project Page CSS Start --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */

        .project-page-container {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f8f9fa; /* Light background for the page */
            color: #000000;
        }

        /* Header Section Styles */
        .project-page-header {
            text-align: center;
            padding: 40px 20px 20px 20px;
        }

        .project-page-header .company-name {
            color: #214385;
            font-weight: 600;
            font-size: 1.3em;
            margin-bottom: 3px;
        }

        .project-page-header .section-title {
            font-size: 2.5em;
            font-weight: 700;
            margin-top: 0;
        }

        /* Projects Grid Section Styles */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 20px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects-grid a{
          text-decoration: none;
        }

        .project-item {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .project-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            display: block;
        }

        .project-item .project-title {
            padding: 20px;
            font-size: 1.1em;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .project-page-header .section-title {
                font-size: 2em;
            }

            .projects-grid {
                padding: 20px;
            }

            .project-item img {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }




/* ------------------------------------------------------------------------------------------------------------------ */
/*----------------------------------- Projects Page CSS End --------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------ */
