
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } 

    body {
      font-family: "Jost", sans-serif !important;
      /* background: #f4f7fc; subtle background outside navbar */
    }
     /* background strictly #0B2545 */
    .navbar.bg-asla {
      background-color: #0B2545 !important;
    }
    /* simple logo area: mimic the exact "Alliance Logo" from prompt (first line) */
    .navbar-brand {
      font-weight: 700;
      
      letter-spacing: -0.5px;
      color: white !important;
      line-height: 1.2;
    }
    .navbar-brand img {
      height: 70px;
     
    }
    .brand-sub {
      font-size: 0.9rem;
      font-weight: 300;
      border-left: 1px solid rgba(255,255,255,0.4);
      padding-left: 0.65rem;
      margin-left: 0.4rem;
    }
    /* nav links exactly: Programs, International Pathway, Career Pathways, About ASLA, Contact, Apply Now */
    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.9) !important;
      font-weight: 500;
      font-size: 1rem;
	  padding-left: .5rem !important;
	  padding-right: .5rem !important;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    .navbar-nav .nav-link:hover {
      color: white !important;
      background-color: rgba(255,255,255,0.1);
      border-radius: 0.3rem;
    }
    /* apply now as simple nav link (not a button, just link as others) — matches image? 
       but in original image it's "Apply Now" at same level, so we keep inline. */
    .nav-link.apply-link {
      font-weight: 600;
      background-color: rgba(255,255,255,0.12);
      border-radius: 2rem;
      padding-left: 1.2rem !important;
      padding-right: 1.2rem !important;
      margin-left: 0.5rem;
    }
    /* optional but no extra badges/naac */
    @media (max-width: 991px) {
      .navbar-nav {
        padding-top: 0.8rem;
      }
      .nav-link.apply-link {
        background-color: transparent;
        margin-left: 0;
        padding-left: 1rem !important;
      }
    }

    /* ---------- MAIN BANNER (redesigned, aesthetic & neat) ---------- */

    
    .hero {
      background: linear-gradient(145deg, #ffffff 0%, #f2f6fd 100%);
      padding: 3.5rem 5%;
      color: #1e293b;
      position: relative;
      overflow: hidden;
    }

    /* subtle organic shape behind */
    .hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(11, 37, 69, 0.02) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .hero-container {
      display: flex;
      align-items: center;
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;        /* for smaller screens */
    }

    /* LEFT BLOCK: collage + text together (neat, cohesive) */
    .hero-left {
      flex: 1.2;
      min-width: 320px;
    }

    /* faculty grid — more refined, elevated */
    .faculty-collage {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 420px;
      margin-bottom: 2rem;
    }

    .faculty-collage img {
      
      height:200px;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 10px;          /* modern soft squares */
      box-shadow: 0 20px 30px -12px rgba(0, 20, 40, 0.2);
      transition: 0.3s ease;
      border: 3px solid white;
    }

    .faculty-collage img:hover {
      transform: scale(1.02) translateY(-4px);
      box-shadow: 0 28px 28px -14px rgba(11, 37, 69, 0.25);
    }

    /* hero content — crisp typography */
    .hero-content h1 {
      font-size: 2.8rem;
      font-weight: 600;
      line-height: 1.2;
      color: #0B2545;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }
   

    .hero-content h2 {
      background: transparent;
      color: #701f17;
      font-size: 1.8rem;
      font-weight: 500;
      display: inline-block;
      padding: 0;
      margin: 0.5rem 0 0.75rem 0;
      border-left: 8px solid #F59E0B;
      padding-left: 1.2rem;
      background: linear-gradient(to right, #f0f9ff, transparent);
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #334155;
      margin-bottom: 2rem;
      max-width: 500px;
      font-weight: 380;
      line-height: 1.5;
    }

    .apply-btn {
      background: #0B2545;          /* deeper navy, matches navbar */
      color: white;
      border: none;
      padding: 14px 38px;
      font-size: 1.2rem;
      font-weight: 500;
      border-radius: 50px;           /* pill shape */
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 10px 18px -10px #0B2545;
      letter-spacing: 0.3px;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .apply-btn:hover {
      background: #1e3a5f;
      transform: translateY(-3px);
      box-shadow: 0 24px 24px -14px #0B2545;
    }

    /* RIGHT BLOCK: floating form card — clean, elevated */
    .hero-right {
      flex: 0.9;
      min-width: 340px;
      display: flex;
      justify-content: center;
    }

    .form-card {
      background: white;
      border-radius: 36px;
      box-shadow: 0 30px 50px -20px rgba(0, 20, 50, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
      padding: 1.8rem 1.8rem 1.2rem 1.8rem;
      width: 100%;
      max-width: 420px;
      backdrop-filter: blur(2px);
      transition: 0.3s;
    }

    /* title inside form area (optional to blend) */
    .form-card .npf_wgts {
      border-radius: 24px;
      overflow: hidden;
      background: white;
      min-height: 420px;          /* respects widget height */
      width: 100% !important;
    }

    /* very subtle note — “enquiry form” label (design detail) */
    .form-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #5e6f88;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .form-label span {
      background: #e9eff8;
      padding: 4px 12px;
      border-radius: 40px;
      font-weight: 500;
      color: #0B2545;
    }

    /* responsiveness */
    @media (max-width: 950px) {
      .hero-container {
        flex-direction: column;
        gap: 2.5rem;
      }
      .hero-left {
        width: 100%;
      }
      .faculty-collage {
        max-width: 100%;
      }
      .navbar {
        padding: 12px 24px;
      }
      .nav-links {
        gap: 1.2rem;
      }
    }

    @media (max-width: 550px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero-content h2 {
        font-size: 1.4rem;
      }
    }

    /* small extra — integrate widget nicely */
    .floating-widget {
      width: 100%;
    }

    /* keep noPaperForms widget from overflowing */
    .npf_wgts {
      max-width: 100% !important;
    }

  .faculty-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
    color: #000;
    overflow: hidden;
  }

  /* Background Decoration */
  .faculty-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
  }

  .circle-1 {
    width: 400px;
    height: 400px;
    background: #ffd24a;
    top: -200px;
    right: -200px;
  }

  .circle-2 {
    width: 300px;
    height: 300px;
    background: #4a90e2;
    bottom: -150px;
    left: -150px;
  }

  .pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 210, 74, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
  }

  .faculty-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  @media (min-width: 768px) {
    .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  /* Left Section Styling */
  .faculty-left {
    width: 100%;
  }

  .section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .tag-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #ffd24a 0%, #ffb347 100%);
  }

  .tag-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd24a;
  }

  .section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #ffffff;
  }

  .section-title span {
    font-weight: 700;
    background: linear-gradient(135deg, #ffd24a 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
  }

  .info-card[data-delay="0.1s"] { animation-delay: 0.1s; }
  .info-card[data-delay="0.2s"] { animation-delay: 0.2s; }
  .info-card[data-delay="0.3s"] { animation-delay: 0.3s; }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .info-card:hover {
    transform: translateX(10px);
    border-color: #ffd24a;
    box-shadow: 0 10px 30px -10px rgba(255, 210, 74, 0.2);
  }

  .card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: #ffd24a;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .info-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .card-content {
    flex: 1;
  }

  .card-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffd24a;
  }

  .card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 12px;
    line-height: 1.3;
    color: #ffffff;
  }

  .card-text {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
  }

  .card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(255, 210, 74, 0.1) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .info-card:hover .card-hover-effect {
    opacity: 1;
  }

  /* Right Slider Styling - FIXED */
  .faculty-right {
    width: 100%;
    height: 100%;
    margin-left:10%;
    margin-top:10%;
    display: flex;
    align-items: center;
  }

  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px; /* Fixed minimum height */
  }

  .slider-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b0b0b0;
  }

  .label-dot {
    width: 8px;
    height: 8px;
    background: #ffd24a;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  /* Owl Carousel Container - FIXED */
  .faculty-slider {
    height: 450px !important; /* Fixed height */
    margin-bottom: 30px;
  }

  .faculty-slider.owl-carousel {
    display: block;
  }

  .faculty-slider.owl-carousel .owl-stage-outer {
    overflow: hidden;
    height: 100% !important;
  }

  .faculty-slider.owl-carousel .owl-stage {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .faculty-slider.owl-carousel .owl-item {
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
  }

  .faculty-slider.owl-carousel .owl-item.active {
    opacity: 1;
  }

  .faculty-slider.owl-carousel .owl-item.active + .owl-item.active {
    opacity: 0.8;
  }

  .slide {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 10px;
    height: 100%;
    max-height: 400px; /* Control slide height */
  }

  .slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide:hover .slide-image img {
    transform: scale(1.1);
  }

  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                transparent 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide:hover .slide-overlay {
    opacity: 0.9;
  }

  .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
  }

  .slide:hover .slide-caption {
    transform: translateY(-10px);
  }

  .caption-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 210, 74, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 210, 74, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .slide-caption h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
  }

  .slide:hover .slide-caption h4 {
    transform: translateY(-5px);
  }

  .slide-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.5;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide:hover .slide-caption p {
    transform: translateY(-5px);
  }

  .caption-stats {
    font-size: 12px;
    color: #ffd24a;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide:hover .caption-stats {
    transform: translateY(0);
    opacity: 1;
  }

  /* Slider Navigation - Positioned better */
  .slider-nav {
    position: absolute;
    top: 50%;
    left: -15px;
    right: -15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .nav-btn.prev-btn{
    margin-left: -30px;

  }
   .nav-btn.next-btn{
    margin-right: -30px;

  }

  /* .nav-btn:hover {
    background: #5f4b0e;
    border-color: #45370e;
    transform: scale(1.1);
    color: #0a0a0a;
  } */

  .nav-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Bottom Section */
  .faculty-bottom {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 50px 30px;
    text-align: center;
    background: linear-gradient(135deg, 
                rgba(255, 210, 74, 0.05) 0%, 
                rgba(255, 255, 255, 0.02) 100%);
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
  }

  .bottom-content {
    position: relative;
  }

  .quote-mark {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    font-family: serif;
    color: #ffd24a;
    opacity: 0.2;
    line-height: 1;
  }

  .faculty-bottom h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
  }

  .faculty-bottom h3 span {
    font-weight: 700;
    color: #ffd24a;
  }

  .bottom-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #ffd24a 0%, #ffb347 100%);
    margin: 25px auto;
  }

  .faculty-bottom p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #ffd24a;
    border-radius: 50px;
    color: #ffd24a;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .learn-more-link:hover {
    background: #ffd24a;
    color: #0a0a0a;
    gap: 12px;
  }

  .learn-more-link svg {
    width: 18px;
    height: 18px;
  }

  /* Owl Carousel Customization */
  .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .owl-carousel .owl-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .owl-carousel .owl-dot.active {
    width: 30px;
    background: #ffd24a;
    border-radius: 10px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .faculty-container {
      flex-direction: column;
    }
    
    .slider-nav {
      display: none;
    }
    
    .section-title {
      font-size: 36px;
    }
    
    .slider-wrapper {
      min-height: 450px;
    }
    
    .faculty-slider {
      height: 400px !important;
    }
  }

  @media (max-width: 768px) {
    .faculty-section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .info-card {
      padding: 20px;
    }
    
    .slide-caption h4 {
      font-size: 20px;
    }
    
    .faculty-bottom h3 {
      font-size: 24px;
    }
    
    .faculty-slider.owl-carousel .owl-item {
      opacity: 1;
    }
    
    .slider-wrapper {
      min-height: 400px;
    }
    
    .faculty-slider {
      height: 350px !important;
    }
    
    .slide {
      max-height: 320px;
    }
  }




  .combos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }
        .combo-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        /* === Accordion Styles (Interactive Part) === */
        .combo-category {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden; /* Ensures content stays inside rounded corners */
            background-color: #fff;
            transition: box-shadow 0.2s;
        }
        .combo-category:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        /* Accordion Header (Clickable) */
        .combo-header {
            background-color: #f2f4f6;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1a2b3c;
            transition: background-color 0.2s;
            user-select: none; /* Prevents text selection on double click */
        }
        .combo-header:hover {
            background-color: #e2e6ea;
        }
        .combo-header h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* The Plus/Minus Symbol */
        .toggle-symbol {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1;
            color: #007bff; /* A nice blue to make it noticeable */
            width: 24px;
            text-align: center;
        }

        /* Accordion Content (Hidden by default) */
        .combo-content {
            max-height: 0;
            padding: 0 20px;
            overflow: hidden;
            background-color: #ffffff;
            transition: max-height 0.3s ease-out, padding 0.2s ease;
            border-top: 0px solid transparent;
        }
        .combo-content.active {
            max-height: 300px; /* Adjust if lists are very long */
            padding: 15px 20px;
            border-top: 1px solid #dee2e6;
        }

        /* Styling the lists */
        .combo-content ul {
            margin: 0;
            padding-left: 20px;
        }
        .combo-content li {
            margin-bottom: 8px;
            color: #2c3e50;
        }
        .combo-content li:last-child {
            margin-bottom: 0;
        }

        /* Footer Note */
        .combo-footer-note {
            margin-top: 30px;
            font-style: italic;
            color: #eef2f7;
            text-align: center;
            border-top: 1px solid #dee2e6;
            padding-top: 20px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .combos-grid {
                grid-template-columns: 1fr;
            }
          .navbar-brand img{
            height:41px;
          }
          .navbar{
            padding: 5px 5px;
          }
          .navbar-brand{
            margin-right:0px !important;
          }
          .navbar .container{
           padding: 5px 5px 5px 5px !important;
          }
          .faculty-collage img{
            height:90px;
          }
          .hero-content h1{
            font-size:2.0rem;
          }
          .apply-btn{
            font-size: 15px;
            margin-left:10px;
          }
          .form-card{
            margin-right:15px;
          }
          .faculty-right{
            margin-left:0px;
          }
          .international-pathway{
            padding: 0px !important;
            margin: 0px !important;
          }
          .international-pathway h3{
            font-size:1.5rem !important;
          }
          .stat-num{
            font-size:1.7rem !important;
          }
          .plus{
            font-size:1.7rem !important;
          }
         
            .apply-now-btn {
    background: #F59E0B;
    color: white;
    padding: 10px 25px !important;
    font-size: 1rem !important;
   
  }

  .brochure-btn {
   
    padding: 10px 25px !important;
   
    
    font-size: 1rem !important;
   
   
  }
  .logo-section img{
    height: 52px;
   
  }
          
        }
		
		
