/* Force one consistent font across the entire page.
   NOTE: this previously referenced 'Gilroy', which is never loaded anywhere
   in this project (no @font-face, no <link>), so the browser was silently
   falling back to sans-serif for the whole page. Pointed at 'Poppins',
   which IS loaded via Google Fonts with &display=swap, so font-display
   now actually takes effect instead of doing nothing. */
  *, 
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, div, button, input, textarea {
   font-family: 'Poppins', Arial, sans-serif !important;
  }

  /* Heading font weight - Poppins 700 */
  h1, h2, h3, h4, h5, h6,
  .welcome-title,
  .uxj-services-title,
  .chairman-content h2,
  .left h2,
  .affiliations h2,
  .success-stories h2,
  .section-container h2,
  .ojxv10-content h2 {
    font-weight: 700 !important;
    
  }


  /* Paragraph styling - Calibri fallback, size 15px, line-height 1.8, color rgb(129,130,133) */
  p, 
  .welcome-text,
  .vm-card p,
  .chairman-content p,
  .ojxv10-content p,
  .uxj-service-box p,
  .video-inner p,
  .carousel-card h3,
  .slide-text p,
  .stat p,
  .label,
  .nlx-text p {
   font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    /*color: grey !important;*/
  }

  /* Headings with two colors - black and #e10600 */
  .welcome-title span,
  .uxj-services-title,
  .success-stories h2,
  .section-container h2,
  .affiliations h2,
  .chairman-content h2,
  .left h2 span:first-child,
  .ojxv10-content h2 {
    color: #e30613 !important;
  }

  .welcome-title,
  .chairman-content h2,
  .left h2,
  .ojxv10-content h2 {
    color: #000000 !important;
  }

  /* Ensure heading text remains black except specific colored parts */
  .welcome-title:not(span),
  .chairman-content h2:not(.title-line),
  .left h2:not(span) {
    color: #000000 !important;
  }

  /* Override for specific heading elements */
  .welcome-title span {
    color: #e10600 !important;
  }

  .chairman-content h2 {
    color: #000000 !important;
  }

  .section-container h2 {
    color: #e10600 !important;
  }

  .success-stories h2 {
    color: #e10600 !important;
  }

  .affiliations h2 {
    color: #e10600 !important;
  }

  .uxj-services-title {
    color: #e10600 !important;
  }

  .left h2 span {
    color: #000000 !important;
  }

  .left h2 span:first-child {
    color: #e10600 !important;
  }

  .ojxv10-content h2 {
    color: #000000 !important;
  }

  /* ===== SECTION PADDING BETWEEN SECTIONS ===== */
  section, 
  .section, 
  .welcome-section, 
  .chairman-section, 
  .uxj-services-section,
  .affiliations, 
  .success-stories, 
  .section-container, 
  .nlx-wrapper,
  .ojxv10-container, 
  [data-ojxv10-root] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* First section after slider - reduce top padding */
  .welcome-section {
    padding-top: 40px !important;
  }

  /* Last section - reduce bottom padding */
  .nlx-wrapper {
    padding-bottom: 40px !important;
  }

  /* Divider spacing (base — full divider design below in OUR JOURNEY DIVIDER block) */
  .ojxv10-divider {
    margin: 40px 0 !important;
  }

  /* Horizontal rule spacing */
  [style*="height: 0.5px; background-color: black;"] {
    margin: 40px auto !important;
  }

  /* Responsive padding for mobile */
  @media (max-width: 768px) {
    section, 
    .section, 
    .welcome-section, 
    .chairman-section, 
    .uxj-services-section,
    .affiliations, 
    .success-stories, 
    .section-container, 
    .nlx-wrapper,
    .ojxv10-container, 
    [data-ojxv10-root] {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }
    
    .welcome-section {
      padding-top: 30px !important;
    }
    
    .nlx-wrapper {
      padding-bottom: 30px !important;
    }
  }

  /* ===== EXISTING STYLES KEPT INTACT ===== */
  body { margin: 0; font-family: Arial, sans-serif; }
  .swiper { width: 100%; height: 90vh; }
  .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .slide-text {
    position: absolute;
    left: 60px;
    bottom: 160px;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  .slide-text h2 { margin: 0; color: #d92f2f; font-size: 35px; }
  .slide-text p { margin-top: 10px; color: #000; font-size: 18px; }
  .swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-button-next, .swiper-button-prev { color: #d92f2f; }
  .swiper-pagination-bullet { background: #d92f2f; }
  
  @media (max-width: 768px) {
    .swiper { height: 60vh !important; }
    .slide-text {
      left: 20px !important;
      bottom: 130px !important;
      padding: 15px !important;
      max-width: 90% !important;
    }
    .slide-text h2 { font-size: 24px !important; }
    .slide-text p { font-size: 14px !important; }
    .swiper-button-next, .swiper-button-prev {
      display: block !important;
      width: 25px !important;
      height: 25px !important;
      top: 40% !important;
      color: #fff !important;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
      font-size: 20px !important;
    }
    .swiper-pagination-bullet {
      width: 10px !important;
      height: 10px !important;
    }
  }

  /*vission and mission*/
  .welcome-section {
    background: linear-gradient(#f8f9fa, #f1f3f5);
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
  }
  .welcome-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  .welcome-title {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    margin-top:-30px;
  }
  .welcome-title span {
    color: #e63946;
    font-weight: 700;
  }
  .welcome-text {
    font-size: 16px;
    line-height: 1.9;
    color: #6c757d;
    max-width: 1000px;
    margin: 0 auto 60px;
  }
  @media (max-width: 768px) {
    .welcome-text { text-align: justify; }
  }
  .vm-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
 .vm-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(230, 57, 70, 0.18);
    border-color: rgba(230, 57, 70, 0.3);
}

.vm-card:hover h3 .icon {
    transform: scale(1.2) rotate(-8deg);
}

.vm-card .icon {
    display: inline-block;
    transition: transform 0.4s ease;
}
  .vm-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .vm-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
  }
  @media (max-width: 768px) {
    .welcome-title { font-size: 26px; }
    .vm-wrapper { grid-template-columns: 1fr; }
    .welcome-text { font-size: 15px; }
  }
  @media (max-width: 768px) {
    .welcome-title { font-size: 26px; margin-bottom: 15px; }
    .welcome-text { font-size: 15px; margin-bottom: 40px; }
    .vm-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .vm-card { padding: 25px 20px; }
    .vm-card h3 { font-size: 18px; gap: 8px; }
    .vm-card p { font-size: 14px; line-height: 1.6; }
  }

  /*services*/
  :root{
    --uxj-primary:#e10600;
    --uxj-bg:#fff;
    --uxj-box-bg:#2e3b60;
    --uxj-text:#fff;
  }
  .uxj-services-section{
    padding:80px 20px;
    text-align:center;
    background:var(--uxj-bg);
    font-family: 'Poppins', sans-serif;
  }
  .uxj-services-container{
    width:90%;
    margin:0 auto;
  }
  .uxj-services-title{
    font-size:42px;
    color:var(--uxj-primary);
    margin-bottom:50px;
    font-weight:700;
    margin-top:-37PX;
  }
  .uxj-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
  }
  .uxj-service-box{
    background: var(--uxj-box-bg);
    color: var(--uxj-text);
    border-radius:12px;
    padding:30px 20px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    opacity:0;
    transform: translateY(40px);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  }
  .uxj-service-box:hover{
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(225, 6, 0, 0.5);
    background: linear-gradient(135deg, #e10600, #ff4d4d);
  }
  .uxj-service-box:hover h3,
  .uxj-service-box:hover p,
  .uxj-service-box:hover .uxj-readmore{
    color: #fff;
    transition: color 0.4s ease;
  }
  .uxj-service-icon{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .uxj-service-icon img{
    width:35px;
    height:35px;
  }
  .uxj-service-box:hover .uxj-service-icon{
    transform: scale(1.2) rotate(10deg);
    box-shadow:0 0 20px rgba(225, 6, 0, 0.7);
  }
  .uxj-service-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(225,6,0,0.2);
    transform: scaleX(0);
    transform-origin:left;
    transition: transform 0.4s ease;
    z-index:0;
  }
  .uxj-service-box:hover::before{
    transform: scaleX(1);
  }
  .uxj-service-box h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
    position:relative;
    z-index:1;
  }
  .uxj-service-box p{
    font-size:14px;
    line-height:1.6;
    position:relative;
    z-index:1;
  }
  .uxj-readmore{
    color:var(--uxj-primary);
    font-weight:600;
    cursor:pointer;
    z-index:1;
    position:relative;
  }
  .uxj-service-box.uxj-visible{
    opacity:1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  @media(max-width:1024px){
    .uxj-services-grid{
      grid-template-columns:repeat(2,1fr);
    }
  }
  @media(max-width:768px){
    .uxj-services-title{ font-size:28px; }
    .uxj-services-grid{
      grid-template-columns:1fr;
    }
  }

  /*chairman massage*/
 .chairman-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 60%);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}
.chairman-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(227,6,19,0.08), transparent 70%);
  border-radius: 50%;
}
.chairman-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.chairman-image {
  background: #f3f3f3;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 6px solid #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.chairman-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(227,6,19,0.18);
}
.chairman-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chairman-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2d3d;
  line-height: 1.35;
  margin-bottom: 16px;
  margin-top: -6px;
  background: linear-gradient(90deg, #000 60%, #e30613);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #e30613, #f39c12);
  border-radius: 4px;
  display: block;
  margin-bottom: 28px;
}
  /*graph*/
  .section{
    padding:80px 120px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    box-sizing:border-box;
  }
  .left h2{
    font-size:30px;
    color:#d71920;
    font-weight:800;
    line-height:1.15;
  }
  .left h2 span{
    display:block;
  }
  .stats{
    margin-top:40px;
    background:#f5f5f5;
    padding:30px 40px;
    border-radius:12px;
    display:flex;
    gap:60px;
    border-left:6px solid #1e3a8a;
  }
  .stat h2{
    margin:0;
    font-size:36px;
  }
  .stat.blue h2{color:#1e40af;}
  .stat.green h2{color:#16a34a;}
  .stat p{margin-top:6px;color:#555;}
  .right{
    display:flex;
    justify-content:center;
    width:100%;
    overflow: visible; /* FIX: prevent clipping the donut on hover zoom */
  }

  /* FIX: donut hover zoom in/out — smooth, fully responsive (uses relative transform, not fixed px) */
  .donut{
    width:500px;
    height:500px;
    border-radius:50%;
    position:relative;
    flex-shrink:0;
    max-width:100%;
    background:conic-gradient(
        #facc15 0deg 45deg,
        #22c55e 45deg 90deg,
        #06b6d4 90deg 135deg,
        #3b82f6 135deg 180deg,
        #1e293b 180deg 225deg,
        #991b1b 225deg 270deg,
        #dc2626 270deg 315deg,
        #f97316 315deg 360deg
    );
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .donut:hover{
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }
  .center{
    position:absolute;
    inset:0;
    margin:auto;
    width:160px;
    height:160px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
  }
  .center img{
    width:100px;
    max-width:70%;
    height:auto;
  }
  .label{
    position:absolute;
    top:50%;
    left:50%;
    width:120px;
    text-align:center;
    font-size:12px !important;
    color:#fff !important;
    font-weight:600 !important;
    line-height:1.3 !important;
    font-family:'Poppins', sans-serif !important;
    margin-left:-60px;
    margin-top:-16px;
    transform:
        rotate(var(--a))
        translateY(-170px)
        rotate(calc(var(--a) * -1));
  }
  @media(max-width:992px){
    .section{
        flex-direction:column;
        text-align:center;
        padding:50px 25px;
    }
    .stats{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
        padding:20px;
    }
    .right{
        margin-top:20px;
    }
  }
  @media(max-width:576px){
    .section{
        padding:30px 12px;
    }
    .donut{
        width:260px;
        height:260px;
    }
    .center{
        width:90px;
        height:90px;
    }
    .center img{
        width:55px;
    }
    .label{
        font-size:8.5px !important;
        line-height:1.2 !important;
        width:70px;
        margin-left:-35px;
        margin-top:-10px;
        transform:
            rotate(var(--a))
            translateY(-95px)
            rotate(calc(var(--a) * -1));
    }
    .stat h2{ font-size:22px; }
    .stat p{ font-size:12px; }
    .stats{ padding:15px; gap:15px; }
  }
  @media(max-width:380px){
    .donut{
        width:220px;
        height:220px;
    }
    .center{
        width:75px;
        height:75px;
    }
    .center img{
        width:45px;
    }
    .label{
        font-size:7.5px !important;
        line-height:1.15 !important;
        width:58px;
        margin-left:-29px;
        margin-top:-8px;
        transform:
            rotate(var(--a))
            translateY(-80px)
            rotate(calc(var(--a) * -1));
    }
  }

  /* "Why Are We Different?" heading — now an h2 (see markup notes on
     single-h1-per-page); explicit styling keeps its visual size instead
     of relying on the browser default h1/h2 font-size. */
  .ojxv10-heading {
    text-align: center;
    color: #e30613;
    font-size: 40px;
    margin: 0 auto 10px;
    padding: 0 15px;
  }
  @media (max-width: 768px) {
    .ojxv10-heading { font-size: 28px !important; }
  }

  /* Accessibility: visible keyboard focus indicator (previously relied on
     the browser default outline, which some UAs suppress on custom
     buttons/links — this makes tab-navigation always visible). */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  .uxj-service-box:focus-visible,
  .video-inner:focus-visible {
    outline: 3px solid #e30613;
    outline-offset: 2px;
  }

  /* Accessibility: visually hide text (used for form <label> elements
     that must exist for screen readers but aren't shown, since inputs
     rely on placeholder text visually). */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ============================================================
     LAST FIVE YEAR'S PERFORMANCE REPORTS (heading between graph & affiliations)
     ============================================================ */
  .performance-heading {
    text-align: center;
    color: #e30613;
    font-size: 35px;
    padding: 0 15px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .performance-heading {
      font-size: 24px !important;
      padding: 0 12px;
      line-height: 1.4;
    }
  }
  @media (max-width: 480px) {
    .performance-heading {
      font-size: 20px !important;
      padding: 0 10px;
    }
  }

  /* ============================================================
     AFFILIATIONS
     ============================================================ */
  .affiliations {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
  }
  .affiliations h2 {
    font-size: 40px;
    color: #e30613;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top:-20px;
    position: relative;
  }
  .affiliations h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e30613;
    margin: 12px auto 0;
    border-radius: 2px;
  }
  @media (max-width: 768px) {
    .affiliations {
      padding-left: 15px;
      padding-right: 15px;
      box-sizing: border-box;
    }
    .affiliations h2 {
      font-size: 26px !important;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 480px) {
    .affiliations h2 {
      font-size: 22px !important;
    }
  }
  .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .slider::before,
  .slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
  }
  .slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
  }
  .slide-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
  }
  .slide-track:hover {
    animation-play-state: paused;
  }
  .slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
  }
  .slide img {
    max-width: 110px;
    height: auto;
    filter: grayscale(20%);
    transition: all 0.4s ease;
    opacity: 0.85;
  }
  .slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.12);
    opacity: 1;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
  }
  @media (max-width: 768px) {
    .slider::before,
    .slider::after {
      width: 50px;
    }
    .slide img {
      max-width: 80px;
    }
    .slide {
      width: 200px;
    }
    .slide-track {
      width: calc(200px * 16);
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-200px * 8)); }
    }
  }

  /* ============================================================
     SUCCESS STORIES
     ============================================================ */
 /* ============================================================
   SUCCESS STORIES — matches News & Events layout: stable cards,
   native scroll-snap, manual prev/next buttons, dots
   ============================================================ */
