.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: #caa834;
    /* 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: #caa834;
    /* 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, #510001, #510001, #510001);
      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, #510001, #510001);
      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: #c8a727;
      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: #510001;
      margin: 1.8rem 0 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    h4.clinic-title i {
      font-size: 2rem;
      color: #510001;
      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, #5f501b, #e5c247);
      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: #fad640;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    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: #000000;
}

/* Enhanced highlight boxes */

.silent-crisis-box {
        background: linear-gradient(135deg, #e5c24729, #e5c24729);
        text-align: justify;
        color: #01115E;
        font-weight: 600;
        border-left: 6px solid #c59900;
        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, #5e3d01bf 0%, #725b0ac7 50%, #5e5301c4 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: rgb(255 205 165 / 16%);
      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: #ffcb6d;
      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, #5e4601, #a27312);
    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, rgb(162 130 18 / 10%), rgba(74, 108, 247, 0.05));
    border-left: 4px solid #a27312;
    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(162 115 18), rgb(247 150 74 / 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: #e5d7c8;
      margin-bottom: 0.3rem;
    }

    .difference-three .author-content h6 {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgb(255 255 255);
      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, #e5c24729, #e5c24729);
    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: #bb9409;
}

.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, rgb(94 67 1 / 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, #AF8E13, #876e105e);
    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, #715900, #9a7f1b);
    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;
    }

}

/* ==========================
   SESA HISTORY SECTION
========================== */

.sesa-history-section {
    position: relative;
    padding: 30px 0;
    background: #f8fafc;
}

.sesa-history-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #7a0e1d;
    margin-bottom: 25px;
    line-height: 1.4;
}

.sesa-history-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 18px;
}

.sesa-history-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.sesa-history-image img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.sesa-history-image:hover img {
    transform: scale(1.05);
}

/* ==========================
   TIMELINE
========================== */

.sesa-timeline {
    position: relative;
    margin-top: 70px;
}

.sesa-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #7a0e1d,
        #d4af37
    );
    transform: translateX(-50%);
}

.sesa-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.sesa-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.sesa-timeline-item:nth-child(even) {
    left: 50%;
}

.sesa-timeline-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: 0.4s;
}

.sesa-timeline-box:hover {
    transform: translateY(-5px);
}

.sesa-timeline-box h5 {
    color: #7a0e1d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sesa-timeline-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.sesa-timeline-dot {
    position: absolute;
    top: 30px;
    width: 22px;
    height: 22px;
    background: #d4af37;
    border: 4px solid #7a0e1d;
    border-radius: 50%;
    z-index: 2;
}

.sesa-timeline-item:nth-child(odd) .sesa-timeline-dot {
    right: -11px;
}

.sesa-timeline-item:nth-child(even) .sesa-timeline-dot {
    left: -11px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .sesa-timeline::before {
        left: 20px;
    }

    .sesa-timeline-item,
    .sesa-timeline-item:nth-child(even),
    .sesa-timeline-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .sesa-timeline-dot,
    .sesa-timeline-item:nth-child(even) .sesa-timeline-dot,
    .sesa-timeline-item:nth-child(odd) .sesa-timeline-dot {
        left: 10px;
        right: auto;
    }

    .sesa-history-content h3 {
        font-size: 26px;
    }
}

/* =========================
   SESA OBJECTIVES SECTION
========================= */

.sesa-objectives-section{
    padding:30px 0;
    background:#d4af3724;
}

.sesa-objectives-header{
    margin-bottom:60px;
}

.sesa-objectives-subtitle{
    display:inline-block;
    color:#d4af37;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.sesa-objectives-header h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.sesa-objectives-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.sesa-objective-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    margin-bottom:25px;
}

.sesa-objective-card:hover{
    transform:translateY(-8px);
}

.sesa-objective-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#d4af37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.sesa-objective-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.sesa-objective-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

.sesa-objectives-header h2{
    font-size:30px;
}

.sesa-objective-card{
    padding:25px 20px;
}

}


/* =========================
   SESA VISION & MISSION
========================= */

.sesa-vision-mission-section{
    padding:30px 0;
    background:#ffffff;
}

.sesa-vm-header{
    margin-bottom:60px;
}

.sesa-vm-subtitle{
    display:inline-block;
    color:#8b0000;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.sesa-vm-header h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.sesa-vm-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.sesa-vm-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.sesa-vm-card:hover{
    transform:translateY(-8px);
}

.sesa-vm-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#8b0000;
    color:#fff;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.sesa-vm-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.sesa-vm-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}

.sesa-mission-list{
    margin:0;
    padding-left:20px;
}

.sesa-mission-list li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

@media(max-width:768px){

.sesa-vm-header h2{
    font-size:30px;
}

.sesa-vm-card{
    margin-bottom:25px;
    padding:30px;
}

}

/* ==========================
   SESA ORGANIZATION CHART
========================== */

