.scroll-item {
    display: flex;
    /* Use flexbox for alignment */
    flex-direction: column;
    /* Arrange content vertically */
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    background: #195332;
    /* Gradient background */
    color: #fff;
    /* Text color */
    padding: 20px;
    text-align: center;
    /* Align text */
    white-space: nowrap;
    /* Prevent text wrapping */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Shadow effect */
    margin-top: 12px;
}

.scroll-item a {
    text-decoration: none;
    /* Remove underline from links */
    color: #fff;
    /* Link text color */
    display: flex;
    /* Use flexbox inside the link for better alignment */
    flex-direction: column;
    /* Icon and text in a column */
    align-items: center;
    /* Align center horizontally */
    gap: 10px;
    /* Add space between icon and text */
}

.scroll-item i {
    font-size: 2rem;
    /* Adjust icon size */
}


.scroll-container_custom {
    display: flex;
    overflow-x: auto;
    /* Allows horizontal scrolling */
    gap: 20px;
    /* Adds space between items */
    padding: 10px;

}

.scroll-container_custom::-webkit-scrollbar {
    height: 6px;
    /* Height of the scrollbar */
}

.scroll-container_custom::-webkit-scrollbar-thumb {
    background-color: #555;
    /* Color of the scrollbar thumb */
    border-radius: 4px;
    /* Rounded edges */
}

