 
 * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
    }
   
    :root {
    --primary-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --accent-color: #3b82f6;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }


  .container-chip {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    
  }

  .chip {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    color: var(--text-primary);
  }

  /* Outer container */
  .logo-strip-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
  }

  /* Shadow fade edges */
  .logo-strip-container::before,
  .logo-strip-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .logo-strip-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg) 0%, transparent 100%);
  }

  .logo-strip-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg) 0%, transparent 100%);
  }

  /* Scrollable row */
  .logo-strip {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px 40px;
    scrollbar-width: none; /* Firefox */
  }
  .logo-strip::-webkit-scrollbar { display: none; } /* Chrome */

  /* Each logo box */
  .logo-box {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    border-radius: 16px;
    padding: 14px 22px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
  }

  .logo-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(59, 130, 246, 0.2);
  }

  .logo-box img {
    height: 32px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
  }

  .logo-box:hover img {
    transform: scale(1.05);
  }

  .logo-box span {
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    color: var(--text-secondary);
    transition: var(--transition);
  }

  .logo-box:hover span {
    color: var(--accent-color);
  }

  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    color: var(--text-secondary);
  }

  .nav-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
  }

  .nav-btn.prev {
    left: 10px;
  }

  .nav-btn.next {
    right: 10px;
  }

  /* Responsive design */
  @media (max-width: 768px) {
   
    
    h2 {
      font-size: 20px;
    }
    
    .logo-strip {
      gap: 16px;
      padding: 12px 24px;
    }
    
    .logo-box {
      padding: 12px 18px;
      border-radius: 12px;
    }
    
    .logo-box img {
      height: 28px;
    }
    
    .nav-btn {
      display: none;
    }
  }

  @media (max-width: 480px) {
    
    .logo-box {
      padding: 10px 16px;
      gap: 10px;
    }
    
    .logo-box img {
      height: 24px;
    }
    
    .logo-box span {
      font-size: 14px;
    }
  }
body {
   
    margin: 0;
    padding: 0;
}
.head {
    background-color: #000000;
    padding: 1px 0; /* thinner strip */
}
.head1 {
    list-style: none;
    display: flex;
    justify-content: left;
    gap: 30px;
    margin: 0;
    padding: 6px 20px; }
.head1 a {
    text-decoration: none;
    color: white;
    font-size: smaller;
    font-weight: normal;
}
.head1 a:hover {
    color: black;
    background-color: white;
    transition: 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}