.sesa-org-section{
    padding:30px 0;
    background:linear-gradient(
    135deg,
    #f8f9fb,
    #ffffff
    );
}

.sesa-org-header{
    margin-bottom:70px;
}

.sesa-org-subtitle{

    display:inline-block;
    background:#8b0000;
    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.sesa-org-header h2{

    margin-top:20px;
    margin-bottom:15px;

    font-size:42px;
    font-weight:800;

    color:#222;
}

.sesa-org-header p{

    max-width:700px;
    margin:auto;

    color:#666;
    line-height:1.8;
}

/* CHART */

.sesa-org-chart{

    display:flex;
    flex-direction:column;
    align-items:center;
}

/* LEVEL */

.sesa-org-level{

    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

    width:100%;
}

/* BOX */

.sesa-org-box{

    width:320px;

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.sesa-org-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(139,0,0,.18);
}

/* MAIN BOX */

.sesa-org-main{

    background:linear-gradient(
    135deg,
    #8b0000,
    #b30000
    );

    color:#fff;

    box-shadow:
    0 25px 60px rgba(139,0,0,.35);
}

.sesa-org-main h4,
.sesa-org-main p{
    color:#fff;
}

.sesa-org-main .sesa-org-icon{

    background:#fff;
    color:#8b0000;
}

/* ICON */

.sesa-org-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
    135deg,
    #8b0000,
    #c62828
    );

    color:#fff;

    font-size:32px;

    box-shadow:
    0 10px 25px rgba(139,0,0,.25);
}

.sesa-org-box h4{

    font-size:24px;
    font-weight:700;

    margin-bottom:10px;
}

.sesa-org-box p{

    color:#666;
    margin:0;
}

/* CONNECTOR */

.sesa-org-connector{

    width:6px;
    height:60px;

    margin:15px 0;

    border-radius:20px;

    background:linear-gradient(
    to bottom,
    #8b0000,
    #d4af37
    );
}

/* MOBILE */

@media(max-width:768px){

.sesa-org-header h2{
    font-size:30px;
}

.sesa-org-box{
    width:100%;
}

.sesa-org-level-two{
    flex-direction:column;
    align-items:center;
}

}

/* ======================
   SESA MEMBERSHIP
====================== */

.sesa-membership-section{
    padding:30px 0;
    background:#ffffff;
}

.sesa-membership-header{
    margin-bottom:60px;
}

.sesa-membership-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#8b0000;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.sesa-membership-header h2{
    font-size:42px;
    font-weight:800;
    margin:20px 0;
}

.sesa-membership-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.sesa-member-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-member-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(139,0,0,.15);
}

.member-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #8b0000,
    #c62828
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:20px;
}

.sesa-member-card h4{

    font-size:24px;
    font-weight:700;

    margin-bottom:20px;
}

.sesa-member-card ul{

    margin:0;
    padding-left:20px;
}

.sesa-member-card ul li{

    margin-bottom:12px;
    color:#555;
}

.sesa-membership-action{

    margin-top:50px;
}

.sesa-membership-action .btn{

    padding:14px 35px;

    background:#8b0000;
    border:none;

    font-weight:600;

    border-radius:40px;
}

.sesa-membership-action .btn:hover{

    background:#6d0000;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/* =========================
   CONSTITUTION DOWNLOAD
========================= */

.constitution-download{
    padding:40px 0;
    position:relative;
    overflow:hidden;
}

.constitution-download-box{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #081c4b,
    #0f2d74,
    #163b94
    );

    border-radius:30px;

    padding:60px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(8,28,75,.25);
}

/* Decorative Shapes */

.constitution-download-box::before{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-120px;
    right:-100px;
}

.constitution-download-box::after{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(255,215,0,.10);

    bottom:-70px;
    left:-50px;
}

/* Content */

.constitution-download-box h3{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;

    line-height:1.2;
}

.constitution-download-box p{

    color:rgba(255,255,255,.85);

    font-size:17px;

    line-height:1.9;

    margin-bottom:0;
}

/* Button */

.constitution-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    padding:18px 35px;

    background:#ffd700;

    color:#081c4b;

    font-size:16px;
    font-weight:700;

    border-radius:60px;

    text-decoration:none;

    transition:.4s ease;

    box-shadow:
    0 15px 30px rgba(255,215,0,.30);
}

.constitution-btn:hover{

    transform:
    translateY(-5px);

    background:#ffffff;

    color:#8b0000;

    box-shadow:
    0 20px 40px rgba(255,255,255,.20);
}

.constitution-btn i{

    font-size:20px;
}

/* Mobile */

@media(max-width:991px){

.constitution-download-box{

    padding:40px 30px;
    text-align:center;
}

.constitution-download-box h3{

    font-size:30px;
}

.constitution-btn{

    margin-top:25px;
}

}