.success-stories {
  padding: 60px 0;
  text-align: center;
  margin-top: -32px;
  margin-bottom: -20px;
  background: #fafafa;
}
.success-stories h2 {
  color: #e30613;
  font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
.success-stories h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e30613;
  margin: 12px auto 0;
  border-radius: 2px;
}

.slider-wrapper {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.video-track::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 calc(33.33% - 17px);
  scroll-snap-align: start;
  box-sizing: border-box;

  /* stable layout like News & Events */
  display: flex;
  flex-direction: column;
  height: 320px;
}

.video-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.video-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(225, 6, 0, 0.12);
  border-color: #e30613;
}
.video-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}
.video-inner:hover img { transform: scale(1.03); }
.video-inner p {
  padding: 18px 20px;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0;
  background: #fff;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Manual nav buttons */
.ss-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #e30613;
  background: #fff;
  color: #e30613;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.ss-nav:hover {
  background: #e30613;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.35);
}

@media (max-width: 768px) {
  .video-card { flex: 0 0 100%; height: 280px; }
  .video-inner img { height: 180px; }
  .success-stories h2 { font-size: 30px !important; }
  .ss-nav { width: 38px; height: 38px; font-size: 14px; }
}
  /* ============================================================
     NEWS & EVENTS - PROPER MOBILE RESPONSIVE
     ============================================================ */
  .section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 15px;
  }
  .section-container h2 {
    color: #d11a26;
    font-size: 40px !important;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
  }
  .section-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d11a26;
    margin: 12px auto 0;
    border-radius: 2px;
  }
  .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 0 10px;
  }
  /* Make room for nav buttons flanking the carousel */
