body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
    margin: 0 auto;
    line-height: 1.6;
  }
  /* add to your main CSS */
/* .no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
} */
  /* Put gradient inside each slide */
  .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1; /* stays above the image, but below your content */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.85) 0%,      /* dark at top */
      rgba(0,0,0,0.45) 12%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,0.45) 88%,
      rgba(0,0,0,0.85) 100%     /* dark at bottom */
    );
    pointer-events: none;
  }
  
  /* ensure slide itself can hold overlay */
  .swiper-slide {
    position: relative;
  }
  
  /* your content/logo/form stay higher */
  .banner-logo,
  .desktop-form-container,
  .banner-overlay {
    position: relative;
    z-index: 5; /* higher than the ::before gradient */
  }
  
    .overlay-text h2{
      color: #fff !important;
    }
    .banner-logo {
      z-index: 1000;
      border-radius: 8px;
      padding: 8px 12px;
      display: inline-block;
    }
    .banner-logo .logo-img {
      max-height: 200px;
      width: auto;
      object-fit: contain;
    }
  
    /* Bottom-Left Overlay */
    .banner-overlay {
      z-index: 1000;
      display: flex;
      align-items: center;
    }
    .overlay-logo img.logo-img-bottom {
      max-height: 200px;
      padding: 12px 16px;
      border-radius: 6px;
      width: auto;
    }
    .overlay-text {
      padding: 12px 16px;
      border-radius: 6px;
    }
    .overlay-text h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
    }
    .overlay-text p {
      margin: 6px 0 0;
      font-size: 16px;
      display: inline-block; /* shrink to fit content */
      border: 1px solid white;
      padding: 2px 4px; /* optional, for some spacing inside the border */
  }
  
  
    /* Banner defaults */
    .banner-desktop { display: block; width: 100%; height: 675px; object-fit: cover; }
    .banner-mobile { display: none; width: 100%; height: auto; }
  
    .swiper-slide-active .banner-image {
      transform: scale(1.1);
    }
  
    .banner-section {
      position: relative;
      width: 100%;
    }
  h2 {
    color: #2c0d72 !important;
  }
  .container{
    max-width: 1400px;
    margin: 0 auto;
  }
  header {
    background: #1f2856;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header img {
    width: 150px;
    max-height: 110px;
    object-fit: contain;
  }
  .header-center {
    flex: 1; /* pushes center content to the middle */
    text-align: center;
  }
  .header-center p {
    font-size: larger;
    font-weight: 900;
    color: rgb(255, 255, 255);
    margin: 0;
  }
  /* about us  */
 .about-enquiry-modern {
    padding: 40px 0;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ed3237 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: #00eaff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    background: rgba(255,255,255,0.08);
    padding: 14px;
    border-radius: 12px;
}

/* ENQUIRY CARD */
.enquiry-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

.enquiry-card input,
.enquiry-card select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
}

.enquiry-btn {
    background: linear-gradient(90deg, #00eaff, #00ffa2);
    color: #000;
    font-weight: 600;
    padding: 14px;
    border-radius: 30px;
    border: none;
    transition: transform 0.3s ease;
}

.enquiry-btn:hover {
    transform: translateY(-3px);
}

/* ANIMATIONS */
/* ANIMATIONS – CLEAN & PROFESSIONAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(.25,.8,.25,1),
        transform 0.7s cubic-bezier(.25,.8,.25,1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: none;
}


.reveal.zoom {
    transform: scale(0.96);
}

/* Subtle hover polish */
.enquiry-card,
.stat-box,
.feature {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.enquiry-card:hover,
.stat-box:hover,
.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}
.accreditation-wrap {
    margin-top: 30px;
}

.accreditation-wrap h4 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ed3237;
}