.constitution-box h2{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    color:#081c4b;

    margin-bottom:25px;

    position:relative;
}

.constitution-box h2::after{

    content:'';

    width:120px;
    height:5px;

    display:block;

    margin-top:15px;

    border-radius:20px;

    background:
    linear-gradient(
    to right,
    #8b0000,
    #d4af37
    );
}

.constitution-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    border:1px solid #eee;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.constitution-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(139,0,0,.15);
}

.constitution-card i{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #8b0000,
    #c62828
    );

    color:#fff;

    font-size:30px;
}

.constitution-card h4{

    font-size:28px;

    font-weight:700;

    color:#081c4b;

    margin-bottom:15px;
}
.constitution-intro{

    position:relative;

    padding:40px 0;

    background:
    linear-gradient(
    135deg,
    #f8fafc,
    #ffffff
    );

    overflow:hidden;
}
.constitution-intro::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(139,0,0,.04);

    top:-120px;
    right:-120px;
}

.constitution-intro::after{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(212,175,55,.05);

    bottom:-100px;
    left:-100px;
}
.constitution-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #8b0000,
    #b30000
    );

    color:#fff;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* ===================================
   SESA HISTORY HERO
=================================== */

/* ==========================
   SESA HISTORY HERO
========================== */

.sesa-history-hero{

    padding:40px 0;

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7d0203
    );

    position:relative;

    overflow:hidden;
}

.sesa-history-hero::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    top:-180px;
    right:-150px;
}

.sesa-history-content{
    position:relative;
    z-index:2;
}

.sesa-history-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:12px 24px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;
}

.sesa-history-content h1{

    color:#fff;

    font-size:68px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;
}

.sesa-history-content h1 span{
    color:#E5AE06;
}

.sesa-history-intro{

    font-size:22px !important;

    font-weight:500;

    color:#fff !important;
}

.sesa-history-content p{

    color:rgba(255,255,255,.88);

    line-height:1.9;

    font-size:17px;

    margin-bottom:20px;
}

.sesa-history-stats{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;
}

.history-stat-box{

    min-width:170px;

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(229,174,6,.20);

    text-align:center;
}

.history-stat-box h3{

    color:#E5AE06;

    font-size:32px;

    font-weight:800;

    margin-bottom:8px;
}

.history-stat-box span{

    color:#fff;

    font-size:14px;
}

.sesa-history-note{

    margin-top:35px;

    background:
    rgba(255,255,255,.08);

    border-left:5px solid #E5AE06;

    padding:25px;

    border-radius:18px;
}

.sesa-history-note h4{

    color:#E5AE06;

    margin-bottom:15px;

    font-size:24px;
}

.sesa-history-note p{

    margin-bottom:0;
}

.sesa-history-image{

    position:relative;

    text-align:center;
}

.sesa-history-image img{

    width:420px;

    max-width:100%;

    border-radius:25px;

    background:#fff;

    padding:20px;
}

.history-floating-card{

    position:absolute;

    bottom:20px;
    left:20px;

    background:#fff;

    padding:20px 25px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.history-floating-card h4{

    color:#5F0102;

    font-weight:800;

    margin-bottom:5px;
}

.history-floating-card p{

    margin:0;

    color:#666;
}

@media(max-width:991px){

.sesa-history-hero{
    text-align:center;
}

.sesa-history-content h1{
    font-size:46px;
}

.sesa-history-stats{
    justify-content:center;
}

.history-floating-card{
    position:static;
    margin-top:20px;
}

}

/* ===================================
   LEADERSHIP LEGACY SECTION
=================================== */

.sesa-leadership-legacy{

    padding:30px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );

    position:relative;

    overflow:hidden;
}

.sesa-leadership-legacy::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(229,174,6,.06);

    top:-120px;
    right:-120px;
}

.sesa-section-badge{

    display:inline-block;

    padding:10px 24px;

    background:#E5AE06;

    color:#5F0102;

    font-size:14px;

    font-weight:700;

    border-radius:50px;

    margin-bottom:20px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.sesa-section-title{

    font-size:52px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:20px;
}

.sesa-section-desc{

    max-width:900px;

    margin:0 auto 60px;

    color:#666;

    line-height:1.9;

    font-size:17px;
}

/* ==========================
   IMAGE CARDS
========================== */

.legacy-history-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

    height:100%;

    margin-bottom:30px;
}

.legacy-history-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(95,1,2,.15);
}

.legacy-history-card img{

    width:100%;

    display:block;

    background:#fff;

    padding:15px;

    transition:.4s;
}

.legacy-history-card:hover img{

    transform:scale(1.02);
}

.legacy-history-content{

    padding:30px;
}

.legacy-history-content h4{

    font-size:28px;

    font-weight:700;

    color:#5F0102;

    margin-bottom:15px;
}

.legacy-history-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   BOTTOM MESSAGE BOX
========================== */

