
        :root {
            --primary-color: #2a344e;
            --secondary-color: #1e2a3a;
            --accent-color: #ed2f59;
            --accent-secondary: #ee5a24;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --gradient-primary: linear-gradient(135deg, rgb(26, 26, 60) 0%, #ed2f59 100%);
            --gradient-accent: linear-gradient(135deg, rgb(26, 26, 60) 0%, #ed2f59 100%);
            --gradient-soft: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            
            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--dark-color);
            background: var(--light-color);
            overflow-x: hidden;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* Header Styles - Consistent with main site */
        .navbar-custom {
            position: relative;
            z-index: 1000;
        }

        .navbar-custom .navbar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-custom .navbar.scrolled {
            /* background: rgba(102, 126, 234, 0.95); */
            background-color: #010101;
            backdrop-filter: blur(20px);
            padding: 0.5rem 0;
        }

        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }

        .logo-icon:hover {
            transform: rotate(360deg) scale(1.1);
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
        }

        /* Navigation Links */
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.75rem 1.25rem !important;
            margin: 0 0.25rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 36, 0.2));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            left: 0;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Custom Hamburger Menu */
        .navbar-toggler {
            border: none !important;
            padding: 4px !important;
            box-shadow: none !important;
            outline: none !important;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        .hamburger-line {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger Animation - Default state (3 lines) */
        .navbar-toggler.collapsed .hamburger-line:nth-child(1) {
            transform: translateY(0) rotate(0deg);
        }

        .navbar-toggler.collapsed .hamburger-line:nth-child(2) {
            opacity: 1;
        }

        .navbar-toggler.collapsed .hamburger-line:nth-child(3) {
            transform: translateY(0) rotate(0deg);
        }

        /* Hamburger Animation - Active state (X) */
        .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Menu Styles */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(102, 126, 234, 0.98);
                backdrop-filter: blur(20px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1.5rem;
                border: 1px solid rgba(255, 255, 255, 0.1);
                animation: slideDown 0.3s ease;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
            }

            .navbar-nav {
                gap: 0.5rem;
            }

            .navbar-nav .nav-link {
                text-align: center;
                padding: 1rem !important;
                margin: 0.25rem 0;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.1);
            }

            .navbar-nav .nav-link:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: scale(1.02);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navbar scroll effect */
        .navbar-scroll-effect {
            background: rgba(3, 3, 3, 0.95) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        /* Hero Section - Enhanced */
        .hero-section {
            background: var(--gradient-primary);
            color: white;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 20vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrid)"/></svg>');
            opacity: 0.3;
        }

        /* Floating shapes */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 10%;
            right: 30%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: -0.01em;
        }

       

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); 
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); 
            }
        }

        .hero-info {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin-top: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }

        .info-item i {
            margin-right: 0.8rem;
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            background: var(--gradient-accent);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
            color: white;
        }

        /* Learning Section - Enhanced */
        .learning-section {
            padding: 10px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }
       

        .learning-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="learningGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,107,107,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23learningGrid)"/></svg>');
            opacity: 0.3;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 3.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
            position: relative;
            z-index: 2;
            line-height: 1.1;
        }

        .section-subtitle {
            font-family: var(--font-body);
            font-size: 1.3rem;
            color: #6b7280;
            margin-bottom: 4rem;
            font-weight: 400;
            position: relative;
            z-index: 2;
            letter-spacing: -0.01em;
            line-height: 1.5;
        }
        .enrol-now{
             background: var(--gradient-accent);
             color:#e5e7eb;
             height: 50px;
             display: flex;
             justify-content: center;
             align-items: center;

        }

        .learning-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 1rem 1rem;
            text-align: left;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.8);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .learning-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .learning-card:hover::before {
            transform: scaleX(1);
        }

        .learning-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

        .learning-icon {
            width: 300px;
            height: 90px;
            background: var(--gradient-accent);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }

        .learning-card:hover .learning-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .learning-card h4 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .learning-card p {
            font-family: var(--font-body);
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* Registration Form - Enhanced */
       
       

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .form-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: -0.03em;
            line-height: 1.1;
            position: relative;
            z-index: 2;
        }

       
        .form-label i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

       

        .form-check-label {
            font-family: var(--font-body);
            font-weight: 500;
            color: var(--dark-color);
            letter-spacing: -0.01em;
        }

        .btn-primary-custom {
            background: var(--gradient-accent);
            border: none;
            border-radius: 15px;
            padding: 1.2rem 3rem;
            font-family: var(--font-body);
            font-size: 1.2rem;
            font-weight: 700;
            transition: all 0.4s ease;
            width: 100%;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            position: relative;
            z-index: 2;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
            color: white;
        }

        .btn-primary-custom:disabled {
            opacity: 0.7;
            transform: none;
            cursor: not-allowed;
        }

        /* Alert Styles */
        .alert-custom {
            border: none;
            border-radius: 15px;
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideInDown 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .alert-success {
            background: linear-gradient(45deg, #10b981, #059669);
            color: white;
            border-left: 4px solid #065f46;
        }

        .alert-danger {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
            border-left: 4px solid #991b1b;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Toast Notifications */
        .success_msg, .error_msg {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 9999;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            display: none;
            min-width: 350px;
            backdrop-filter: blur(20px);
            letter-spacing: -0.01em;
        }

        .success_msg {
            background: linear-gradient(135deg, var(--success-color), #059669);
        }

        .error_msg {
            background: linear-gradient(135deg, var(--danger-color), #dc2626);
        }

        /* Footer - Consistent with main site */
        .footer-section {
            position: relative;
            margin-top: 0;
        }

        .footer-background {
            background: linear-gradient(135deg, #2a344e 0%, #1e2a3a 50%, #2a344e 100%);
            position: relative;
            overflow: hidden;
        }

        .footer-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
            opacity: 0.3;
        }

        .footer-content {
            position: relative;
            z-index: 2;
            padding: 4rem 0 2rem;
            color: white;
        }

        .footer-brand {
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }

        .footer-logo .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
        }

        .footer-logo .logo-text {
            font-size: 2rem;
            font-weight: 800;
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-links {
            margin: 3rem 0;
            text-align: center;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            margin: 0 0.8rem;
            font-size: 1.4rem;
        }

        .social-icon:hover {
            background: var(--gradient-accent);
            transform: translateY(-5px) scale(1.1);
            border-color: transparent;
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .footer-shape {
            position: absolute;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 50%;
            animation: floatFooter 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 70%;
            animation-delay: 6s;
        }

        @keyframes floatFooter {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
        }

        .loading.show {
            display: inline-block;
        }

        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.8rem;
            }

            .form-container {
                padding: 2.5rem 2rem;
            }

            .form-title {
                font-size: 2.4rem;
            }

            .learning-card {
                padding: 2rem 1.5rem;
            }

            .hero-info {
                padding: 1rem 1.5rem;
            }

            .info-item {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .footer-content {
                padding: 3rem 0 1.5rem;
            }
        }

        /* Scroll animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .scroll-animate-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

         .proceed{
            color:rgba(102, 126, 234, 0.98)
        }
        .prooced:hover{
            color: #991b1b;
        }
         
 .bigmodal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
  animation: fadeInUp 0.3s ease;
}

/* Gradient border top */
.bigmodal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(135deg, rgb(26, 26, 60), #ed2f59);
  z-index: 2;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Optional animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure modal content sits above the border */
.bigmodal > form {
  position: relative;
  z-index: 3;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
}
.btn-accent {
  background: linear-gradient(to right, #1a1a3c, #ed2f59);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: linear-gradient(to right, #3c3c7a, #ff4c70); /* hover color */
  color: #fff;
  transform: scale(1.02);
}





       