.carousel-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-container .carousel-wrapper {
  flex: 1;
}

/* Manual nav buttons — same style as Success Stories ss-nav */
.news-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #d11a26;
  background: #fff;
  color: #d11a26;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.news-nav:hover {
  background: #d11a26;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(209, 26, 38, 0.35);
}

@media (max-width: 768px) {
  .news-nav {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
  /* Native horizontal scroll-snap instead of JS-calculated transforms.
     The browser handles positioning natively, so cards can never end up
     mispositioned or leave blank space, regardless of how many cards
     there are (works reliably for all 25+ items on mobile). */
  .carousel-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch; /* FIX: all cards stretch to equal height in a row */
  }
  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  /* FIX: stable card layout — fixed height, flex column, button pinned to bottom */
  .carousel-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.4s ease;
    border: 1px solid rgba(209, 26, 38, 0.08);
    flex: 0 0 calc(33.33% - 17px);
    scroll-snap-align: start;

    display: flex;
    flex-direction: column;
    height: 380px;
  }
  .carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(209, 26, 38, 0.10);
    border-color: #d11a26;
  }
  .carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    transition: transform 0.5s ease;
    flex-shrink: 0; /* FIX: image never shrinks */
  }
  .carousel-card:hover img {
    transform: scale(1.02);
  }
  .carousel-card h3 {
    color: #1a1a1a;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 16px;
    line-height: 1.5;

    /* FIX: clamp title to 3 lines so long text never pushes button out of place */
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .carousel-card a {
    display: inline-block;
    padding: 10px 28px;
    background: #d11a26;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;

    /* FIX: button always pinned to bottom of card, never overflows */
    align-self: flex-start;
    margin-top: auto;
  }
  .carousel-card a:hover {
    background: #b0151f;
    transform: translateX(4px);
  }
  .dots-container {
    margin-top: 25px;
    text-align: center;
  }
  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .dot.active {
    background: #d11a26;
    width: 30px;
    border-radius: 6px;
  }
  .dot:hover {
    background: #d11a26;
    opacity: 0.6;
  }

  /* ===== MOBILE RESPONSIVE - NEWS & EVENTS ===== */
  @media (max-width: 768px) {
    .section-container {
      padding: 40px 10px;
    }
    .section-container h2 {
      font-size: 30px !important;
    }
    .carousel-container {
      padding: 0;
    }
    .carousel-wrapper {
      gap: 15px;
      padding-left: 16px;
      padding-right: 16px;
      scroll-padding-left: 16px;
      scroll-padding-right: 16px;
    }
    .carousel-card {
      flex: 0 0 100%;
      padding: 15px;
      margin: 0;
      height: 340px; /* FIX: consistent fixed height on tablet/mobile */
    }
    .carousel-card img {
      height: 160px;
    }
    .carousel-card h3 {
      font-size: 14px !important;
    }
    .carousel-card a {
      padding: 8px 20px;
      font-size: 13px;
    }
    .dots-container {
      margin-top: 20px;
    }
    .dot {
      width: 10px;
      height: 10px;
      margin: 0 5px;
    }
    .dot.active {
      width: 25px;
    }
  }

  /* Small phones */
  @media (max-width: 480px) {
    .section-container {
      padding: 30px 8px;
    }
    .carousel-wrapper {
      padding-left: 12px;
      padding-right: 12px;
      scroll-padding-left: 12px;
      scroll-padding-right: 12px;
    }
    .carousel-card {
      padding: 12px;
      height: 320px; /* FIX: consistent fixed height on small phones */
    }
    .carousel-card img {
      height: 140px;
    }
    .carousel-card h3 {
      font-size: 13px !important;
      margin-bottom: 12px;
    }
    .carousel-card a {
      padding: 6px 16px;
      font-size: 12px;
    }
    .dot {
      width: 8px;
      height: 8px;
      margin: 0 4px;
    }
    .dot.active {
      width: 20px;
    }
  }

  /* Fix underline caused by <a href> */
  .uxj-service-link,
  .uxj-service-link:hover,
  .uxj-service-link:focus,
  .uxj-service-link:active {
    text-decoration: none !important;
    color: inherit;
  }
  .uxj-service-link * {
    text-decoration: none !important;
  }

  /* Full-page popup overlay */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .popup-content {
    background: #fff;
    width: 80%;
    max-width: 800px;
    max-height: 90%;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  #contentWrapper { flex-grow: 1; }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color:red;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
  }
  #pdfButtonDiv { margin-top: 20px; display: block; }
  #popupImage {
    width: 100%;
    max-height: 900px;
    object-fit: cover;
    display: none;
  }
  @media (max-width: 768px) {
    .popup-content {
      width: 95%;
      padding: 10px;
    }
    #popupImage { max-height: 60vh; }
  }

  /* Popup Background */
  .ai-widget-container {
    bottom: 1000px !important;
    right: 30px !important;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  .promo-popup{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
  }
  .promo-content{
    background:#fff;
    width:500px;
    max-width:90%;
    border-radius:10px;
    text-align:center;
    padding:20px;
    position:relative;
    animation: popupFade 0.5s ease;
  }
  .promo-content img{
    width:100%;
    border-radius:8px;
    margin-bottom:15px;
  }
  .promo-content h2{
    margin-bottom:10px;
    color:#333;
  }
  .popup-btn{
    display:inline-block;
    background:#d1a03e;
    color:#fff;
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
    margin-top:10px;
  }
  .popup-close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:22px;
    cursor:pointer;
  }
  @keyframes popupFade{
    from{
      transform:scale(0.7);
      opacity:0;
    }
    to{
      transform:scale(1);
      opacity:1;
    }
  }

  /* Toast Notification Container */
  #toastMessage {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  .toast-notification {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideInRight 0.3s ease;
    min-width: 320px;
    max-width: 400px;
  }
  .toast-success { border-left: 4px solid #28a745; }
  .toast-error { border-left: 4px solid #dc3545; }
  .toast-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .toast-icon { font-size: 22px; }
  .toast-success .toast-icon { color: #28a745; }
  .toast-error .toast-icon { color: #dc3545; }
  .toast-message {
    flex: 1;
    font-size: 14px;
    color: #333;
    font-weight: 500;
  }
  .toast-close {
    cursor: pointer;
    font-size: 16px;
    color: #999;
    transition: color 0.3s;
    padding: 5px;
  }
  .toast-close:hover { color: #333; }
  .toast-progress {
    height: 3px;
    background: #f0f0f0;
    width: 100%;
    animation: progressBar 5s linear forwards;
  }
  .toast-success .toast-progress { background: #28a745; }
  .toast-error .toast-progress { background: #dc3545; }
  @keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
  }
  @keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
  }
  @media (max-width: 768px) {
    .toast-notification {
      min-width: auto;
      max-width: calc(100vw - 40px);
    }
  }
.donation-heading p {
    margin: 0;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    text-align: justify;
}

  /* ============================================================
     OUR JOURNEY DIVIDER — animated line with rotating/pulsing logo
     (fixes the divider image not showing — it previously had NO
     layout rules at all, so it collapsed to 0 size)
     ============================================================ */
  .ojxv10-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 40px auto !important;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .ojxv10-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e30613 50%, transparent);
    position: relative;
    overflow: hidden;
  }

  /* animated shimmer sliding along the line */
  .ojxv10-divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
    /* animate transform (GPU-composited) instead of `left` (forces layout/paint every frame) */
    transform: translateX(-100%);
    animation: ojxv10-shimmer 2.5s ease-in-out infinite;
    will-change: transform;
  }

  @keyframes ojxv10-shimmer {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
  }

  .ojxv10-divider-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.25);
    border: 2px solid #e30613;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: ojxv10-pulse 3s ease-in-out infinite;
    will-change: transform;
  }

  .ojxv10-divider-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
  }

  .ojxv10-divider-icon:hover {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.45);
  }

  @keyframes ojxv10-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
  }

  /* Accessibility: honor reduced-motion preference for all decorative,
     infinitely-looping animations on the page */
  @media (prefers-reduced-motion: reduce) {
    .ojxv10-divider-line::after,
    .ojxv10-divider-icon,
    .slide-track,
    .toast-notification,
    .promo-content {
      animation: none !important;
      transition: none !important;
    }
  }

  @media (max-width: 768px) {
    .ojxv10-divider {
      gap: 12px;
      margin: 30px auto !important;
    }
    .ojxv10-divider-icon {
      width: 50px;
      height: 50px;
    }
    .ojxv10-divider-icon img {
      width: 28px;
      height: 28px;
    }
  }

  @media (max-width: 480px) {
    .ojxv10-divider-icon {
      width: 42px;
      height: 42px;
    }
    .ojxv10-divider-icon img {
      width: 24px;
      height: 24px;
    }
  }

  /* ============================================================
     CHAIRMAN SECTION — MOBILE RESPONSIVE FIX
     (added last on purpose: with equal selector specificity, the
     rule that appears LAST in the cascade wins, so placing this at
     the very bottom of the file — and adding !important as extra
     insurance in case index.css, which loads AFTER this file, also
     touches these selectors — guarantees it takes effect on mobile)
     ============================================================ */
  @media (max-width: 768px) {
    .chairman-container {
      display: grid !important;
      grid-template-columns: 1fr !important;   /* stack image above text instead of squeezing 2 cols */
      gap: 20px !important;
    }
    .chairman-image {
      min-height: 240px !important;   /* was 520px — far too tall once stacked full-width on mobile */
      width: 100% !important;
      order: -1 !important;           /* image appears above the text block */
    }
    .chairman-content {
      text-align: center !important;
    }
    .chairman-content h2 {
      font-size: 24px !important;
      text-align: center !important;
    }
    .chairman-content p {
      text-align: center !important;  /* was justify — reads badly / creates big word gaps in a narrow column */
    }
    .title-line {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .chairman-name {
      text-align: center !important;
    }
  }

  @media (max-width: 480px) {
    .chairman-section {
      padding: 60px 15px !important;
    }
    .chairman-image {
      min-height: 200px !important;
    }
    .chairman-content h2 {
      font-size: 20px !important;
    }
  }

  /* ============================================================
     OUR SERVICES — FULL RESPONSIVE FIX (all screens: mobile, tablet, desktop)
     Placed last on purpose so it wins the cascade regardless of
     rule order elsewhere in this file or in index.css.
     ============================================================ */
  .uxj-services-container {
    box-sizing: border-box !important;
    width: 92% !important;
    max-width: 1200px !important;
  }

  .uxj-services-grid {
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: stretch !important;   /* every box in a row gets equal height */
  }

  /* The <a class="uxj-service-link"> wraps each box and IS the actual grid
     item (not the .uxj-service-box div inside it). Anchors are inline by
     default, so without this, grid sizing/stretching can't apply properly
     to them — this was very likely the root cause of boxes randomly
     "overlapping" or "reducing" at in-between (tablet) widths. */
  .uxj-service-link {
    display: flex !important;
    height: 100% !important;
    width: 100% !important;
  }

  .uxj-service-box {
    box-sizing: border-box !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: 260px !important;      /* fixed floor height = never looks compressed next to a taller box */
  }

  .uxj-service-icon {
    flex-shrink: 0 !important;         /* icon never gets squeezed by long title/text */
  }

  .uxj-service-box h3 {
    width: 100%;
    flex-shrink: 0;
  }

  .uxj-service-box p {
    flex: 1;                            /* description area fills remaining space evenly across all boxes */
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;              /* clamp long descriptions instead of pushing card height around */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Desktop: 3 columns */
  @media (min-width: 1025px) {
    .uxj-services-grid {
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 30px !important;
    }
  }

  /* Tablet: 2 columns (covers iPad portrait/landscape and in-between
     browser widths like 968px, 900px, etc.) */
  @media (max-width: 1024px) and (min-width: 769px) {
    .uxj-services-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 22px !important;
    }
    .uxj-service-box {
      min-height: 250px !important;
      padding: 25px 18px !important;
    }
  }

  /* Small tablet / large phone transition zone */
  @media (max-width: 768px) and (min-width: 481px) {
    .uxj-services-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 18px !important;
    }
    .uxj-services-title {
      font-size: 28px !important;
    }
    .uxj-service-box {
      min-height: 240px !important;
      padding: 22px 16px !important;
    }
  }

  /* Mobile: 1 column */
  @media (max-width: 480px) {
    .uxj-services-container {
      width: 90% !important;
    }
    .uxj-services-grid {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
    }
    .uxj-service-box {
      min-height: 220px !important;
      padding: 22px 16px !important;
    }
    .uxj-services-title {
      font-size: 24px !important;
    }
  }