.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: #01115E;
    /* 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 #01115E;
    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: #01115E;
    /* 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: 1.5rem 2.8rem 0rem 1.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, #01115E, #123AA2, #4A6CF7);
      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, #01115E, #123AA2);
      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: #01115E;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
      display: block;
    }

     .highlight-text {
     background: linear-gradient(120deg, #eef2ff 0%, #dbe4ff 80%);
      padding: 0.2rem 0.3rem;
      border-radius: 12px;
      font-weight: 500;
      color: #01115E;
    }

    /* subheading h4 style (Born on the Front Lines) */
    h4.clinic-title {
      font-size: 1.8rem;
      /*font-family: 'Playfair Display', serif;*/
      font-weight: 600;
      color: #01115E;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: #01115E;
      margin: 1.8rem 0 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    h4.clinic-title i {
      font-size: 2rem;
      color: #01115E;
      background: #eef5e9;
      padding: 8px;
      border-radius: 60px;
    }

    /* quote / mission vibe */
    .mission-highlight {
      background: #fef9e6;
      border-left: 6px solid #01115E;
      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, #01115E, #123AA2);
      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(1, 17, 94, 0.4);
      margin-top: 0.5rem;
    }

    .btn-success i {
      font-size: 1.1rem;
      transition: transform 0.2s;
    }

    .btn-success:hover {
      background: linear-gradient(105deg, #000d4d, #0A2472);
transform: translateY(-3px);
box-shadow: 0 16px 25px -12px rgba(1, 17, 94, 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: #123AA2;
}

/* 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 */

.value-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.2rem 0 0.8rem 0;
}

.badge-item {
    background: #dbe4ff;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;

    color: #01115E;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(18, 58, 162, 0.12);
}

.badge-item i {
    font-size: 0.8rem;
    color: #123AA2;
}

/* Enhanced highlight boxes */

.silent-crisis-box {

    background: linear-gradient(
        135deg,
        #f5f8ff,
        #e8edff
    );

    text-align: justify;
    color: #01115E;
    font-weight: 600;

    border-left: 6px solid #123AA2;

    padding: 1.3rem 2rem;
    border-radius: 1.2rem;
    margin: 1.5rem 0;

    box-shadow: 0 8px 20px -12px rgba(18, 58, 162, 0.3);

    transition: all 0.3s ease;
}

.silent-crisis-box:hover {
    transform: translateX(5px);

    box-shadow: 0 12px 25px -12px rgba(18, 58, 162, 0.4);
}

/* Programs grid */

.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,
        #01115E,
        #123AA2,
        #4A6CF7
    );

    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(18, 58, 162, 0.25);

    border-color: rgba(18, 58, 162, 0.3);
}

.program-card strong {
    font-size: 1.2rem;

    color: #01115E;

    display: block;
    margin-bottom: 0.6rem;
}

.program-card i {
    color: #123AA2;
    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;
}

/* Vision Card */

.vision-card {
    background: linear-gradient(
        135deg,
        #01115E 0%,
        #123AA2 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 */

.mission-card {
    background: linear-gradient(
        135deg,
        #0A2472 0%,
        #1B4DCC 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, #01115E, #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: #01115E;
      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, #eef2ff, #dbe4ff);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;

    color: #01115E;

    transition: all 0.3s ease;
    cursor: default;

    border: 1px solid rgba(18, 58, 162, 0.2);
}

.value-pill:hover {
    transform: translateY(-3px) scale(1.05);

    background: linear-gradient(
        135deg,
        #123AA2,
        #4A6CF7
    );

    color: #ffffff;

    box-shadow: 0 5px 12px rgba(18, 58, 162, 0.15);
}

/* Together section - premium design */

.together-section {
    background: linear-gradient(
        135deg,
        #01115E,
        #123AA2,
        #0A2472
    );

    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, #01115ebf 0%, #0a2472c7 50%, #01115ec4 100%);
    /*border-radius: 2rem;*/
    overflow: hidden;
    box-shadow:
        0 35px 60px -25px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(143, 174, 255, 0.12) 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,
        #01115E,
        #123AA2,
        #4A6CF7,
        #8FAEFF,
        #01115E
    );

    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, #E1A969, #E1A969, #E1A969);
    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: #01115E;
      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,
        #01115E,
        #123AA2
    );

    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(18, 58, 162, 0.4);
}

.chairman-photo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;

    background: #01115E;
}

.chairman-caption {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;

    color: rgba(143, 174, 255, 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,
        #01115E,
        #123AA2
    );

    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(18, 58, 162, 0.4);
}

.view-more-btn:hover {

    background: linear-gradient(
        135deg,
        #123AA2,
        #4A6CF7
    );

    transform: translateY(-2px);

    box-shadow: 0 12px 25px -10px rgba(18, 58, 162, 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(18, 58, 162, 0.1),
        rgba(74, 108, 247, 0.05)
    );

    border-left: 4px solid #123AA2;
    border-radius: 0 1rem 1rem 0;
}