.legacy-message-box{

    margin-top:40px;

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7a0203
    );

    padding:50px;

    border-radius:30px;

    text-align:center;

    position:relative;

    overflow:hidden;
}

.legacy-message-box::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    right:-80px;
    top:-80px;
}

.legacy-message-box h3{

    color:#E5AE06;

    font-size:38px;

    font-weight:800;

    margin-bottom:20px;
}

.legacy-message-box p{

    color:#fff;

    max-width:950px;

    margin:auto;

    line-height:2;

    font-size:17px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.sesa-section-title{

    font-size:38px;
}

.legacy-message-box{

    padding:35px 25px;
}

.legacy-message-box h3{

    font-size:28px;
}

}

.legacy-history-card{
    position:relative;
}

.legacy-year-tag{

    position:absolute;

    top:20px;
    left:20px;

    background:#5F0102;

    color:#E5AE06;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    z-index:5;

    box-shadow:
    0 8px 20px rgba(0,0,0,.15);
}




/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

/* =========================
   STATE HERO
========================= */

.sesa-state-hero{

    padding:30px 0;

    background:
    linear-gradient(135deg,#5F0102,#7d0203);
}

.sesa-state-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.sesa-state-hero-content h1{

    color:#fff;

    font-size:64px;

    font-weight:800;

    margin-bottom:20px;
}

.sesa-state-hero-content p{

    color:#fff;

    opacity:.9;

    line-height:1.9;

    font-size:17px;
}

.sesa-state-highlights{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;
}

.sesa-highlight-box{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(229,174,6,.2);

    padding:20px;

    border-radius:18px;

    min-width:150px;
}

.sesa-highlight-box h4{

    color:#E5AE06;

    margin-bottom:5px;
}

.sesa-highlight-box span{

    color:#fff;
}

.sesa-state-hero-image{

    text-align:center;
}

.sesa-state-hero-image img{

    width:350px;

    max-width:100%;
}

/* =========================
   ABOUT SECTION
========================= */

.sesa-state-about{

    padding:30px 0;

    background:#faf8f3;
}

.sesa-about-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 20px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;
}

.sesa-state-about h2{

    color:#5F0102;

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;
}

.sesa-state-about p{

    color:#555;

    line-height:1.9;
}

.sesa-state-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-state-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid #E5AE06;
}

.sesa-state-card i{

    font-size:40px;

    color:#5F0102;

    margin-bottom:20px;
}

.sesa-state-card h4{

    color:#5F0102;

    margin-bottom:12px;
}
/* ==========================
   STATE MEMBERS
========================== */

.sesa-state-members{

    padding:70px 0;

    background:#ffffff;
}

.sesa-member-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-member-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-member-desc{

    color:#666;

    line-height:1.9;

    max-width:850px;

    margin:auto auto 50px;
}

.sesa-member-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-member-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.sesa-member-image{

    background:#5F0102;

    padding:20px;
}

.sesa-member-image img{

    width:100%;

    border-radius:18px;
}

.sesa-member-content{

    padding:25px;

    text-align:center;
}

.member-designation{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-member-content h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;
}

.sesa-member-content p{

    color:#777;

    margin-bottom:0;
}

.sesa-view-team-btn{

    display:inline-block;

    background:#5F0102;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;
}

.sesa-view-team-btn:hover{

    background:#E5AE06;

    color:#5F0102;
}

/* ==========================
   STATE COMMITTEE ROLES
========================== */

.sesa-state-role-section{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-role-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-role-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-role-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-role-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-role-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.sesa-role-card i{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:#5F0102;

    color:#E5AE06;

    font-size:30px;
}

.sesa-role-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-role-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   ORGANIZATIONAL STRUCTURE
========================== */

.sesa-state-structure{

    padding:70px 0;

    background:#ffffff;
}

.sesa-structure-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-structure-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-structure-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

/* CHART */

.sesa-org-chart{

    display:flex;

    flex-direction:column;

    align-items:center;
}

.sesa-org-box{

    width:320px;

    background:#fff;

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-org-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.sesa-org-box i{

    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

    border-radius:50%;

    background:#5F0102;

    color:#E5AE06;

    font-size:28px;
}

.sesa-org-box h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;
}

.sesa-org-box p{

    color:#666;

    margin-bottom:0;
}

.sesa-org-main{

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #780102
    );

    color:#fff;
}

.sesa-org-main h4,
.sesa-org-main p{

    color:#fff;
}

.sesa-org-main i{

    background:#E5AE06;

    color:#5F0102;
}

.sesa-org-line{

    width:6px;

    height:45px;

    background:#E5AE06;

    border-radius:20px;

    margin:10px 0;
}

/* ==========================
   STATE COMMITTEE FUNCTIONS
========================== */