.accreditation-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.accreditation-logos img {
    max-width: 100%;
    height: 170px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.accreditation-logos img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .accreditation-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .accreditation-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slide-left {
    transform: translateX(-50px);
}

.zoom {
    transform: scale(0.9);
}

/* SECTION BASE */



.impact-title {
  color: #fff !important;
    font-size: 38px;
    font-weight: 700;
      background: rgba(49, 49, 49, 0.25);
    backdrop-filter: blur(1px);
    border-radius: 20px;
    width: max-content;
    padding: 10px 15px;
    margin: 10px auto;
}

/* Cards */
.impact-card {
    background: rgba(49, 49, 49, 0.25);
    backdrop-filter: blur(1px);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.impact-card.active {
    opacity: 1;
    transform: translateY(0);
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Highlight card */
.impact-card.highlight {
    background: #0d6efd;
    color: #fff;
}

/* Numbers */
.impact-number {
    font-size: 44px;
    font-weight: 800;
}
@media (max-width: 768px) {

    .jbit-impact-section {
        background: linear-gradient(135deg, #0f2027, #203a43);
        padding: 70px 0;
    }

    .impact-overlay {
        background: none;
        padding: 0;
    }

    .impact-title {
        font-size: 26px;
        background: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .impact-card {
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(6px);
        border-radius: 18px;
        padding: 26px 18px;
    }

    .impact-number {
        font-size: 34px;
    }

    .impact-card h6 {
        font-size: 13px;
        margin-top: 10px;
    }

    .impact-card p {
        font-size: 13px;
    }
}

/* course  */
.jbit-courses-kinetic {
    padding: 40px 0;
    background: #ffffff;
}

/* Layout */
.kinetic-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
}

/* LEFT NAV */
.kinetic-nav {
    position: relative;
    padding-left: 20px;
}

.kinetic-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #fa0000;
    cursor: pointer;
    transition: color .3s ease;
}

.kinetic-btn.active {
    color: #0d6efd;
}

/* Animated indicator */
.kinetic-indicator {
    position: absolute;
    left: 0;
    top: 18px;
    width: 4px;
    height: 36px;
    background: #0d6efd;
    border-radius: 4px;
    transition: transform .45s cubic-bezier(.25,.8,.25,1);
}

/* RIGHT CONTENT */
.kinetic-panel {
    display: none;
}

.kinetic-panel.active {
    display: block;
    animation: panelSlide .6s cubic-bezier(.25,.8,.25,1);
}

@keyframes panelSlide {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* STAGGER PROGRAM BLOCKS */
.kinetic-panel.active .program-block,
.kinetic-panel.active .simple-list li {
    animation: blockRise .5s ease both;
}

.kinetic-panel.active .program-block:nth-child(2) { animation-delay: .1s; }
.kinetic-panel.active .program-block:nth-child(3) { animation-delay: .2s; }
.kinetic-panel.active .program-block:nth-child(4) { animation-delay: .3s; }

@keyframes blockRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Program styling */
.program-block {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 18px;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .kinetic-layout {
        grid-template-columns: 1fr;
    }

    .kinetic-nav {
        display: flex;
        gap: 20px;
        padding-left: 0;
        overflow-x: auto;
    }

    .kinetic-indicator {
        display: none;
    }

    .kinetic-btn {
        white-space: nowrap;
    }
}
.apply-now-wrap {
    margin-top: 20px;
}

.apply-now-btn {
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apply-now-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13,110,253,0.3);
}

.apply-now-btn:active {
    transform: translateY(-1px);
}

/* Header */
/* SECTION */
.jbit-campus-life {
    padding: 100px 0;
    background: #fff;
}

.campus-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.campus-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.campus-header p {
    margin-top: 10px;
    color: #555;
}

/* TRACK */
.campus-life-track {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
}

.life-card {
    position: relative;
    min-width: 320px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.life-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.life-overlay h4 {
    color: #fff;
    font-size: 22px;
}

/* MODAL */
/* SECTION */

/* SECTION */
.jbit-campus-life {
    padding: 40px 0;
    background: #fff;
}

/* HEADER */
.campus-header {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.campus-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.campus-header p {
    margin-top: 10px;
    color: #555;
}

/* TRACK (DESKTOP) */
.campus-life-track {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
}

/* CARD */
.life-card {
    position: relative;
    min-width: 320px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.life-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.life-overlay h4 {
    color: #fff;
    font-size: 22px;
}

/* ========================= */
/* MOBILE FIX (IMPORTANT) */
/* ========================= */
@media (max-width: 768px) {

    .campus-life-track {
        gap: 0;
        scroll-snap-type: x mandatory;
    }

    .life-card {
        flex: 0 0 100%;
        min-width: 100%;
        height: 360px;
        scroll-snap-align: start;
    }
}

/* ========================= */
/* MODAL */
/* ========================= */
.campus-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.campus-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.modal-box {
    background: #fff;
    width: 90%;
    max-width: 900px;
    padding: 10px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
}

.modal-header p {
    font-size: 14px;
    color: #555;
}

.modal-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-media {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.nav-btn.prev { left: 15px; }
.nav-btn.next { right: 15px; }

.modal-footer {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.why-jbit {
    padding: 20px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Header */
.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.why-header h2 {
    font-size: 44px;
    font-weight: 800;
}

.why-header p {
    margin-top: 12px;
    color: #555;
    font-size: 16px;
}

/* Story Layout */
.why-story {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Row */
.why-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-row.reverse {
    flex-direction: row-reverse;
}

/* Image */
.why-image {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.why-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-image:hover img {
    transform: scale(1.05);
}

/* Content */
.why-content {
    flex: 1;
}

.why-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .why-row,
    .why-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .why-image img {
        height: 240px;
    }

    .why-header h2 {
        font-size: 30px;
    }
}
/* ANIMATION BASE */
.why-row {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}

/* LEFT SLIDE */
.animate-left {
    transform: translateX(-80px);
}

/* RIGHT SLIDE */
.animate-right {
    transform: translateX(80px);
}

/* IMAGE ZOOM */
.why-image img {
    transform: scale(1.1);
    opacity: 0;
    transition: all 1.2s cubic-bezier(.25,.8,.25,1);
}

/* ACTIVE STATE */
.why-row.in-view {
    opacity: 1;
    transform: translateX(0);
}

.why-row.in-view .why-image img {
    transform: scale(1);
    opacity: 1;
}
@media (max-width: 768px) {

    /* Disable horizontal animations on mobile */
    .animate-left,
    .animate-right {
        transform: translateY(40px);
    }

    .why-row.in-view {
        transform: translateY(0);
    }

    /* Prevent sideways overflow */
    .why-jbit {
        overflow-x: hidden;
    }
}
/* FLOATING CONTACT BUTTONS */
.contact-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
}

/* COMMON BUTTON STYLE */
.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* PHONE */
.fab-btn.phone {
    background: #0d6efd;
}

/* WHATSAPP */
.fab-btn.whatsapp {
    background: #25D366;
}

/* HOVER EFFECT */
@media (hover: hover) {
    .fab-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    }
}

/* MOBILE SAFE AREA */
@media (max-width: 768px) {
    .contact-fab {
        right: 15px;
        bottom: 15px;
    }
}
