        /* Custom CSS */
        :root {
            --primary-color: #FF6B00;
            --secondary-color: #6610f2;
            --gradient-primary: linear-gradient(90deg, #ff6b00, #ff00d4);
            --gradient-secondary: linear-gradient(90deg, #6610f2, #00d4ff);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .divider-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .divider-dot-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff6b00, #ff00d4, #6610f2, #00d4ff);
            transform: rotate(45deg);
        }
        .top-bar {
            background-color: #ff6b00;
            color: black;
            padding: 5px 0;
            font-size: 14px;
        }
        .logo {
            max-height: 40px;
        }
        .navbar {
            padding: 15px 0;
        }
        .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
        }
        .btn-login {
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 500;
        }
        .btn-apply {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 500;
        }
        .hero-section {
            padding: 80px 0;
        }
        .hero-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .hero-subtitle {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .btn-explore {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 500;
            text-transform: uppercase;
        }
        .accreditation-card {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            background-color: white;
            height: 100%;
            border: none;
        }
        .accreditation-card h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .accreditation-card p {
            font-size: 14px;
            color: #666;
        }
        .accreditation-logo {
            max-height: 50px;
            margin-bottom: 15px;
        }
        .testimonial-section {
            background: linear-gradient(90deg, rgba(230, 255, 230, 0.3), rgba(230, 255, 230, 0.7));
            padding: 60px 0;
            border-radius: 20px;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .testimonial-img {
            border-radius: 10px;
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .testimonial-stars {
            color: #FFD700;
            margin-bottom: 10px;
        }
        .contact-form {
            background: linear-gradient(135deg, rgba(255, 200, 240, 0.2), rgba(200, 220, 255, 0.2));
            padding: 40px;
            border-radius: 20px;
        }
        .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        .btn-submit {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            width: 100%;
            font-weight: 500;
        }
        .footer {
            background-color: #101828;
            color: white;
            padding: 60px 0 20px;
        }
        .footer-logo {
            max-height: 40px;
            margin-bottom: 20px;
        }
        .footer h5 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .social-icon {
            background-color: #1e293b;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--primary-color);
        }
        .colorful-dot {
            width: 30px;
            height: 30px;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin: 0 auto;
        }
        .credential-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border: none;
        }
        .credential-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 15px 0;
        }
        .credential-card p {
            font-size: 14px;
            color: #666;
        }
        .credential-logo {
            max-height: 60px;
            margin-bottom: 15px;
        }
        .view-all-btn {
            background-color: transparent;
            border: 1px solid #ddd;
            color: #333;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 500;
        }
        /* Vertical line separator */
        .vertical-line-container {
            position: relative;
            height: 100%;
            display: flex;
            justify-content: center;
            padding: 20px 0;
        }
        .vertical-line {
            width: 2px;
            background: #e0e0e0;
            height: 100%;
            position: relative;
        }
        .color-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .color-dot-inner {
            width: 90%;
            height: 90%;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b00, #ff00d4, #6610f2, #00d4ff);
        }
        .color-dot.top {
            top: 0;
        }
        .color-dot.middle {
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .color-dot.bottom {
            bottom: 0;
        }
