  body { margin: 0; font-family: Arial, sans-serif; }
    .swiper { width: 100%; height: 90vh; }
    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
      
    }

    /* Overlay text */
    .slide-text {
      position: absolute;
      left: 60px;
      bottom: 160px;
      background: rgba(255, 255, 255, 0.7);
      padding: 20px;
      border-radius: 8px;
      max-width: 500px;

      /* Animation: hidden initially */
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }
    .slide-text h1 { margin: 0; color: #d92f2f; font-size: 35px; }
    .slide-text p { margin-top: 10px; color: #000; font-size: 18px; }

    /* Animate when slide is active */
    .swiper-slide-active .slide-text {
      opacity: 1;
      transform: translateY(0);
    }

    /* Navigation arrows */
    .swiper-button-next, .swiper-button-prev {
      color: #d92f2f;
    }

    /* Pagination dots */
    .swiper-pagination-bullet {
      background: #d92f2f;
    }
    
  @media (max-width: 768px) {
  .swiper {
    height: 60vh !important; /* reduce slider height */
  }

  .slide-text {
    left: 20px !important;
    bottom: 130px !important;
    padding: 15px !important;
    max-width: 90% !important;
  }

  .slide-text h1 {
    font-size: 24px !important; /* smaller heading */
  }

  .slide-text p {
    font-size: 14px !important; /* smaller paragraph */
  }

  /* Show navigation arrows on mobile */
  .swiper-button-next, .swiper-button-prev {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    top: 40% !important; /* vertical position */
    color: #fff !important; /* arrow color */
  }

  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important; /* arrow size */
  }

  .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;
    text-align: justify;

  }
  
  @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);
  }

  .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;
}

/* SECTION STYLING */
.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:-100px;
}

.uxj-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* SERVICE BOX */
.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;
}

/* ICON STYLING */
.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);
}

/* OVERLAY EFFECT */
.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);
}

/* TEXT & READ MORE */
.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;
}

/* SCROLL ANIMATION */
.uxj-service-box.uxj-visible{
  opacity:1;
  transform: translateY(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* RESPONSIVE */
@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: 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
  }

  .chairman-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }

  .chairman-image {
    background: #f3f3f3;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .chairman-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: #1f2d3d;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top:-42px;
  }

  .title-line {
    width: 50px;
    height: 3px;
    background: #f39c12;
    display: block;
    margin-bottom: 25px;
  }

  .chairman-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 35px;
    text-align: justify;
  }

  .chairman-name strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
  }

  .chairman-name span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 3px;
  }

  @media (max-width: 900px) {
    .chairman-container {
      grid-template-columns: 1fr;
    }

    .chairman-image {
      min-height: 380px;
    }

    .chairman-content h2 {
      font-size: 24px;
    }
  }
  /*graph*/
  
  
  
/* SECTION */
.section{
    padding:80px 120px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* LEFT */
.left h1{
    font-size:36px;
    color:#d71920;
    font-weight:800;
    line-height:1.15;
}

.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 */
.right{
    display:flex;
    justify-content:center;
}

/* DONUT */
.donut{
    width:500px;
    height:500px;
    border-radius:50%;
    position:relative;
    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
    );
}

/* HOLE */
.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;
}

/* ✅ CORRECT LABEL ALIGNMENT */
.label{
    position:absolute;
    top:50%;
    left:38%;
    width:120px;
    text-align:center;
    font-size:13px;
    color:#fff;
    font-weight:600;

    /* MAGIC */
    transform:
        rotate(var(--a))
        translateY(-170px)
        rotate(calc(var(--a) * -1));
}

/* RESPONSIVE */
@media(max-width:992px){
    .section{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:576px){
    .donut{
        width:300px;
        height:300px;
    }
    .center{
        width:110px;
        height:110px;
    }
    .label{
        font-size:10px;
        width:90px;
        transform:
            rotate(var(--a))
            translateY(-115px)
            rotate(calc(var(--a) * -1));
    }
}
  
  
  
  
  
 /*affiliations */
 
 
.affiliations {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.affiliations h2 {
    font-size: 40px;
    color: #e30613;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top:-20px;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 25s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100px;
    height: auto;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8));
    }
}
  
  /*succes storioesn*/
  
/* ===== SECTION ===== */
.success-stories {
    padding: 60px 0;
    text-align: center;
    margin-top:-32px;
    margin-bottom:-20px;
}