.sesa-state-functions{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-function-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-function-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-function-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-function-card{

    position:relative;

    background:#fff;

    padding:35px;

    border-radius:25px;

    height:100%;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-function-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.sesa-function-number{

    font-size:55px;

    font-weight:800;

    color:rgba(229,174,6,.25);

    line-height:1;

    margin-bottom:15px;
}

.sesa-function-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-function-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   STATE COMMITTEE MESSAGE
========================== */

.sesa-state-message{

    padding:70px 0;

    background:#ffffff;
}

.sesa-message-image{

    text-align:center;
}

.sesa-message-image img{

    width:350px;

    max-width:100%;

    border-radius:25px;

    padding:20px;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.sesa-message-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-message-content h2{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:25px;

    line-height:1.3;
}

.sesa-message-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.sesa-message-sign{

    margin-top:30px;

    padding-top:20px;

    border-top:2px solid #E5AE06;
}

.sesa-message-sign h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;
}

.sesa-message-sign span{

    color:#777;
}

/* ==========================
   STATE CTA SECTION
========================== */

.sesa-state-cta{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-cta-wrapper{

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #780102
    );

    border-radius:30px;

    padding:50px;

    position:relative;

    overflow:hidden;
}

.sesa-cta-wrapper::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    right:-80px;
    top:-80px;
}

.sesa-cta-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-cta-content h2{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.3;
}

.sesa-cta-content p{

    color:rgba(255,255,255,.90);

    line-height:1.9;

    margin-bottom:0;
}

.sesa-cta-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.sesa-cta-btn{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:14px 20px;

    border-radius:15px;

    font-weight:700;

    transition:.4s;
}

.sesa-btn-primary{

    background:#E5AE06;

    color:#5F0102;
}

.sesa-btn-primary:hover{

    background:#fff;

    color:#5F0102;
}

.sesa-btn-secondary{

    background:
    rgba(255,255,255,.10);

    color:#fff;

    border:1px solid rgba(255,255,255,.15);
}

.sesa-btn-secondary:hover{

    background:#E5AE06;

    color:#5F0102;
}

@media(max-width:991px){

.sesa-cta-wrapper{

    padding:35px 25px;
}

.sesa-cta-content h2{

    font-size:32px;
}

.sesa-cta-buttons{

    margin-top:30px;
}

}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::office-bearers*/


/* ==========================
   OFFICE BEARERS HERO
========================== */

.sesa-office-hero{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7b0203
    );

    overflow:hidden;

    position:relative;
}

.sesa-office-hero::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    top:-150px;
    right:-120px;
}

.sesa-office-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.sesa-office-hero-content h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;
}

.sesa-office-intro{

    color:#fff !important;

    font-size:21px !important;

    font-weight:500;
}

.sesa-office-hero-content p{

    color:rgba(255,255,255,.88);

    line-height:1.9;
}

.sesa-office-stats{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
}

.office-stat-box{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(229,174,6,.20);

    padding:18px;

    border-radius:18px;

    min-width:150px;
}

.office-stat-box h3{

    color:#E5AE06;

    font-size:24px;

    margin-bottom:5px;
}

.office-stat-box span{

    color:#fff;
}

.sesa-office-hero-image{

    text-align:center;
}

.sesa-office-hero-image img{

    width:350px;

    max-width:100%;
}

/* ==========================
   ABOUT OFFICE BEARERS
========================== */

.sesa-office-about{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-about-tag{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:18px;
}

.sesa-office-about-content h2{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;
}

.sesa-office-about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.sesa-office-list{

    margin:25px 0 0;

    padding:0;

    list-style:none;
}

.sesa-office-list li{

    position:relative;

    padding-left:30px;

    margin-bottom:15px;

    color:#444;

    font-weight:500;
}

.sesa-office-list li::before{

    content:'✓';

    position:absolute;

    left:0;

    color:#E5AE06;

    font-weight:700;
}

/* RIGHT GRID */

.sesa-office-info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.sesa-info-box{

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

    transition:.4s;
}

.sesa-info-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(95,1,2,.12);
}

.sesa-info-box h3{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.sesa-info-box p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;
}

@media(max-width:768px){

.sesa-office-info-grid{

    grid-template-columns:1fr;
}

.sesa-office-about-content h2{

    font-size:32px;
}

}

/* ==========================
   PRINCIPAL OFFICE BEARERS
========================== */

.sesa-principal-office{

    padding:70px 0;

    background:#ffffff;
}

.sesa-principal-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-principal-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-principal-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-principal-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-principal-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.sesa-principal-img{

    background:#5F0102;

    padding:20px;
}

.sesa-principal-img img{

    width:100%;

    border-radius:18px;
}

.sesa-principal-content{

    text-align:center;

    padding:25px;
}

.sesa-principal-content span{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-principal-content h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;
}

.sesa-principal-content p{

    color:#777;

    margin-bottom:0;
}

/* ==========================
   EXECUTIVE OFFICE BEARERS
========================== */

