        :root {
          /* Your existing variables */
          --primary: #4189DD !important;               /* <-- changed to your color */
          --primary-light: #e6f0ff;         /* light tint of #4189DD (optional but recommended) */
          --accent: #4cc9f0;
          --gray-light: #f8f9fc;
          --text: #2d3436;
          --text-light: #636e72;
          --dark-bg: #1a1f2e;
          --dark-text: #e2e8f0;
          --dark-muted: #94a3b8;

          /* 🔑 Critical: Override Bootstrap 5's internal variables */
          --bs-primary: #4189DD !important;
          --bs-primary-rgb: 65, 137, 221;
          --bs-primary-text-emphasis: #1a3c7a;
          --bs-primary-bg-subtle: #e6f0ff;
          --bs-primary-border-subtle: #ccdffb;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
            background-color: var(--gray-light);
            color: var(--text);
            line-height: 1.6;
            padding-top: 90px;
        }

        /* === NAVBAR === */
        .navbar {
            background-color: white !important;
            box-shadow: 0 4px 20px rgba(67, 97, 238, 0.1);
            padding: 1rem 0;
            border-bottom: 1px solid #e9ecef;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-brand i { font-size: 1.8rem; }

        .navbar-nav .nav-link {
            position: relative;
            color: var(--text) !important;
            font-weight: 500;
            padding: 0.75rem 1.2rem !important;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        /* Hover & Active */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
            background-color: var(--primary-light);
        }

        /* Active underline – only on desktop */
        @media (min-width: 992px) {
            .navbar-nav .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                width: 30px;
                height: 3px;
                background: var(--primary);
                border-radius: 2px;
            }
            .navbar-nav .nav-link:hover::after {
                content: '';
                position: absolute;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 3px;
                background: var(--primary);
                border-radius: 2px;
                opacity: 0.5;
            }
        }

        .btn-signin {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-signin:hover {
            background-color: #3651d4;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
        }

        /* Mobile collapsed menu – left aligned */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                margin-top: 1rem;
                padding: 1.5rem;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .navbar-nav {
                align-items: flex-start !important;
            }
            .navbar-nav .nav-link {
                width: 100%;
                text-align: left;
            }
            .btn-signin {
                width: 100%;
                text-align: center;
            }
        }

        /* === HERO === */
        .hero {
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            color: white;
            padding: 150px 0 110px;
            position: relative;
            overflow: hidden;
            margin-top: -10px;
            background: url(../img/bg_1.jpg);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero > * {
            position: relative;
            z-index: 2;
        }
        .hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
        .hero p.lead { font-size: 1.35rem; opacity: 0.95; max-width: 700px; margin: 0 auto 2rem; }

        .btn-hero-primary {
            background-color: var(--accent);
            border: none;
            padding: 1rem 2.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(76, 201, 240, 0.4);
        }
        .btn-hero-primary:hover { background-color: #3ab9dc; transform: translateY(-3px); }

        .btn-hero-light {
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.4);
            color: white;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .btn-hero-light:hover { background: white; color: #4361ee; }

        /* === FEATURES === */
        .features { padding: 100px 0; background-color: white; }
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid #f1f3f9;
            height: 100%;
            transition: all 0.4s ease;
        }
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }
        .feature-icon {
            width: 90px; height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }
        .feature-icon i { font-size: 2.2rem; color: white; }

        /* === DARK FOOTER === */
        footer {
            background-color: var(--dark-bg);
            color: var(--dark-muted);
            padding: 80px 0 40px;
        }
        .footer-title {
            font-weight: 700;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: var(--dark-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .social-icon {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: var(--dark-text);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-4px);
        }
        .copyright {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--dark-muted);
            font-size: 0.95rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) { .hero h1 { font-size: 3.2rem; } }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.8rem; }
            .hero { padding: 100px 0 80px; }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 2.4rem; }
            .hero p.lead { font-size: 1.15rem; }
        }


        .section-title {
          font-weight: 700;
          font-size: 2rem;
          margin-bottom: 2rem;
          position: relative;
        }
/*        .section-title::after {
          content: '';
          display: block;
          width: 60px;
          height: 4px;
          background: #007bff;
          margin: 0.5rem auto 0;
          border-radius: 2px;
        }*/

        .feature-card {
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          border-radius: 12px;
        }
        .feature-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .fees-table th, .fees-table td {
          vertical-align: middle;
        }
        .fees-table thead {
          background: #007bff;
          color: #fff;
        }

.contact-section {
  background: linear-gradient(135deg, #4189DD, #4cc9f0);
  color: #fff;
  border-radius: 12px;
  padding: 3rem;
}
.contact-section a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}
                
        .hero-about { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../img/maxresdefault_one.jpg') center/cover no-repeat; color: white; margin-top:-5px; }
        .icon-box i { font-size: 2.5rem; color: #0d6efd; }
        .feature-icon { width: 70px; height: 70px; background: #e7f0ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
        .trust-badge { background: #f8f9fa; border-radius: 12px; padding: 20px; text-align: center; }