.scroll-item_custom {
    background: linear-gradient(to top, #1253ca, #1253ca57);
    /* Blue to red gradient */
    color: #fff;
    padding: 20px;
    text-align: center;
    white-space: nowrap;
    /* Prevents text from wrapping */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Shadow effect */
}


.slider-container {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

/*  img {
width: 100%;
height: auto;
display: block;
}
*/
/* Optional: Add styles for navigation buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.scroll_main_div {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    padding: 15px;
    height: 680px;
    overflow: auto;
}

.child_scroll_main_div {
    border: 1px solid orange;
    margin-top: 15px;
    border-radius: 10px;
}

#mainimgcenterdiv img {
    max-width: 100%;
    max-height: 600px;
    padding: 10px;

    /*    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.75);*/

    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.h4msg {
    color: black;
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 18px;

}

@media only screen and (max-width:650px) {

    .h4msg {
        color: black;
        font-size: 14px;
        line-height: 16px;
        text-align: justify;
        padding-bottom: 18px;

    }
}

/* Base background for the scrollbar track */
::-webkit-scrollbar {
    width: 10px;
    /* Adjust width */
    height: 10px;
    /* For horizontal scrollbars */

}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {

    border-radius: 10px;
    /* Rounded corners */
    border: 2px solid #f0f0f0;
    /* Add padding effect */
}


/* Scrollbar corner (optional, for overflow) */
::-webkit-scrollbar-corner {
    background: #f0f0f0;
    /* Same as the track background */
}

/* Firefox support */
* {
    scrollbar-width: thin;
    /* Thin scrollbar */

}


#titleTrack {
    /* border-left: 4px solid #1253ca; */
    /* border-right: 4px solid #1253ca; */
    border-bottom: 1px solid #076446;
    padding: 0px 12px;
    border-radius: 10px;
    font-size: 20px;
}

.scrollMain {
    padding: 10px 20px;
    width: 100%;
    margin: auto;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 12px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29p
}


.scrollMain img {
    width: 160px;
    height: 200px;
    display: block;
    margin: auto;
}

.scrollMain .card {
    padding-top: 10px;
    background: #195332;
    /* Blue to red gradient */
}

/* Styling for the marquee */
.styled-marquee {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    transform: rotateX(15deg);
    /* Adds a 3D tilt effect */
}

/* Text inside the marquee */
.styled-marquee p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

/* Add hover effects */
.styled-marquee:hover {
    background: linear-gradient(to bottom, #e0e0e0, #f5f5f5);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2), inset 0 2px 6px rgba(255, 255, 255, 0.6);
    transform: rotateX(10deg);
}

/* Add animation for a slight glow */
.styled-marquee:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: glow 3s infinite alternate;
    z-index: -1;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}


.donation {
    margin: auto;
    margin-top: 10px;
    width: auto;
    height: auto;
    padding: 25px;
    padding-left: 30px;
    /* text-align: center; */
    box-shadow: 0px 0px 5px 2px lightgrey;
    border-radius: 10px;
    background: linear-gradient(176deg, #1c6fac 0%, rgba(10, 0, 92, 1) 100%);
    ;
}

.donation p {
    /* margin-top: 20px; */
    font-size: 20px;
    color: #fff;
}

.qrcode {
    margin: auto;
    margin-top: 20px;
    width: 250px;
    height: auto;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 5px 2px lightgrey;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* General styling for form sections */
.comman_div {
    margin-bottom: 20px;
    /* Add spacing between comman_divs */
    margin-top: 10px;
}

/* Styling for the labels */
.comman_div label {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
    color: #000000;
}

/* Styling for the input and select elements */
.comman_div input.form-control,
.comman_div select.form-control {
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    /* 3D effect */
    transition: all 0.3s ease;
}

/* Styling for hover and focus states */
.comman_div input.form-control:focus,
.comman_div select.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    /* Add glowing effect */
    outline: none;
}

/* Add 3D background effect to each comman_div */
.comman_div {
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
        -5px -5px 15px rgba(255, 255, 255, 0.7); */
    border-radius: 10px;
    padding: 15px;
}

/* Add spacing between the label and the field */
.comman_div .col-md-3 , .col-md-2, .col-md-6 {
    margin-top: 15px;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .comman_div {
        flex-direction: column;
        /* Stack fields on smaller screens */
        padding: 10px;
    }

    .col-md-3 ,.col-md-2, .col-md-6 {
        margin-bottom: 10px;
    }
}


/* Loader */
.loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    z-index: 9999;
}

.loader.is-active {
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

#h5formtitle {

text-align: center;

background: linear-gradient(to right, rgb(0 0 139 / 99%), darkblue, rgb(0 0 139));

color: white;

padding: 10px;
}

/*:::::::::::::::::::::::::INDEX ABOUT :::::::::::::::::::::::::::::::*/

/* main card container — mimics modern component card */
    .matun-card {

   /*   max-width: 1280px;
      width: 100%;*/
      margin: 0 auto;
      background: #ffffff;
      border-radius: 2rem;
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2), 0 8px 18px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .matun-card:hover {
      box-shadow: 0 30px 55px -15px rgba(0, 0, 0, 0.25);
    }

    /* inner content with decorative border + spacing */
    .help__content {
      padding: 2.5rem 2.8rem 3rem 2.8rem;
      position: relative;
    }

    /* subtle abstract accent lines */
    .help__content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 2.8rem;
      width: 90px;
      height: 5px;
      background: linear-gradient(90deg, #2b7a4b, #6fbf4c, #ffb347);
      border-radius: 4px;
    }

    /* Clinic title style (h2) */
    .clinic-title {
      /*font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;*/
      font-weight: 700;
      font-size: 2.5rem;
      letter-spacing: -0.01em;
      background: linear-gradient(135deg, #1e4620, #2d6a4f);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1.25rem;
      position: relative;
      display: inline-block;
    }

    .clinic-subhead {
      font-size: 1rem;
      font-weight: 500;
      color: #2c6e49;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
      display: block;
    }

     .highlight-text {
      background: linear-gradient(120deg, #eef9e6 0%, #e2f0da 80%);
      padding: 0.2rem 0.3rem;
      border-radius: 12px;
      font-weight: 500;
      color: #14532d;
    }

    /* subheading h4 style (Born on the Front Lines) */
    h4.clinic-title {
      font-size: 1.8rem;
      /*font-family: 'Playfair Display', serif;*/
      font-weight: 600;
      color: #1f4f2b;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: #1f4f2b;
      margin: 1.8rem 0 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    h4.clinic-title i {
      font-size: 2rem;
      color: #2b7a4b;
      background: #eef5e9;
      padding: 8px;
      border-radius: 60px;
    }

    /* quote / mission vibe */
    .mission-highlight {
      background: #fef9e6;
      border-left: 6px solid #f4a261;
      padding: 1rem 1.8rem;
      border-radius: 24px;
      margin: 1.8rem 0;
      font-style: normal;
      box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    }

    .mission-highlight p {
      margin-bottom: 0;
      font-weight: 500;
      color: #4a3b1c;
    }

    /* call to action button modern */
    .btn-success {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(105deg, #1f6e43, #2d8c5a);
      border: none;
      padding: 0.9rem 2.2rem;
      font-size: 1rem;
      font-weight: 600;
      /*font-family: 'Inter', sans-serif;*/
      border-radius: 50px;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      letter-spacing: 0.3px;
      box-shadow: 0 8px 18px -8px rgba(33, 103, 62, 0.4);
      margin-top: 0.5rem;
    }

    .btn-success i {
      font-size: 1.1rem;
      transition: transform 0.2s;
    }

    .btn-success:hover {
      background: linear-gradient(105deg, #155a38, #217a4b);
      transform: translateY(-3px);
      box-shadow: 0 16px 25px -12px rgba(33, 103, 62, 0.5);
      text-decoration: none;
      color: white;
    }

    .btn-success:active {
      transform: translateY(1px);
    }

    /* extra micro-interactions for quotes */
    .silent-crisis {
      background: #fdf3f0;
      border-radius: 28px;
      padding: 1.2rem 1.8rem;
      margin: 1.8rem 0;
      border: 1px solid #ffe0d4;
    }

    .silent-crisis strong {
      color: #bc4e2c;
    }

    /* responsive adjustments */
    @media (max-width: 750px) {
      .help__content {
        padding: 1.8rem 1.5rem 2.2rem 1.5rem;
      }
      .clinic-title {
        font-size: 2rem;
      }
      h4.clinic-title {
        font-size: 1.5rem;
      }
      p {
        font-size: 0.98rem;
      }
      .btn-success {
        padding: 0.7rem 1.6rem;
        font-size: 0.9rem;
      }
    }

    /* decorative icon row (optional) */
    .value-badge {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1.2rem 0 0.8rem 0;
    }
    .badge-item {
      background: #eef3ea;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #2a5c3e;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .badge-item i {
      font-size: 0.8rem;
    }

     /* Enhanced highlight boxes */
    .silent-crisis-box {
      background: linear-gradient(135deg, #fff5eb, #feefe2);
      border-left: 6px solid #e76f51;
      padding: 1.3rem 2rem;
      border-radius: 1.2rem;
      margin: 1.5rem 0;
      box-shadow: 0 8px 20px -12px rgba(231, 111, 81, 0.3);
      transition: all 0.3s ease;
    }

    .silent-crisis-box:hover {
      transform: translateX(5px);
      box-shadow: 0 12px 25px -12px rgba(231, 111, 81, 0.4);
    }

    /* Programs grid with 3D hover */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 1.5rem;
      margin: 1.8rem 0;
    }

    .program-card {
      background: white;
      color: black;
      font-weight: 600;
      text-align: justify;
      border-radius: 1.3rem;
      padding: 1.4rem 1.5rem;
      transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid rgba(100, 150, 100, 0.15);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      position: relative;
      overflow: hidden;
    }

    .program-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #2b7a4b, #6fbf4c, #f4a261);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .program-card:hover::before {
      transform: translateX(0);
    }

    .program-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 20px 35px -15px rgba(43, 122, 75, 0.25);
      border-color: rgba(43, 122, 75, 0.3);
    }

    .program-card strong {
      font-size: 1.2rem;
      color: #2b6e47;
      display: block;
      margin-bottom: 0.6rem;
    }

    .program-card i {
      color: #e76f51;
      margin-right: 8px;
      font-size: 1.2rem;
    }

    /* ============================================ */
    /* PREMIUM VISION + MISSION + APPROACH SECTION */
    /* ============================================ */
    
    .vma-container {
      margin: 2.5rem 0 1.5rem 0;
    }

    /* Premium Card Row - Laptop: Horizontal, Mobile: Vertical */
    .premium-row {
      display: flex;
      gap: 1.8rem;
      flex-wrap: wrap;
    }

    .premium-col {
      flex: 1;
      min-width: 280px;
      transition: all 0.3s ease;
    }

    /* Unique Background for each card with shadow and logo effect */
    .vision-card {
      background: linear-gradient(135deg, #0f2a1f 0%, #1a4a2a 100%);
      position: relative;
      overflow: hidden;
      border-radius: 1.8rem;
      padding: 2rem 1.8rem;
      box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      transition: all 0.35s ease;
      height: 100%;
    }

    .mission-card {
      background: linear-gradient(135deg, #2d3e2a 0%, #3d5a36 100%);
      position: relative;
      overflow: hidden;
      border-radius: 1.8rem;
      padding: 2rem 1.8rem;
      box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      transition: all 0.35s ease;
      height: 100%;
    }

    .approach-card {
      background: linear-gradient(135deg, #2a2a1f 0%, #4a3e2a 100%);
      position: relative;
      overflow: hidden;
      border-radius: 1.8rem;
      padding: 2rem 1.8rem;
      box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      transition: all 0.35s ease;
      height: 100%;
    }

    /* Hover Effects */
    .vision-card:hover, .mission-card:hover, .approach-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 35px 50px -20px rgba(0, 0, 0, 0.5);
    }

    /* Logo / Icon Watermark Effect */
    .vision-card::before {
      content: '👁️';
      position: absolute;
      bottom: 10px;
      right: 15px;
      font-size: 5rem;
      opacity: 0.08;
      pointer-events: none;
      font-family: monospace;
    }

    .mission-card::before {
      content: '🎯';
      position: absolute;
      bottom: 10px;
      right: 15px;
      font-size: 5rem;
      opacity: 0.08;
      pointer-events: none;
    }

    .approach-card::before {
      content: '⚙️';
      position: absolute;
      bottom: 10px;
      right: 15px;
      font-size: 5rem;
      opacity: 0.08;
      pointer-events: none;
    }

    /* Card Headings */
    .vision-card h2, .mission-card h2, .approach-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
      letter-spacing: -0.3px;
    }

    .vision-card h2::after, .mission-card h2::after, .approach-card h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #f4a261, #e9c46a);
      border-radius: 3px;
    }

    /* Paragraph inside cards */
    .vision-card p, .mission-card p, .approach-card p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
      font-weight: 400;
    }

    .vision-card p strong, .mission-card p strong, .approach-card p strong {
      color: #f4a261;
      font-weight: 600;
    }

    /* Custom Lists inside premium cards */
    .vision-card ul, .mission-card ul, .approach-card ul {
      list-style: none;
      padding-left: 0;
      margin-top: 0.8rem;
    }

    .vision-card li, .mission-card li, .approach-card li {
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.95rem;
      line-height: 1.55;
      margin-bottom: 0.7rem;
      padding-left: 1.6rem;
      position: relative;
    }

    .vision-card li::before {
      content: '✨';
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.85rem;
    }

    .mission-card li::before {
      content: '⭐';
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.85rem;
    }

    .approach-card li::before {
      content: '🔹';
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.85rem;
    }

    /* Responsive: Laptop me horizontal line, mobile me top to bottom */
    @media (min-width: 992px) {
      .premium-row {
        flex-direction: row;
        flex-wrap: nowrap;
      }
      .premium-col {
        flex: 1;
      }
    }

    @media (max-width: 991px) {
      .premium-row {
        flex-direction: column;
      }
      .premium-col {
        width: 100%;
      }
      .vision-card, .mission-card, .approach-card {
        margin-bottom: 1.5rem;
      }
    }

    /* Responsive padding */
    @media (max-width: 768px) {
      .card-content {
        padding: 1.6rem;
      }
      h1 {
        font-size: 1.8rem;
      }
      .vision-card h2, .mission-card h2, .approach-card h2 {
        font-size: 1.5rem;
      }
      .vision-card li, .mission-card li, .approach-card li {
        font-size: 0.88rem;
      }
    }

    /* Extra decorative elements */
    .watermark-text {
      position: fixed;
      bottom: 10px;
      right: 10px;
      font-size: 10px;
      color: rgba(0,0,0,0.2);
      pointer-events: none;
    }

     /* Values pills with animations */
    .values-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1rem 0 1.8rem;
    }

    .value-pill {
      background: linear-gradient(135deg, #edf7ec, #e0f0dc);
      padding: 0.5rem 1.3rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      color: #1e5631;
      transition: all 0.3s ease;
      cursor: default;
      border: 1px solid rgba(43, 122, 75, 0.2);
    }

    .value-pill:hover {
      transform: translateY(-3px) scale(1.05);
      background: linear-gradient(135deg, #f4e8c1, #f9d89c);
      color: #8b5e2c;
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    }

    /* Together section - premium design */
    .together-section {
      background: linear-gradient(135deg, #1a4a2a, #2d6a4f, #1b4d2b);
      border-radius: 2rem;
      padding: 2rem 2.2rem;
      text-align: center;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.3);
    }

    .together-section::before {
      content: '❤️';
      position: absolute;
      font-size: 8rem;
      opacity: 0.05;
      bottom: -20px;
      right: -20px;
      pointer-events: none;
    }

    .together-section::after {
      content: '🌿';
      position: absolute;
      font-size: 6rem;
      opacity: 0.05;
      top: -20px;
      left: -20px;
      pointer-events: none;
    }

    .together-section p {
      color: #fef7e0;
      margin-bottom: 0.6rem;
      font-weight: 500;
      position: relative;
      z-index: 1;
    }

    .together-section p strong {
      color: #ffdead;
      font-weight: 700;
    }

    /* Floating animation for icons */
    .floating-icon {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
    }

    /* Responsive */
    @media (max-width: 700px) {
      .card-content {
        padding: 1.8rem;
      }
      h1 {
        font-size: 1.9rem;
        padding-left: 1rem;
      }
      h2 {
        font-size: 1.5rem;
      }
      h3 {
        font-size: 1.4rem;
      }
      p, li {
        font-size: 0.95rem;
      }
      .programs-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Scroll reveal effect */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card-content > * {
      animation: fadeInUp 0.5s ease forwards;
      opacity: 0;
    }

    .card-content > *:nth-child(1) { animation-delay: 0.05s; }
    .card-content > *:nth-child(2) { animation-delay: 0.1s; }
    .card-content > *:nth-child(3) { animation-delay: 0.15s; }
    .card-content > *:nth-child(4) { animation-delay: 0.2s; }
    .card-content > *:nth-child(5) { animation-delay: 0.25s; }


     /* ============================================ */
    /* PREMIUM CUSTOM CSS FOR difference-three SECTION */
    /* ============================================ */
    
    .difference-three {
      position: relative;
      /*max-width: 1280px;*/
      margin: 0 auto;
      background: linear-gradient(135deg, #0a1f14 0%, #0e2a1a 50%, #0a1f14 100%);
      /*border-radius: 2rem;*/
      overflow: hidden;
      box-shadow: 0 35px 60px -25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 150, 0.15) inset;
      transition: all 0.4s ease;
    }

    .difference-three:hover {
      transform: translateY(-5px);
      box-shadow: 0 45px 70px -30px rgba(0, 0, 0, 0.5);
    }

    /* Animated Top Border */
    .difference-three::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f4a261, #e9c46a, #f4a261, #e76f51, #f4a261);
      background-size: 300% auto;
      animation: borderFlow 4s linear infinite;
      z-index: 2;
    }

    @keyframes borderFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 300% 50%; }
    }

    /* Container */
    .difference-three .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2.5rem 2rem;
    }

    /* Title Styling */
    .difference-three .clinic-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 800;
      text-align: center;
      width: 100%;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #f4a261, #e9c46a, #f4a261);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
      animation: titleGlow 3s ease infinite;
    }

    @keyframes titleGlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Content Area */
    .difference-three__content {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(2px);
      border-radius: 1.5rem;
      padding: 1.8rem;
      border: 1px solid rgba(244, 162, 97, 0.15);
    }

    /* Section Content Paragraphs */
    .difference-three .section__content p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.02rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      text-align: justify;
    }

    .difference-three .section__content strong {
      color: #f4a261;
      font-weight: 700;
    }

    /* ============================================ */
    /* CHAIRMAN PHOTO STYLES - LEFT SIDE */
    /* ============================================ */
    
    .chairman-inline-photo {
      text-align: center;
    }
    
    .chairman-photo-circle {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f4a261, #e76f51);
      padding: 4px;
      box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      margin: 0 auto;
    }
    
    .chairman-photo-circle:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 35px -12px rgba(244, 162, 97, 0.4);
    }
    
    .chairman-photo-circle img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      background: #1a2e1f;
    }
    
    .chairman-caption {
      text-align: center;
      margin-top: 0.8rem;
      font-size: 0.85rem;
      color: rgba(244, 162, 97, 0.8);
      font-family: 'Playfair Display', serif;
    }

    /* ============================================ */
    /* READ MORE / VIEW MORE BUTTON STYLES */
    /* ============================================ */
    
    .message-collapsible {
      position: relative;
      margin-top: 1rem;
    }

    .message-content {
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .message-content.collapsed {
      max-height: 300px;
    }

    .message-content.expanded {
      max-height: none;
    }

    .view-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #f4a261, #e76f51);
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      border-radius: 50px;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 1rem 0 0.5rem 0;
      box-shadow: 0 8px 20px -10px rgba(244, 162, 97, 0.4);
    }

    .view-more-btn:hover {
      background: linear-gradient(135deg, #e76f51, #f4a261);
      transform: translateY(-2px);
      box-shadow: 0 12px 25px -10px rgba(244, 162, 97, 0.6);
    }

    .view-more-btn:active {
      transform: translateY(1px);
    }

    .view-more-btn i {
      transition: transform 0.3s ease;
    }

    .view-more-btn:hover i {
      transform: translateX(3px);
    }

    /* Quote Block */
    .difference-three .differnce-quote {
      margin: 1.5rem 0;
      padding: 1rem 1.8rem;
      background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(233, 196, 106, 0.05));
      border-left: 4px solid #f4a261;
      border-radius: 0 1rem 1rem 0;
    }

    .difference-three .differnce-quote blockquote q {
      font-size: 1.1rem;
      font-style: italic;
      color: #e9c46a;
      line-height: 1.6;
      font-weight: 500;
    }

    .difference-three .differnce-quote blockquote q::before,
    .difference-three .differnce-quote blockquote q::after {
      content: '"';
      color: #f4a261;
      font-size: 1.2rem;
    }

    /* Help Content List */
    .difference-three .help__content-list p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      line-height: 1.65;
      margin-bottom: 1rem;
      text-align: justify;
    }

    /* Author Info Section */
    .difference-three .difference-three-cta {
      margin-top: 1rem;
      padding-top: 0rem;
    }

    .difference-three .author-info {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      background: linear-gradient(135deg, rgba(244, 162, 97, 0.08), rgba(233, 196, 106, 0.03));
      border-radius: 1.2rem;
      padding: 1.2rem 1.5rem;
      border: 1px solid rgba(244, 162, 97, 0.2);
    }

    .difference-three .author-thumb {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f4a261, #e76f51);
      padding: 3px;
      box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .difference-three .author-thumb:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 25px -10px rgba(244, 162, 97, 0.4);
    }

    .difference-three .author-thumb img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      background: #1a2e1f;
    }

    .difference-three .author-content span {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #f4a261;
      margin-bottom: 0.3rem;
    }

    .difference-three .author-content h6 {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.4;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .difference-three .container {
        padding: 1.5rem;
      }
      .difference-three .clinic-title {
        font-size: 1.8rem;
      }
      .difference-three .section__content p {
        font-size: 0.92rem;
      }
      .difference-three .differnce-quote blockquote q {
        font-size: 0.95rem;
      }
      .difference-three .author-info {
        flex-direction: column;
        text-align: center;
      }
      .chairman-photo-circle {
        width: 130px;
        height: 130px;
        margin-bottom: 1rem;
      }
      .chairman-caption {
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 576px) {
      .chairman-photo-circle {
        width: 180px;
        height: 180px;
      }
    }


/* Team Section Container */
    .team-container {
      /*max-width: 1400px;*/
      /*margin: 0 auto;*/
    }

    /* Section Header */
    .team-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .team-header h1 {
      /*font-family: 'Playfair Display', serif;*/
      /*font-size: 2.8rem;*/
      /*font-weight: 800;*/
      background: linear-gradient(135deg, #1e4620, #2d6a4f, #f4a261);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }

    .team-header .subtitle {
      color: #2d6a4f;
      font-size: 1.1rem;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
    }

    .team-header .subtitle::before,
    .team-header .subtitle::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #f4a261, transparent);
    }

    .team-header .subtitle::before {
      right: 100%;
      margin-right: 15px;
    }

    .team-header .subtitle::after {
      left: 100%;
      margin-left: 15px;
      background: linear-gradient(90deg, transparent, #f4a261);
    }

    /* Team Grid */
    .team-grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    /* Row Styles */
    .team-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.8rem;
    }

    /* Card Styles */
    .team-card {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      width: calc(25% - 1.35rem);
      min-width: 240px;
      flex: 1;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(45, 106, 79, 0.08);
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 45px -15px rgba(45, 106, 79, 0.25);
      border-color: rgba(244, 162, 97, 0.3);
    }

    /* Top Gradient Border on Hover */
    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #2b7a4b, #6fbf4c, #f4a261, #e76f51);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .team-card:hover::before {
      transform: scaleX(1);
    }

    /* Card Inner */
    .card-inner {
      padding: 1.8rem 1.5rem;
      text-align: center;
    }

    /* Avatar / Photo Circle */
    .member-avatar {
      width: 210px;
      height: 210px;
      margin: 0 auto 1.2rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #2d6a4f, #1e4620);
      padding: 3px;
      transition: all 0.3s ease;
    }

    .member-avatar:hover {
      transform: scale(1.03);
      background: linear-gradient(135deg, #f4a261, #e76f51);
    }

    .avatar-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #f0f5ed;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .avatar-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .avatar-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e8f0e5, #d4e2cc);
      font-size: 3rem;
      color: #2d6a4f;
    }

    /* Member Name */
    .member-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a3d2a;
      margin-bottom: 0.3rem;
    }

    /* Designation */
    .member-designation {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
      background: #091f1b;
      border-radius: 15px;
      padding: 5px 0px;
      margin-bottom: 0.8rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* Divider */
    .member-divider {
      width: 50px;
      height: 2px;
      background: linear-gradient(90deg, #2b7a4b, #f4a261);
      margin: 0.8rem auto;
      border-radius: 2px;
    }

    /* Contact Info */
    .member-contact {
      margin-top: 0.8rem;
    }

    .member-phone, .member-email {
      font-size: 0.8rem;
      color: #4a6b5a;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-bottom: 0.3rem;
    }

    .member-phone i, .member-email i {
      color: #2d6a4f;
      width: 20px;
      font-size: 0.75rem;
    }

    .member-date {
      font-size: 0.7rem;
      color: #8aa899;
      margin-top: 0.5rem;
    }

    /* Special styling for Directors row (top row) */
    .director-card {
      background: linear-gradient(135deg, #ffffff, #fef9f0);
      border: 1px solid rgba(244, 162, 97, 0.2);
    }

     .director-card1 {
      background: linear-gradient(135deg, #ffffff, #f0fef4);
      /*border: 1px solid rgba(244, 162, 97, 0.2);*/
    }

    .director-card .member-name {
      color: #c45c1a;
      font-size: 1.4rem;
    }

    .director-card .member-designation {
      color: #ffffff;
      font-size: 0.9rem;
      background: #091f1b;
      border-radius: 15px;
      padding: 5px 0px;
      /* width: 284px; */
      text-align: -webkit-center;
    }

    /* Row Labels */
    .row-label {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #2d6a4f;
      margin-bottom: 1rem;
      padding-left: 0.5rem;
      border-left: 4px solid #f4a261;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .team-card {
        width: calc(33.33% - 1.2rem);
        min-width: 220px;
      }
    }

    @media (max-width: 768px) {
      body {
        /* padding: 1rem; */
      }
      .team-header h1 {
        font-size: 2rem;
      }
      .team-card {
        width: calc(50% - 0.9rem);
        min-width: 200px;
      }
      .member-avatar {
        width: 100px;
        height: 100px;
      }
      .member-name {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .team-card {
        width: 100%;
      }
      .team-header .subtitle::before,
      .team-header .subtitle::after {
        display: none;
      }
    }

    /* Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .team-card {
      animation: fadeInUp 0.5s ease forwards;
      opacity: 0;
    }

    .team-card:nth-child(1) { animation-delay: 0.05s; }
    .team-card:nth-child(2) { animation-delay: 0.1s; }
    .team-card:nth-child(3) { animation-delay: 0.15s; }
    .team-card:nth-child(4) { animation-delay: 0.2s; }

    .post{
        font-weight: 800;
    color: #091f1b;
    }


    