#testimonials {
  background: #f8f9fa;
}

.testimonial-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial-item:hover {
  transform: translateY(-6px);
}

/* Image */
.testimonial-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d6efd;
}

/* Quote */
.quote-icon {
  font-size: 26px;
  color: #0d6efd;
  margin-bottom: 10px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-item h5 {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-item small {
  color: #888;
}

/* Nav bottom center */
.testimonial-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}

.testimonial-carousel .owl-nav button {
  width: 42px;
  height: 42px;
  margin: 0 6px;
  border-radius: 50%;
  background: #0d6efd !important;
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s;
}

.testimonial-carousel .owl-nav button i {
  color: #fff !important;
}

.testimonial-carousel .owl-nav button:hover {
  background: #0b5ed7 !important;
}

/* Active center effect */
.owl-item.center .testimonial-item {
  transform: scale(1.05);
  border: 2px solid #0d6efd;
}		

/*gallery*/
/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-item a {
  display: block;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Dark overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: 0.3s;
}

/* Icon overlay */
.gallery-item::before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #fff;
  opacity: 0;
  z-index: 2;
  transition: 0.3s;
}

.gallery-item:hover::after,
.gallery-item:hover::before {
  opacity: 1;
}

/* Nav buttons bottom center */
.campus-carousel .owl-nav,
.infra-carousel .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.campus-carousel .owl-nav button,
.infra-carousel .owl-nav button {
  width: 42px;
  height: 42px;
  margin: 0 6px;
  border-radius: 50%;
  background: #0d6efd !important;
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s;
}

.campus-carousel .owl-nav button:hover,
.infra-carousel .owl-nav button:hover {
  background: #0b5ed7 !important;
}

/* Fix icon alignment */
.owl-nav button i {
  line-height: 42px;
}
.gallery-item::before,
.gallery-item::after {
  pointer-events: none;
}

.gr_bg1 {
	background: #314E73;
background: radial-gradient(circle, rgba(49, 78, 115, 1) 0%, rgba(11, 37, 69, 1) 100%);
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: #0b5ed7;
}

/* Show button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
		