.sesa-executive-office{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-executive-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-executive-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-executive-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-executive-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-executive-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.executive-icon{

    width:85px;
    height:85px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:#5F0102;

    color:#E5AE06;

    font-size:30px;
}

.sesa-executive-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-executive-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   DUTIES & RESPONSIBILITIES
========================== */

.sesa-duty-section{

    padding:70px 0;

    background:#ffffff;
}

.sesa-duty-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-duty-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-duty-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-duty-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    height:100%;

    text-align:center;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-duty-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.duty-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#5F0102;

    color:#E5AE06;

    font-size:30px;
}

.sesa-duty-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-duty-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   OFFICE STRUCTURE
========================== */

.sesa-office-structure{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-office-hierarchy{

    display:flex;

    flex-direction:column;

    align-items:center;

    margin-top:50px;
}

.sesa-hierarchy-box{

    background:#fff;

    padding:22px 35px;

    border-radius:18px;

    text-align:center;

    min-width:260px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-hierarchy-box:hover{

    transform:translateY(-5px);
}

.sesa-hierarchy-box h4{

    color:#5F0102;

    margin:0;

    font-size:22px;

    font-weight:700;
}

.hierarchy-primary{

    background:#5F0102;
}

.hierarchy-primary h4{

    color:#E5AE06;
}

.hierarchy-members{

    min-width:350px;
}

.hierarchy-members p{

    margin:10px 0 0;

    color:#666;
}

.hierarchy-line{

    width:5px;

    height:40px;

    background:#E5AE06;

    margin:10px 0;

    border-radius:20px;
}

.sesa-hierarchy-row{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;
}

@media(max-width:768px){

.sesa-hierarchy-row{

    flex-direction:column;

    width:100%;
}

.sesa-hierarchy-box{

    min-width:100%;
}

.hierarchy-members{

    min-width:100%;
}

}

/* ==========================
   LEADERSHIP MESSAGE
========================== */

.sesa-leadership-message{

    padding:70px 0;

    background:#ffffff;
}

.sesa-leader-image{

    text-align:center;
}

.sesa-leader-image img{

    width:350px;

    max-width:100%;

    padding:20px;

    border-radius:25px;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.sesa-leader-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-leader-content h2{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.3;
}

.sesa-leader-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.leader-signature{

    margin-top:30px;

    padding-top:20px;

    border-top:2px solid #E5AE06;
}

.leader-signature h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;
}

.leader-signature span{

    color:#777;
}

/* ==========================
   CONTACT INFORMATION
========================== */

.sesa-office-contact{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-contact-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-contact-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.sesa-contact-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.sesa-contact-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.sesa-contact-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.contact-icon{

    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#5F0102;

    color:#E5AE06;

    font-size:28px;
}

.sesa-contact-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.sesa-contact-card p{

    color:#666;

    margin-bottom:0;
}

.sesa-contact-note{

    margin-top:40px;

    background:#5F0102;

    padding:35px;

    border-radius:25px;

    text-align:center;
}

.sesa-contact-note h4{

    color:#E5AE06;

    font-size:28px;

    margin-bottom:15px;
}

.sesa-contact-note p{

    color:#fff;

    line-height:1.9;

    margin-bottom:0;
}

/*:::::::::::::::::::::::::::::::::::::::former-presidents*/



/* ==========================
   FORMER PRESIDENTS HERO
========================== */

.sesa-former-hero{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7b0203
    );
}

.sesa-former-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-former-content h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;
}

.former-intro{

    color:#fff !important;

    font-size:20px !important;

    font-weight:500;
}

.sesa-former-content p{

    color:rgba(255,255,255,.88);

    line-height:1.9;
}

.former-stats{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
}

.former-stat-box{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(229,174,6,.20);

    padding:18px;

    border-radius:18px;

    min-width:150px;
}

.former-stat-box h3{

    color:#E5AE06;

    margin-bottom:5px;
}

.former-stat-box span{

    color:#fff;
}

.former-hero-image{

    text-align:center;
}

.former-hero-image img{

    width:350px;

    max-width:100%;
}

/* ==========================
   ABOUT FORMER PRESIDENTS
========================== */

.sesa-former-about{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.former-about-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-former-about-content h2{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;
}

.sesa-former-about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.former-highlight-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.former-highlight-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.former-highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.former-highlight-card h3{

    color:#5F0102;

    font-size:34px;

    font-weight:800;

    margin-bottom:10px;
}

.former-highlight-card p{

    color:#666;

    margin-bottom:0;
}

@media(max-width:768px){

.former-highlight-grid{

    grid-template-columns:1fr;
}

}

/* ==========================
   LEADERSHIP TIMELINE
========================== */

.sesa-legacy-timeline{

    padding:70px 0;

    background:#ffffff;

    position:relative;
}

.legacy-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.legacy-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.legacy-desc{

    max-width:850px;

    margin:auto auto 60px;

    color:#666;

    line-height:1.9;
}

.sesa-timeline-wrapper{

    position:relative;

    max-width:1100px;

    margin:auto;
}

.timeline-center-line{

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#E5AE06;

    transform:translateX(-50%);
}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 40px;
}

.timeline-item.left{

    left:0;

    text-align:right;
}

.timeline-item.right{

    left:50%;
}

.timeline-content{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.timeline-content:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.timeline-year{

    display:inline-block;

    background:#5F0102;

    color:#E5AE06;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;
}

.timeline-content h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.timeline-content p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;
}

.timeline-item::before{

    content:'';

    position:absolute;

    width:18px;

    height:18px;

    background:#E5AE06;

    border:4px solid #5F0102;

    border-radius:50%;

    top:40px;
}

.timeline-item.left::before{

    right:-9px;
}

.timeline-item.right::before{

    left:-9px;
}

@media(max-width:991px){

.timeline-center-line{

    left:20px;
}

.timeline-item{

    width:100%;

    left:0 !important;

    padding-left:60px;

    padding-right:0;

    text-align:left !important;
}

.timeline-item::before{

    left:11px !important;
}

}

/* ==========================
   HISTORICAL RECORDS
========================== */

.sesa-history-gallery{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.history-gallery-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.history-gallery-title{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;
}

.history-gallery-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.history-record-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.history-record-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.history-record-card img{

    width:100%;

    display:block;
}

.history-year-ribbon{

    position:absolute;

    top:20px;

    left:20px;

    background:#5F0102;

    color:#E5AE06;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    z-index:2;
}

.history-record-content{

    padding:25px;
}

.history-record-content h4{

    color:#5F0102;

    font-size:26px;

    font-weight:700;

    margin-bottom:12px;
}

.history-record-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

.history-record-note{

    margin-top:50px;

    background:#5F0102;

    padding:40px;

    border-radius:25px;

    text-align:center;
}

.history-record-note h3{

    color:#E5AE06;

    font-size:34px;

    font-weight:800;

    margin-bottom:15px;
}

.history-record-note p{

    color:#fff;

    max-width:950px;

    margin:auto;

    line-height:1.9;
}

/* ==========================
   CONTRIBUTIONS & ACHIEVEMENTS
========================== */

.sesa-contributions{

    padding:70px 0;

    background:#ffffff;
}

.contribution-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.contribution-title{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;
}

.contribution-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.contribution-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.contribution-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid #E5AE06;

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.contribution-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#5F0102;

    color:#E5AE06;

    font-size:30px;
}

.contribution-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.contribution-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   TRIBUTE SECTION
========================== */

.sesa-tribute-section{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.sesa-tribute-wrapper{

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #750202
    );

    border-radius:35px;

    padding:60px 50px;

    position:relative;

    overflow:hidden;
}

.sesa-tribute-wrapper::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    top:-100px;
    right:-100px;
}