.success-stories h2 {
    color: #e30613;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ===== SLIDER ===== */
.slider-wrapper {
    width: 90%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.video-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* PC → 3 videos */
.video-card {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    box-sizing: border-box;
}

.video-inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    overflow: hidden;
}

.video-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.video-inner p {
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ===== BUTTONS ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e30613;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .video-card {
        flex: 0 0 100%;
    }
    .slider-btn.prev { left: 5px; }
    .slider-btn.next { right: 5px; }
}

/* ===== MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.modal-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: none;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content iframe {
        height: 260px;
    }
}
  
  
  
  
  /*newz and events*/
  
  
  
.section-container {
  width: 90%;
  margin: 50px auto;
  text-align: center;
}

h2 {
  color: #d11a26;
  margin-bottom: 30px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 1s ease;
  gap: 20px; /* space between slides */
}

.carousel-card {
  background: #fff;
  border: 1px solid #d11a26;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  flex-shrink: 0;
  box-sizing: border-box;
  height:362px;
}

.carousel-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.carousel-card h3 {
  color: #d11a26;
  font-size: 16px;
  margin-bottom: 15px;
}

.carousel-card a {
  display: inline-block;
  padding: 10px 15px;
  background: #d11a26;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

/* Dots */
.dots-container {
  margin-top: 15px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #d11a26;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-wrapper {
    gap: 10px; /* less space on mobile */
  }
}
  
  
  
  
  
  
  
  /* 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;
}

/* Also prevent underline inside the box */
.uxj-service-link * {
    text-decoration: none !important;
}



    /* Full-page popup overlay */
        .popup-overlay {
            display: none;
            position: fixed; /* Fix to viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; /* Full screen height */
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999; /* Make sure it covers navbar */
            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; /* Scroll if content exceeds height */
            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;
        }

        #pdfButtonDiv {
            margin-top: 20px;
            display: block;
        }

        /* Responsive image */
        #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;
            }
        }
        
        
       /* ===============================
   OUR JOURNEY – FULLY ISOLATED
   Namespace: ojxv10-
================================ */

.ojxv10-heading {
    text-align: center;
    color: red;
    font-size: 35px;
    margin: 40px 0;
}

.ojxv10-container {
    width: 90%;
    margin: 0 auto;
}

.ojxv10-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.ojxv10-row.ojxv10-reverse {
    flex-direction: row-reverse;
}

.ojxv10-image {
    width: 50%;
}

.ojxv10-slider {
    width: 100%;
    height: 340px;
    border-radius: 6px;
    overflow: hidden;
}

/* ONLY image styling – no swiper class */
.ojxv10-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ojxv10-content {
    width: 50%;
}

.ojxv10-content h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 15px;
}

.ojxv10-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.ojxv10-divider {
    display: flex;
    align-items: center;
    margin: 50px 0;
}

.ojxv10-divider-line {
    flex: 1;
    height: 1px;
    background: #ccc;
}

.ojxv10-divider-icon {
    padding: 0 20px;
}

@media (max-width: 992px) {
    .ojxv10-row,
    .ojxv10-row.ojxv10-reverse {
        flex-direction: column;
    }

    .ojxv10-image,
    .ojxv10-content {
        width: 100%;
    }

    .ojxv10-slider {
        height: 260px;
    }

    .ojxv10-content h2 {
        font-size: 24px;
    }
} 





/* ==============================
   UNIQUE NEWSLETTER STYLES
   ============================== */

.nlx-wrapper {
    max-width: 100%;
    padding: 20px;
}

.nlx-container {
    background: #d90000;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: Arial, sans-serif;
}

/* LEFT TEXT */
.nlx-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: 280px;
}

.nlx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nlx-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.nlx-text p {
    margin: 2px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

/* FORM */
.nlx-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.nlx-input {
    height: 44px;
    padding: 0 14px;
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.nlx-input::placeholder {
    color: #fff;
    opacity: 0.9;
}

/* BUTTON */
.nlx-btn {
    height: 44px;
    padding: 0 26px;
    background: #fff;
    color: #d90000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    white-space: nowrap;
}

.nlx-btn:hover {
    background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nlx-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nlx-left {
        justify-content: center;
        text-align: center;
    }

    .nlx-form {
        flex-direction: column;
    }
}
        
        