 .introduction-timeline {
     width: 100%;
     padding: 80px 20px;
     text-align: center;
     background-color: #f4f4f4;
     position: relative;
 }

 .introduction-timeline h2 {
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: #ef9b11 !important;
     margin-bottom: 50px;
 }

 .timeline-carousel-container {
     position: relative;
     max-width: 1600px;
     margin: 0 auto;
     /* Padding reserves space for arrows */
     padding: 0 70px;
 }

 .timeline-carousel-wrapper {
     overflow: hidden;
     width: 100%;
     padding: 20px 0 40px 0;
 }

 .timeline-track {
     display: flex;
     gap: 20px;
     width: max-content;
     flex-wrap: nowrap;
 }

 .timeline-item {
     background: #fff;
     border-radius: 25px;
     padding: 50px 50px;
     position: relative;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-direction: column;
     align-items: center;
     min-height: 450px;
     flex-shrink: 0;
     flex-grow: 0;
 }

 .year-label {
     position: absolute;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
     width: 40px;
     height: 160px;
     border-radius: 0 100px 100px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: 1.3rem;
     writing-mode: vertical-rl;
     text-orientation: mixed;
     letter-spacing: 3px;
     z-index: 2;
 }

 .item-2012 .year-label {
     background-color: #7CC1C7;
 }

 .item-2013 .year-label {
     background-color: #CFBEA5;
 }

 .item-2015 .year-label {
     background-color: #9ac77c;
 }

 .item-2018 .year-label {
     background-color: #744808;
 }

 .item-2021 .year-label {
     background-color: #57583d;
 }

 .item-2024 .year-label {
     background-color: #ef9b11;
 }

 .blob-container {
     width: 200px;
     height: 200px;
     background-color: #f0ebe6;
     margin-bottom: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .blob-1 {
     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
 }

 .blob-2 {
     border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
     background-color: #f2eee9;
 }

 .blob-3 {
     border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
     background-color: #f4f0eb;
 }

 .blob-container img {
     width: 140px;
     height: auto;
     display: block;
 }

 .timeline-item h3 {
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: #222;
 }

 .timeline-item p {
     font-size: 1rem;
     line-height: 1.6;
     color: #666;
     max-width: 260px;
 }

 /* MOBILE FIX */
@media (max-width: 768px) {
    .year-label {
      top: 20%;
    }

}

 .nav-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background-color: #ef9b11 !important;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: transform 0.3s, background-color 0.3s;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }

 .nav-arrow:hover {
     transform: translateY(-50%) scale(1.1);
     background-color: #333;
 }

 .nav-arrow.prev {
     left: 0;
 }

 .nav-arrow.next {
     right: 0;
 }

 .nav-arrow svg {
     width: 24px;
     height: 24px;
     fill: #fff;
 }

 /* --- Mobile View Adjustments --- */
 @media (max-width: 576px) {
     .introduction-timeline {
         padding: 50px 10px;
     }

     .introduction-timeline h2 {
         font-size: 2rem;
         margin-bottom: 30px;
     }

     .timeline-carousel-container {
         padding: 0 20px;
         /* Space for arrows */
     }

     .timeline-track {
         gap: 20px;
         /* Smaller gap on mobile */
     }

     .timeline-item {
         /* Force exact 100% width of the wrapper area */
         /* width: 100%;
        flex: 0 0 100%;  */
         min-height: 400px;
         padding: 40px 20px;
         display: flex;
         object-fit: cover;
         flex-direction: column;
         align-items: center;
     }

     .timeline-item .blob-container {
         width: 150px;
         height: 150px;
     }

     .nav-arrow {
         width: 40px;
         height: 40px;
     }

     .nav-arrow.prev {
         left: 0;
     }

     .nav-arrow.next {
         right: 0;
     }
 }



 /* Main Section with Yellow Background */
 .introduction-section {
     background-color: #ef9b11;
     width: 100%;
     padding: 50px 20px;
     /* As per your snippet */
     display: flex;
     margin-top: 100px;
     /* As per your snippet */
     margin-bottom: 50px;
     /* As per your snippet */
     justify-content: center;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .introduction-container {
     max-width: 1200px;
     width: 100%;
     display: flex;
     flex-direction: row;
     /* Desktop: Row (Video Left, Content Right) */
     align-items: center;
     gap: 30px;
 }

 /* Video Wrapper - The "Pop-out" Effect */
 .video-wrapper {
     flex: 1;
     position: relative;
     min-width: 300px;
     /* Negative margins pull the element outside the yellow background */
     margin-top: -100px;
     margin-bottom: -100px;
     z-index: 10;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
     background: #000;
     cursor: pointer;
 }

 /* The Video Element */
 .video-wrapper video {
     width: 100%;
     height: 100%;
     display: block;
     /* object-fit: inherit; */
     aspect-ratio: 1 / 1;
 }

 /* Custom Play Button Overlay */
 .play-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0, 0, 0, 0.1);
     transition: opacity 0.3s ease;
     z-index: 2;
 }

 .video-wrapper.playing .play-overlay {
     display: none;
 }

 .play-button {
     width: 80px;
     height: 80px;
     background-color: #ffd700;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.3);
     transition: transform 0.3s ease;
 }

 .video-wrapper:hover .play-button {
     transform: scale(1.1);
 }

 .play-icon {
     width: 0;
     height: 0;
     border-top: 12px solid transparent;
     border-bottom: 12px solid transparent;
     border-left: 20px solid #ffff;
     margin-left: 5px;
 }

 /* Content Wrapper */
 .content-wrapper {
     flex: 1.2;
     color: #000;
     text-align: left;
 }

 .content-wrapper h2 {
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 3.2rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #ffffff !important;
     line-height: 1.1;
 }

 .content-wrapper p {
     font-family: "Montserrat", sans-serif;
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 20px;
     color: #ffffff !important;
     font-weight: 400;

     text-align: justify;
     text-justify: inter-word;
     hyphens: auto;
     -webkit-hyphens: auto;
     -ms-hyphens: auto;
 }

 @media (max-width: 992px) {
     .introduction-section {
         padding: 40px 20px;
         margin-top: 20px;
         margin-bottom: 20px;
     }

     .introduction-container {
         flex-direction: column-reverse;
         gap: 40px;
     }

     .video-wrapper {
         width: 100%;
         margin-top: 0;
         margin-bottom: 0;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     }

     .video-wrapper video {
         aspect-ratio: 16 / 9;
     }

     .content-wrapper {
         padding: 0 5px;
     }
 }

 @media (max-width: 576px) {
     .content-wrapper h2 {
         font-size: 1.8rem;
     }

     .content-wrapper p {
         font-size: 14px;
     }

     .play-button {
         width: 60px;
         height: 60px;
     }
 }




 /* Section Wrapper */
 .introduction-message {
     width: 100%;
     padding: 80px 20px;
     background-color: #fff;
     display: flex;
     justify-content: center;
 }

 .message-container {
     max-width: 1200px;
     width: 100%;
     display: flex;
     flex-direction: row;
     align-items: flex-start;
     /* Aligns top of image with top of text card */
     gap: 60px;
 }

 /* Left Side: Text Card */
 .text-card {
     flex: 1.5;
     background-color: #f9f9f9;
     /* Light grey background */
     padding: 50px;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     /* Ensures the border stays inside rounded corners if applied */
 }

 .text-card h2 {
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 2.2rem;
     font-weight: 700;
     color: #ef9b11 !important;
     margin-bottom: 30px;
 }

 /* .text-card p {
     font-family: "Montserrat", sans-serif;
     font-size: 15.5px;
     font-weight: 400;
     line-height: 1.75;
     letter-spacing: 0.2px;
     color: #636363;
     margin-bottom: 14px;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 } */

 .text-card p {
     font-family: "Montserrat", sans-serif;
     font-size: 15.5px;
     font-weight: 400;
     line-height: 1.75;
     letter-spacing: 0.15px;
     color: #636363;
     margin-bottom: 14px;
     -webkit-font-smoothing: antialiased;

     /* Modern justify styling */
     text-align: justify;
     text-justify: inter-word;
     hyphens: auto;
     -webkit-hyphens: auto;
     -ms-hyphens: auto;
 }

 .signature-block {
     margin-top: 40px;
 }

 .signature-block .name {
     font-family: "Georgia", "Times New Roman", serif;
     font-weight: 700;
     font-size: 1.2rem;
     color: #0d1b2a;
     display: block;
     margin-bottom: 5px;
 }

 /* Decorative Bottom Pattern */
 .decorative-border {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 8px;
     background: #ef9b11;
     background-size: 60px 100%;
 }

 /* Right Side: Image & Caption */
 .head-image-wrapper {
     flex: 0.8;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .head-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin-bottom: 15px;
 }

 .caption {
     font-size: 0.95rem;
     color: #555;
     font-weight: 400;
     margin-top: 10px;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .introduction-message {
         padding: 10px 0;
     }

     .message-container {
         flex-direction: column;
         /* Stack elements vertically */
         gap: 40px;
     }

     /* UPDATED: Text Card Order 1 (Top) */
     .text-card {
         order: 1;
         width: 100%;
         padding: 30px;
     }

     /* UPDATED: Image Wrapper Order 2 (Bottom) */
     .head-image-wrapper {
         order: 2;
         width: 100%;
         max-width: 400px;
         margin: 0 auto;
     }
 }

 @media (max-width: 576px) {
     .text-card h2 {
         font-size: 28px;
     }

     .text-card {
         padding: 25px;
     }

     .text-card p {
         font-size: 14px;
     }

     .head-image-wrapper {
         flex: 0.1;
     }
 }



 .introduction-grid {
     width: 100%;
     padding: 20px 20px;
     background-color: #fff;
     display: flex;
     justify-content: center;
 }

 .grid-container {
     max-width: 1200px;
     width: 100%;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
 }

 /* --- ITEM CONTAINER --- */
 .grid-item {
     position: relative;
     display: block;
     width: 100%;
     height: 350px;
     overflow: hidden;
     text-decoration: none;
     border-radius: 4px;
     cursor: pointer;
 }

 /* 1. IMAGE */
 .grid-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.6s ease;
     z-index: 1;
 }

 /* 2. HOVER OVERLAY (The Orange Shade/Shadow) */
 /* This sits ON TOP of the image (z-index 2) */
 .hover-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
     /* Default dark gradient for text */
     z-index: 2;
     transition: all 0.4s ease;
 }

 /* 3. INNER BORDER (The 1px Orange Line) */
 .inner-border {
     position: absolute;
     top: 30px;
     left: 30px;
     right: 30px;
     bottom: 30px;
     border: 1px solid #ef9b11;
     z-index: 3;
     pointer-events: none;
 }

 /* 4. TITLE TEXT */
 .grid-item h3 {
     position: absolute;
     bottom: 30px;
     /* Aligned with border */
     left: 30px;
     /* Aligned with border */
     color: #fff !important;
     /* Forces white color */
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 2.2rem;
     font-weight: 700;
     margin: 0;
     z-index: 4;
     /* Top most layer */
     transition: transform 0.4s ease;
 }

 /* --- HOVER ANIMATIONS --- */

 /* Zoom Image */
 .grid-item:hover img {
     transform: scale(1.1);
 }

 /* Show Orange Tint and Shadow on Overlay */
 .grid-item:hover .hover-overlay {
     /* This creates the light orange shade over the whole image */
     background-color: rgba(239, 155, 17, 0.3);

     /* This creates the inner shadow effect */
     box-shadow: inset 0 0 80px rgba(239, 155, 17, 0.6);

     /* Remove the black gradient so the orange pops, or keep it subtle? 
           Let's blend them or override. Here we override to pure orange tint. */
     background-image: none;
 }

 /* Move Text Right */
 .grid-item:hover h3 {
     transform: translateX(30px);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .grid-container {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .grid-item {
         height: 300px;
     }

     /* Adjust border/text position for smaller screens if needed */
     .inner-border {
         top: 20px;
         left: 20px;
         right: 20px;
         bottom: 20px;
     }

     .grid-item h3 {
         bottom: 20px;
         left: 20px;
         font-size: 1.8rem;
     }
 }




 .introduction-authorixzations {
     width: 100%;
     padding: 40px 20px 80px 20px;
     background-color: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 /* --- TOP SEPARATOR --- */
 .auth-separator {
     width: 100%;
     max-width: 1200px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 60px;
     gap: 15px;
 }

 .separator-line {
     height: 1px;
     background-color: #ed7623;
     /* Green color from image */
     flex: 1;
 }

 /* CSS Diamond Icon */
 .diamond-icon {
     width: 24px;
     height: 24px;
     position: relative;
     transform: rotate(45deg);
     display: flex;
     flex-wrap: wrap;
 }

 .d-part {
     width: 12px;
     height: 12px;
 }

 .d-top-left {
     background-color: #e53935;
 }

 /* Red */
 .d-top-right {
     background-color: #43a047;
 }

 /* Green */
 .d-bottom-left {
     background-color: #fdd835;
 }

 /* Yellow */
 .d-bottom-right {
     background-color: #1e88e5;
 }

 /* Blue */

 /* --- CONTENT CONTAINER --- */
 .auth-container {
     max-width: 1200px;
     width: 100%;
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
     gap: 60px;
 }

 /* Left Side: Text */
 .auth-text-column {
     flex: 1.2;
 }

 .auth-text-column h2 {
     font-family: "Georgia", "Times New Roman", serif;
     font-size: 2.8rem;
     font-weight: 700;
     color: #000;
     margin-bottom: 25px;
 }

 .auth-text-column p {
     font-size: 1.05rem;
     line-height: 1.8;
     color: #4a4a4a;
     font-weight: 400;
 }

 /* Right Side: Logos */
 .auth-logo-column {
     flex: 0.8;
     display: flex;
     flex-direction: column;
     gap: 30px;
     padding-top: 10px;
 }

 .logo-row {
     display: flex;
     justify-content: flex-start;
     /* Aligns logos to the left/start of their container */
     align-items: center;
     gap: 30px;
     flex-wrap: wrap;
 }

 .logo-row img {
     height: 50px;
     /* Adjust height to match visual balance */
     width: auto;
     object-fit: contain;
     filter: grayscale(0%);
     /* Full color as per image */
 }

 /* Specific sizing tweaks to match the visual weight in the image */
 .logo-ib {
     height: 60px !important;
 }

 .logo-cis {
     height: 40px !important;
 }

 .logo-msa {
     height: 45px !important;
 }

 .logo-aisa {
     height: 45px !important;
 }

 .logo-cb {
     height: 45px !important;
 }

 .logo-senia {
     height: 45px !important;
 }

 .logo-span {
     height: 45px !important;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .auth-container {
         flex-direction: column;
         gap: 40px;
     }

     .auth-logo-column {
         width: 100%;
         align-items: center;
     }

     .logo-row {
         justify-content: center;
     }
 }

 @media (max-width: 576px) {
     .auth-text-column h2 {
         font-size: 2rem;
     }

     .logo-row {
         gap: 20px;
     }

     .logo-row img {
         height: 40px !important;
     }
 }



 .leadership-container {
     max-width: 1200px;
     width: 90%;
     margin: 0 auto;
     padding: 20px 0;
 }

 .intro-paragraph {
     font-family: 'Montserrat', sans-serif;
     font-size: 14px;
     line-height: 1.6;
     color: #333;
     text-align: left;
     margin-bottom: 40px;
     max-width: 800px;
 }

 .leadership-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: left;
     gap: 20px;
 }

 .leader-card {
     background-color: #fff5e5;
     border-radius: 4px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     padding-bottom: 10px;
     width: calc(25% - 16px);
     min-width: 180px;
     text-align: center;
     margin-bottom: 20px;
 }

 .leader-photo {
     width: 100%;
     height: auto;
     object-fit: cover;
     display: block;
 }

 .leader-info {
     padding-top: 10px;
     padding: 10px 5px 0 5px;
 }

 .leader-name {
     font-family: "PT Sans", sans-serif;
     font-size: 18px;
     font-weight: 700;
     /* PT Sans Bold for the name (as requested) */
     color: #ef9b11 !important;
     margin: 10px 0 5px 0;
     line-height: 1.2;
 }

 .leader-title {
     font-family: "PT Sans", sans-serif;
     font-size: 14px;
     font-weight: 400;
     /* PT Sans Regular for the title (as requested) */
     color: #555;
     /* Slightly muted color for title */
     margin: 0;
     line-height: 1.4;
 }

 /* ==============================
   RESPONSIVE FIX ONLY
============================== */

/* Tablet & below */
@media (max-width: 1100px) {
    .leader-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .leader-card {
        width: 100%;
        flex: 1 1 220px;   /* 👈 auto adjust */
        min-width: 220px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .leader-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}


 .leadership-heading {
     font-family: 'Montserrat', sans-serif;
     text-align: left;
     font-size: 28px;
     font-weight: 700;
     margin-top: 10px;
     margin-bottom: 30px;
     color: #ef9b11 !important;
     padding-bottom: 10px;
     border-bottom: 2px solid #ccc;
     display: block;
     max-width: 1200px;
     margin-left: auto;
     margin-right: auto;
 }

 .leadership-heading-2 {
     font-family: 'Montserrat', sans-serif;
     text-align: left;
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 30px;
     color: #ef9b11 !important;
     padding-bottom: 10px;
     border-bottom: 2px solid #ccc;
     display: block;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }



 .custom-container {
     max-width: 1200px !important;
     padding: 50px 0;
 }

 .mv-heading {
     font-size: 1.5rem;
     font-weight: 700;
     color: #333;
     display: inline-block;
     position: relative;
     padding-left: 15px;
     margin-bottom: 1.5rem;
 }

 .mv-heading::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
     width: 4px;
     height: 120%;
     background-color: #ef9b11;
 }

 .mv-paragraph {
     font-size: 1rem;
     line-height: 1.8;
     font-weight: 400;
     color: #555;
     text-align: justify;
     text-justify: inter-word;
     hyphens: auto;
     -webkit-hyphens: auto;
     -ms-hyphens: auto;
     padding: 0 16px;
 }

 @media (max-width: 768px) {
     .custom-container {
         padding: 20px 0 10px;
     }
 }









 /* Main 1200px container alignment */
 #leadership-accordion-section {
     max-width: 1200px;
     width: 100%;
     margin: 0 auto;
     /* keeps it inside 1200px layout */
     padding-left: 0;
     padding-right: 0;
 }

 /* Accordion should start from LEFT of 1200px container */
 #leadership-accordion-section .canary-overview-accordion {
     margin-left: 0;
     margin-right: auto;
 }

 /* If parent is flex & centering */
 .leadership-container {
     display: block !important;
 }

 /* Accordion items full usable width */
 #leadership-accordion-section .accordion-item {
     width: 100%;
 }




 /* Tablet */
 @media (max-width: 991px) {
     .leader-photo {
         border-radius: 6px;
         /* optional soft look */
     }
 }

 /* Mobile */
 @media (max-width: 575px) {
     .leader-photo {
         width: 50%;
         height: auto;
         margin: 0 auto;
         object-fit: contain;
         /* prevent harsh crop on mobile */
     }
 }