.tribute-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.sesa-tribute-wrapper h2{

    color:#fff;

    font-size:46px;

    font-weight:800;

    margin-bottom:25px;
}

.tribute-intro{

    color:#fff !important;

    font-size:20px !important;
}

.sesa-tribute-wrapper p{

    color:rgba(255,255,255,.90);

    line-height:1.9;

    margin-bottom:18px;
}

.tribute-card{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(229,174,6,.15);

    border-radius:20px;

    padding:25px;

    text-align:center;
}

.tribute-card h4{

    color:#E5AE06;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.tribute-card p{

    margin-bottom:0;
}

.tribute-quote{

    margin-top:40px;

    text-align:center;
}

.tribute-quote blockquote{

    color:#E5AE06;

    font-size:24px;

    font-style:italic;

    font-weight:600;

    line-height:1.8;

    margin:0;
}

@media(max-width:768px){

.sesa-tribute-wrapper{

    padding:40px 25px;
}

.sesa-tribute-wrapper h2{

    font-size:34px;
}

.tribute-quote blockquote{

    font-size:20px;
}

}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::advisory-committee*/

/* ==========================
   ADVISORY HERO
========================== */

.sesa-advisory-hero{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7d0203
    );

    position:relative;

    overflow:hidden;
}

.sesa-advisory-hero::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    right:-120px;
    top:-120px;
}

.sesa-advisory-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.sesa-advisory-content h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;
}

.advisory-intro{

    color:#fff !important;

    font-size:20px !important;

    font-weight:500;
}

.sesa-advisory-content p{

    color:rgba(255,255,255,.90);

    line-height:1.9;
}

.advisory-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:25px;
}

.advisory-highlight-box{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(229,174,6,.15);

    border-radius:18px;

    padding:18px;

    min-width:150px;
}

.advisory-highlight-box h3{

    color:#E5AE06;

    margin-bottom:5px;

    font-size:22px;
}