.difference-three .differnce-quote blockquote q {
    font-size: 1.1rem;
    font-style: italic;
    color: #cddbff;
    line-height: 1.6;
    /* text-align: justify; */
    font-weight: 600;
}

    .difference-three .differnce-quote blockquote q::before,
    .difference-three .differnce-quote blockquote q::after {
      content: '"';
      color: #01115E;
      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, rgb(18 58 162), rgb(74 108 247 / 49%));
    border-radius: 1.2rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(18, 58, 162, 0.2);
}

    .difference-three .author-thumb {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #01115E, #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(18, 58, 162, 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: #E1A969;
      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,
        #01115E,
        #123AA2,
        #4A6CF7
    );

    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

    .team-header .subtitle {
      color: #01115E;
      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, #01115E, transparent);
    }

    .team-header .subtitle::before {
      right: 100%;
      margin-right: 15px;
    }

    .team-header .subtitle::after {
      left: 100%;
      margin-left: 15px;
      background: linear-gradient(90deg, transparent, #01115E);
    }

    /* 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(18, 58, 162, 0.08);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px rgba(18, 58, 162, 0.25);
    border-color: rgba(74, 108, 247, 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,
        #01115E,
        #123AA2,
        #4A6CF7,
        #8FAEFF
    );
    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, #01115E, #123AA2);
    padding: 3px;
    transition: all 0.3s ease;
}

.member-avatar:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #123AA2, #4A6CF7);
}

    .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, #eef2ff, #dbe4ff);
    font-size: 3rem;
    color: #01115E;
}

    /* 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, #123AA2, #01115E);
    margin: 0.8rem auto;
    border-radius: 2px;
}

/* Contact Info */

.member-contact {
    margin-top: 0.8rem;
}

.member-phone,
.member-email {
    font-size: 0.8rem;
    color: #123AA2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.3rem;
}

.member-phone i,
.member-email i {
    color: #01115E;
    width: 20px;
    font-size: 0.75rem;
}

.member-date {
    font-size: 0.7rem;
    color: #6c82d9;
    margin-top: 0.5rem;
}

    /* Special styling for Directors row (top row) */
  .director-card {
    background: linear-gradient(135deg, #ffffff, #eef2ff);
    border: 1px solid rgba(18, 58, 162, 0.2);
}

.director-card1 {
    background: linear-gradient(135deg, #ffffff, #f5f8ff);
    /* border: 1px solid rgba(18, 58, 162, 0.2); */
}

    .director-card .member-name {
      color: #01115E;
      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: #01115E;
      margin-bottom: 1rem;
      padding-left: 0.5rem;
      border-left: 4px solid #01115E;
    }

    /* 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;
    }


    /* =========================================
   REGISTRATION BOX
========================================= */

.registration-box {
    background: linear-gradient(135deg, #f5f8ff, #eef2ff);
    border-radius: 24px;
    padding: 28px;
    margin-top: 28px;
    border: 1px solid #dbe4ff;
}

.registration-box h5 {
    color: #01115E;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 22px;
}

.registration-box h5 i {
    margin-right: 10px;
    color: #123AA2;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.registration-item {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.registration-item span {
    display: block;
    color: #6b7895;
    font-size: 13px;
    margin-bottom: 5px;
}

.registration-item strong {
    color: #01115E;
    font-size: 15px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

 
    .registration-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

   

    .registration-box{
        padding:22px;
    }

}

.about-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    background: linear-gradient(
        to top,
        rgba(1, 17, 94, 0.96),
        rgba(1, 17, 94, 0.08)
    );
}

.about-image-content h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-image-content p {
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/*::::::::::::::::::::::::::::::::::::::::::::::: service program:::::::::::::::::::::::::::::::*/

/* =========================================
   PROGRAM SLIDER CARD
========================================= */

.cause__slider-single{
    background:#fff;
    border-radius:24px;
    padding:35px 28px;
    text-align:center;
    min-height:340px;

    border:1px solid rgba(18,58,162,0.08);

    transition:all .35s ease;

    box-shadow:
        0 15px 35px -18px rgba(0,0,0,0.08);

    position:relative;
    overflow:hidden;
}

.cause__slider-single::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #01115E,
        #123AA2,
        #4A6CF7
    );

    transform:translateX(-100%);
    transition:transform .4s ease;
}

.cause__slider-single:hover::before{
    transform:translateX(0);
}

.cause__slider-single:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 35px -15px rgba(18,58,162,0.22);

    border-color:rgba(18,58,162,0.25);
}

/* ICON */

.program-icon{
    width:90px;
    height:90px;
    margin:0 auto 24px auto;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #01115E,
        #123AA2
    );

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 12px 25px rgba(18,58,162,0.18);
}

.program-icon i{
    color:#fff;
    font-size:34px;
}

/* TITLE */

.program-title{
    color:#01115E;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:16px;
}

/* TEXT */

.program-text{
    color:#667085;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* NAV BUTTON */

.slider-btn{
    background:linear-gradient(
        135deg,
        #01115E,
        #123AA2
    );

    color:#fff;
    border:none;

    width:50px;
    height:50px;

    border-radius:50%;

    transition:.3s ease;
}

.slider-btn:hover{
    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #123AA2,
        #4A6CF7
    );
}

/* MOBILE */

@media(max-width:768px){

    .cause__slider-single{
        min-height:auto;
        padding:28px 22px;
    }

    .program-title{
        font-size:20px;
    }

}