@media (max-width: 480px) {
    .head{
        display: none;
    }
    
}

           nav {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    position: sticky;  /* ✅ Make it sticky */
    top: 0;            /* ✅ Stick to the top */
    z-index: 1000;     /* ✅ Ensure it stays above all content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
        .nav-left {
            font-size: 22px;
            font-weight: 700;
            color: #0406ae;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-left i {
            color: #0c0058;
        }

        .nav-center {
            position: relative;
        }

        .nav-center button {
            background: none;
            border: none;
            color: rgb(0, 0, 0);
            font-size: 16px;
            cursor: pointer;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-center button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            color: #000;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            padding: 25px;
            border-radius: 12px;
            width: 90vw;
            max-width: 1000px;
            z-index: 100;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            border-top: 4px solid #0033ff;
        }

        .dropdown-column h4 {
            margin-bottom: 15px;
            font-size: 16px;
            color: #1a1a2e;
            border-bottom: 2px solid #c9d0ff;
            display: inline-block;
            padding-bottom: 5px;
        }

        .dropdown-column a {
            display: block;
            text-decoration: none;
            color: #555;
            font-size: 14px;
            margin: 8px 0;
            transition: 0.2s;
            padding: 4px 0;
        }

        .dropdown-column a:hover {
            color: #2563eb;
            transform: translateX(5px);
        }

        .nav-center:hover .dropdown {
            display: grid;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .auth-buttons {
            display: flex;
            gap: 12px;
        }

        .login-btn, .signup-btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }

        .login-btn {
            background: transparent;
            border: 1px solid white;
            color: #0026ff;
            font-weight: normal;
        }

        .login-btn:hover {
            background-color:rgb(0, 0, 148);
            color: white;
            transition: 0.3s ease-in-out;
        }

        .signup-btn {
            background-color: white;
            border: 1px solid #0004ff;
            color: #1a1a2e;
            font-weight: normal;
        }

        .signup-btn:hover {
            background-color: #000d84;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
        }

        .free-courses:hover {
            background-color: rgba(255, 215, 0, 0.1);
        }

        /* Mobile Toggle Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: rgb(0, 0, 0);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .mobile-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Left Side Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -70%;
            width: 70%;
            height: 100vh;
            background: linear-gradient(to bottom, #ffffff, #f0f8ff);
            z-index: 1000;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            overflow-y: auto;
            padding: 0px 0;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 10px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 10px;
        }

        .mobile-menu-header .logo {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-menu-header .logo i {
            color: #2563eb;
        }

        .mobile-close {
            background: none;
            border: none;
            font-size: 22px;
            color: #64748b;
            cursor: pointer;
            transition: color 0.3s;
        }

        .mobile-close:hover {
            color: #2563eb;
        }

        .mobile-menu-item {
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-menu-header-item {
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            color: #1a1a2e;
            transition: background-color 0.2s;
        }

        .mobile-menu-header-item:hover {
            background-color: #f1f5f9;
        }

        .mobile-menu-header-item i {
            transition: transform 0.3s;
            color: #64748b;
        }

        .mobile-menu-header-item.active i {
            transform: rotate(180deg);
            color: #2563eb;
        }

        .mobile-dropdown {
            background-color: #f8fafc;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown.active {
            max-height: 500px;
        }

        .mobile-dropdown a {
            display: block;
            padding: 12px 35px;
            color: #475569;
            text-decoration: none;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.2s;
            font-size: 14px;
        }

        .mobile-dropdown a:hover {
            background-color: #e0f2fe;
            color: #2563eb;
            padding-left: 40px;
        }

        .mobile-dropdown a i {
            margin-right: 10px;
            width: 18px;
            text-align: center;
            color: #64748b;
        }

        .mobile-auth {
            display: flex;
            padding: 20px;
            gap: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-auth button {
            flex: 1;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            border: none;
        }

        .mobile-login {
            background: transparent;
            border: 1px solid #2563eb !important;
            color: #2563eb;
        }

        .mobile-login:hover {
            background-color: #dbeafe;
        }

        .mobile-signup {
            background-color: #2563eb;
            color: white;
        }

        .mobile-signup:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
        }

        .mobile-free {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2563eb;
            font-weight: 600;
            padding: 15px 20px;
            cursor: pointer;
            transition: background-color 0.2s;
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-free:hover {
            background-color: #f1f5f9;
        }

        .mobile-free i {
            font-size: 18px;
        }

        /* Overlay when mobile menu is open */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* ---- Responsive ---- */
        @media (max-width: 1024px) {
            nav {
                padding: 12px 3%;
            }
            
            .dropdown {
                width: 95vw;
                gap: 20px;
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-center, .nav-right {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .dropdown {
                grid-template-columns: 1fr;
            }
            
            .mobile-auth {
                flex-direction: column;
            }
        }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 10px 10px;
      margin: 0 auto;
    }

    .carousel-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 0 20px;
      scroll-snap-type: x mandatory;
    }

    .carousel-container::-webkit-scrollbar {
      display: none;
    }

    .card {
      flex: 0 0 calc(50% - 10px);
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      padding: 25px;
      scroll-snap-align: start;
      min-width: 0;
      transition: transform 0.3s, box-shadow 0.3s;
      overflow: hidden; /* Added to ensure no overflow from image */
      position: relative; /* Added for mobile background image */
    }

    /* Card 1 - Green */
    .card:nth-child(1) {
      background: linear-gradient(135deg,  #f3f0e3);
    }

    /* Card 2 - Blue */
    .card:nth-child(2) {
      background: linear-gradient(135deg, #0B1D51);
      color: white;
    }

    /* Card 3 - Purple */
    .card:nth-child(3) {
      background: linear-gradient(135deg, #e4f2fb);
    }
    
    /* Card 4 - Orange */
    .card:nth-child(4) {
      background: linear-gradient(135deg, #17313E);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .card-content {
      flex: 1;
      margin-right: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative; /* Added for z-index */
      z-index: 2; /* Added to ensure content stays above background */
    }

    .card h2 {
      font-size: 1.4rem;
      color: #002855;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .card p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .card button {
      background: #0056d2;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
      font-size: 0.9rem;
      align-self: flex-start;
    }

    .card button:hover {
      background: #003d99;
    }

    .card-image {
      width: 40%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -25px; /* Negative margin to extend image to edges */
      margin-left: 0; /* Reset left margin */
    }

    .card img {
      width: 100%;
      height: 100%; /* Changed to 100% to fill container */
      object-fit: cover;
      border-radius: 0 12px 12px 0; /* Only round right corners */
    }

    /* Mobile background images - SINGLE CARD VIEW */
  /* Mobile background images - SINGLE CARD VIEW with overlay */
@media (max-width: 768px) {
  .card {
    flex: 0 0 calc(100% - 30px) !important;
    min-width: calc(100% - 30px) !important;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 16px;
    min-height: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin: 0 5px;
  }

  /* Set images as background with dark overlay */
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Slightly transparent overlay */
    filter: brightness(0.7); /* Dark overlay for readability */
  }

  .card:nth-child(1)::before { background-image: url('images/2.png'); }
  .card:nth-child(2)::before { background-image: url('images/1.png'); }
  .card:nth-child(3)::before { background-image: url('images/3.png'); }
  .card:nth-child(4)::before { background-image: url('images/4.png'); }

  .card-image {
    display: none; /* Hide original right-side image */
  }

  .card-content {
    margin: 0;
    padding: 25px;
    color: white; /* Text visible over dark overlay */
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }

  .card h2, .card p {
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  
  }
}

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .card {
        flex: 0 0 calc(50% - 10px);
      }
    }

    @media (max-width: 600px) {
      .card {
        min-height: 280px;
      }
      
      .card h2 {
        font-size: 1.3rem;
      }
      
      .card-content {
        padding: 20px;
      }
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      font-size: 22px;
      color: #003d99;
      z-index: 10;
      transition: 0.3s;
    }

    .nav-btn:hover {
      background: #003d99;
      color: white;
    }

    .prev { left: 0; }
    .next { right: 0; }
    
    .carousel-title {
      text-align: center;
      font-size: 2rem;
      color: #002855;
      margin-bottom: 10px;
    }
    
    .carousel-subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Mobile indicators */
    .carousel-indicators {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 15px;
    }
    
    .indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ccc;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .indicator.active {
      background-color: #0056d2;
    }
    
    @media (max-width: 768px) {
      .carousel-indicators {
        display: flex;
      }
    }

.courses-section {
    display: flex;
    gap: 20px;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.courses-section-item {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.courses-section-header {
    text-align: left;
    padding: 10px 0 20px 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    border-bottom: 2px solid #eef4ff;
    margin-bottom: 15px;
}
.courses-section-header span {
    color: #0066ff;
}
.courses-section-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.courses-section-pill {
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    border: 1px solid #f0f0f0;
}
.courses-section-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-color: #0066ff;
}
.courses-section-pill img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}
.courses-section-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.courses-section-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.courses-section-info .provider {
    color: #555;
    font-size: 13px;
    margin-bottom: 4px;
}
.courses-section-info .meta {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}
.courses-section-star {
    color: #f8b400;
    font-size: 14px;
}
.courses-section-empty {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px 0;
}

/* Mobile Styles - Horizontal Carousel */
@media (max-width: 768px) {
    .courses-section {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding: 15px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .courses-section::-webkit-scrollbar {
        display: none;
    }
    
    .courses-section-item {
        flex: 0 0 auto;
        width: 85vw;
        scroll-snap-align: start;
        padding: 15px;
    }
    
    .courses-section-header {
        font-size: 18px;
        padding: 0 0 12px 0;
    }
    
    .courses-section-container {
        gap: 10px;
    }
    
    .courses-section-pill {
        padding: 10px 12px;
    }
    
    .courses-section-pill img {
        width: 45px;
        height: 45px;
    }
    
    .courses-section-info h3 {
        font-size: 15px;
    }
    
    .courses-section-info .provider,
    .courses-section-info .meta {
        font-size: 12px;
    }
    
    /* Carousel Indicators */
    .courses-section-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 15px 0;
    }
    
    .courses-section-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        transition: all 0.3s ease;
    }
    
    .courses-section-indicator.active {
        background: #0066ff;
        width: 20px;
        border-radius: 4px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .courses-section {
        padding: 20px 30px;
        gap: 15px;
    }
    
    .courses-section-item {
        padding: 15px;
    }
    
    .courses-section-header {
        font-size: 20px;
    }
    
    .courses-section-pill img {
        width: 45px;
        height: 45px;
    }
    
    .courses-section-info h3 {
        font-size: 15px;
    }
}

.o-level-online-container {
    position: relative;
    margin: 0 auto;
     padding: 20px;
}

.o-level-online-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

/* Hide scrollbar */
.o-level-online-carousel::-webkit-scrollbar {
    display: none;
}
.o-level-online-carousel {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

/* Card styling */
.o-level-online-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    flex: 0 0 50%;  /* Each card takes 100% width */
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 250px;
}

.o-level-online-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.o-level-online-card-text {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.o-level-online-card-text h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0%;
}

.o-level-online-card-text p {
    font-size: 1rem;
    color: #fffcfc;
    margin: 8px 0 0px 0;
}

.o-level-online-card-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* Dots indicator */
.o-level-online-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.o-level-online-dot {
   display: none;
}

.o-level-online-dot.active {
    background-color: #4a6cf7;
}
.o-level-online-explore {
    margin-top: 12px;
    padding: 10px 15px;
    border: none;
    background-color: #0323b2;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.o-level-online-explore:hover {
    background-color: #3751c8;
}
@media (max-width:480px) {
    .o-level-online-card {
        flex: 0 0 100%;  /* Each card takes full width on small screens */
    }
    .o-level-online-card p{
        display: none;
    }
    @media (max-width:480px) {
    .o-level-online-card {
        flex: 0 0 100%;  /* Each card takes full width on small screens */
        flex-direction: column; /* stack content vertically */
        background-size: cover;
        background-position: center;
        color: #fff;
        position: relative;
    }

    .o-level-online-card-text {
        z-index: 2;
        background: rgba(0,0,0,0.4); /* optional overlay for readability */
        padding: 20px;
    }

    .o-level-online-card p{
        display: none; /* you can keep it or hide */
    }

    .o-level-online-card-image {
        display: none; /* hide the separate image div on mobile */
    }
}

    @media (max-width:480px) {
    .o-level-online-card:nth-child(1) {
        background-image: url('images/Online\ acces.png');
    }
    .o-level-online-card:nth-child(2) {
        background-image: url('images/O\ level.png');
    }
    .o-level-online-explore {
        margin-top: 4px;
    }
}

    
}
 .career {
      font-family: 'Poppins', sans-serif;
      background-color: #f9fbff;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
    }

    .career-section {
      background-color: #f1f6ff;
      padding: 40px 30px;
      border-radius: 30px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      width: 90%;
    }

    .career-section h2 {
      font-size: 1.4rem;
      font-weight: 600;
      color: #101010;
      margin-bottom: 25px;
    }

    .career-options {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .option {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 2px solid #e0e6f5;
      border-radius: 15px;
      padding: 12px 20px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .option .icon {
      background: #dbe7ff;
      color: #fff;
      padding: 10px;
      border-radius: 10px;
      font-size: 1.1rem;
    }

    .option:hover {
      border-color: #0056ff;
      transform: translateY(-2px);
      box-shadow: 0 3px 10px rgba(0,86,255,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .career-options {
        flex-direction: column;
        align-items: center;
      }
      .option {
        width: 90%;
        justify-content: center;
      }
    }
    
.course-2-section-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1400px;
    margin: 0 auto;
}
.course-2-section-container::-webkit-scrollbar { display: none; }

.course-2-section {
    flex: 0 0 420px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.course-2-header {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    border-bottom: 2px solid #eef4ff;
    margin-bottom: 15px;
}
.course-2-header span { color: #0066ff; }
.course-2-courses-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.course-2-course-pill {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
    border: 1px solid #f0f0f0;
}
.course-2-course-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-color: #0066ff;
}
.course-2-course-pill img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}
.course-2-course-info h3 { margin:0 0 5px 0; font-size:16px; font-weight:600; }
.course-2-course-info .course-2-provider { font-size:13px; color:#555; margin-bottom:4px; }
.course-2-course-info .course-2-meta { font-size:12px; color:#666; display:flex; align-items:center; gap:4px; }
.course-2-star { color: #f8b400; }
.course-2-empty-message { text-align:center; color:#888; font-style:italic; padding:20px 0; }

/* Carousel indicators */
.course-2-indicators { display:none; justify-content:center; gap:8px; padding:15px 0; }
.course-2-indicator {
    width:8px; height:8px; border-radius:50%; background:#ccc; transition:all 0.3s ease;
}
.course-2-indicator.active { background:#0066ff; width:20px; border-radius:4px; }

/* Mobile */
@media(max-width:768px){
    .course-2-section-container { padding:15px 20px; gap:12px; }
    .course-2-section { flex:0 0 85%; }
}
 #university-section {
        margin: 0 auto;
        background: rgb(245, 249, 255);
        padding: 60px 40px;
        border-radius: 12px;
    }

    .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .university-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 40px;
        position: relative;
    }

    .university-logos::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 33.33%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    }

    .university-logos::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 66.66%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    }

    .university-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        height: 100px;
        transition: all 0.3s ease;
    }

    .university-logo:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

    .university-logo img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        opacity: 0.9;
        transition: filter 0.3s ease, opacity 0.3s ease;
       
    }

    .university-logo:hover img {
        opacity: 1;
      
        
    }

    .university-text h2 {
        font-weight: light;
        
        color: #1a1a1a;
       
    }

    .highlight {
        color: #0066cc;
        font-weight: 600;
    }

    .cta-button {
        display: inline-block;
        padding: 14px 32px;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
    }

    @media (max-width: 768px) {
        #university-section {
            padding: 40px 20px;
        }

        .wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .university-logos {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .university-logos::before {
            left: 50%;
        }
        
        .university-logos::after {
            display: none;
        }

        .university-logo {
            height: 80px;
        }
    }

    @media (max-width: 480px) {
        #university-section {
            padding: 30px 15px;
        }

        .university-logos {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }
     .testimonial {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        margin-top: 20px;
        text-align: center;
    }

    .testimonial-container {
      padding-left: 20px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
        scrollbar-width: none; /* Firefox */
    }

    .testimonial-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .testimonial-card {
        flex: 0 0 340px;
        background: #fff;
        border-radius: 8px;
       border: 1px solid #d1cfcf;
        padding: 20px;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
    }

    .profile {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .profile img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .profile h3 {
        font-size: 16px;
        font-weight: 600;
    }

    .testimonial-text {
        font-size: 15px;
        color: #979797;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 80%;
        }
    }
      /* === Responsive Preloader === */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    #preloader h1 {
      color: #012250;
      letter-spacing: 2px;
      text-align: center;
      animation: fadeText 2s ease-in-out infinite alternate;
      font-size: clamp(1.8rem, 6vw, 3rem); /* responsive text size */
    }

    @keyframes fadeText {
      0% { opacity: 1; transform: scale(1); }
      100% { opacity: 0.6; transform: scale(1.05); }
    }

    /* Optional loader circle below text */
    .loader-circle {
      margin-top: 25px;
      width: 40px;
      height: 40px;
      border: 4px solid #142a9b;
      border-top: 4px solid transparent;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