.advisory-highlight-box span{

    color:#fff;

    font-size:14px;
}

.advisory-hero-image{

    text-align:center;
}

.advisory-hero-image img{

    width:350px;

    max-width:100%;
}

/* ==========================
   ABOUT ADVISORY COMMITTEE
========================== */

.sesa-advisory-about{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.advisory-about-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.sesa-advisory-about-content h2{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;
}

.sesa-advisory-about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.advisory-info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.advisory-info-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.advisory-info-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid #E5AE06;

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.advisory-info-card h3{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.advisory-info-card p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;
}

@media(max-width:768px){

.advisory-info-grid{

    grid-template-columns:1fr;
}

}
/* ==========================
   ADVISORY MEMBERS
========================== */

.sesa-advisory-members{

    padding:70px 0;

    background:#ffffff;
}

.advisory-member-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.advisory-member-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.advisory-member-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.advisory-member-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    text-align:center;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.advisory-member-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.advisory-member-image{

    background:#5F0102;

    padding:25px;
}

.advisory-member-image img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #E5AE06;
}

.advisory-member-content{

    padding:30px;
}

.advisory-member-content h4{

    color:#5F0102;

    font-size:26px;

    font-weight:700;

    margin-bottom:10px;
}

.advisory-member-content span{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;
}

.advisory-member-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   ADVISORY ROLES
========================== */

.sesa-advisory-roles{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.advisory-role-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.advisory-role-title{

    font-size:42px;

    font-weight:800;

    color:#5F0102;

    margin-bottom:15px;
}

.advisory-role-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.advisory-role-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.advisory-role-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid #E5AE06;

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);
}

.advisory-role-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#5F0102;

    color:#E5AE06;

    font-size:30px;
}

.advisory-role-card h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.advisory-role-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   GUIDANCE & SUPPORT AREAS
========================== */

.sesa-guidance-section{

    padding:70px 0;

    background:#ffffff;
}

.guidance-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.guidance-title{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;
}

.guidance-desc{

    max-width:850px;

    margin:auto auto 50px;

    color:#666;

    line-height:1.9;
}

.guidance-box{

    background:#fff;

    border-radius:25px;

    padding:30px;

    height:100%;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.guidance-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(95,1,2,.15);

    border-bottom:5px solid #E5AE06;
}

.guidance-number{

    font-size:50px;

    font-weight:800;

    color:rgba(229,174,6,.25);

    line-height:1;

    margin-bottom:15px;
}

.guidance-box h4{

    color:#5F0102;

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;
}

.guidance-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* ==========================
   ADVISORY MESSAGE
========================== */

.sesa-advisory-message{

    padding:70px 0;

    background:
    linear-gradient(
    135deg,
    #faf8f3,
    #ffffff
    );
}

.advisory-message-image{

    text-align:center;
}

.advisory-message-image img{

    width:350px;

    max-width:100%;

    padding:20px;

    border-radius:25px;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.advisory-message-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;
}

.advisory-message-content h2{

    color:#5F0102;

    font-size:42px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;
}

.advisory-message-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

.advisory-signature{

    margin-top:30px;

    padding-top:20px;

    border-top:2px solid #E5AE06;
}

.advisory-signature h4{

    color:#5F0102;

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;
}

.advisory-signature span{

    color:#777;
}

/* ==========================
   ADVISORY CTA
========================== */

.sesa-advisory-cta{

    padding:70px 0;

    background:#ffffff;
}

.sesa-advisory-cta-box{

    background:
    linear-gradient(
    135deg,
    #5F0102,
    #7a0202
    );

    border-radius:35px;

    padding:55px;

    position:relative;

    overflow:hidden;
}

.sesa-advisory-cta-box::before{

    content:'';

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
    rgba(229,174,6,.08);

    right:-120px;
    top:-120px;
}

.cta-badge{

    display:inline-block;

    background:#E5AE06;

    color:#5F0102;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:18px;
}

.sesa-advisory-cta-content h2{

    color:#fff;

    font-size:46px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.3;
}

.sesa-advisory-cta-content p{

    color:rgba(255,255,255,.90);

    line-height:1.9;

    margin-bottom:0;
}

.sesa-advisory-cta-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.advisory-btn{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:15px 22px;

    border-radius:15px;

    font-weight:700;

    transition:.4s;
}

.advisory-btn-primary{

    background:#E5AE06;

    color:#5F0102;
}

.advisory-btn-primary:hover{

    background:#fff;

    color:#5F0102;
}

.advisory-btn-outline{

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;
}

.advisory-btn-outline:hover{

    background:#E5AE06;

    color:#5F0102;
}

@media(max-width:991px){

.sesa-advisory-cta-box{

    padding:35px 25px;
}

.sesa-advisory-cta-content h2{

    font-size:34px;
}

.sesa-advisory-cta-buttons{

    margin-top:30px;
}

}