
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        :root {
            --primary: #4361EE;
            --primary-light: #4895EF;
            --primary-dark: #3A0CA3;
            --accent: #F72585;
            --secondary: #4CC9F0;
            --success: #2EC4B6;
            --warning: #FF9F1C;
            --dark: #1A1A2E;
            --light: #FFFFFF;
            --gray: #6C757D;
            --gray-light: #F8F9FA;
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-light), var(--secondary));
            --gradient-accent: linear-gradient(135deg, var(--accent), #FF6B9D);
            --gradient-success: linear-gradient(135deg, var(--success), #4DEDCB);
            --shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
            --shadow-hover: 0 20px 40px rgba(67, 97, 238, 0.25);
        }
        
        body {
            background: linear-gradient(135deg, #F8FAFF 0%, #F0F5FF 100%);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1430px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Animated Background Elements */
        .bg-blob {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 50%, transparent 70%);
            z-index: -1;
            animation: float 20s infinite ease-in-out;
        }
        
        .bg-blob-1 {
            top: -200px;
            right: -200px;
            background: radial-gradient(circle, rgba(247, 37, 133, 0.08) 0%, transparent 70%);
            animation-delay: 0s;
        }
        
        .bg-blob-2 {
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(76, 201, 240, 0.08) 0%, transparent 70%);
            animation-delay: 5s;
        }
        
        .bg-blob-3 {
            top: 50%;
            left: -100px;
            width: 300px;
            height: 300px;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(67, 97, 238, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: var(--shadow);
        }
        
        .header-buttons {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        
        .header-cta {
            background: var(--gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            border: none;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .header-cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .header-cta:hover:before {
            left: 100%;
        }
        
        .header-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .success-stories-btn {
            background: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .success-stories-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            padding: 4rem 0;
        }
        
        .content-wrapper {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }
        
        /* Left Column - Details */
        .left-column {
            flex: 1;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(67, 97, 238, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .left-column:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient);
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .page-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: colorShift 3s infinite;
        }
        
        @keyframes colorShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .highlight-box {
            background: var(--gradient);
            border-radius: 18px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .highlight-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .highlight-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .highlight-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }
        
        .highlight-list li {
            margin-bottom: 1rem;
            padding-left: 36px;
            position: relative;
            color: white;
            font-weight: 500;
        }
        
        .highlight-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: -2px;
            color: var(--success);
            font-weight: bold;
            font-size: 1.3rem;
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .program-features {
            margin-bottom: 2.5rem;
        }
        
        .features-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }
        
        .features-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
        }
        
        @media (max-width: 1100px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 1.8rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }
        
        .feature-title {
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .feature-desc {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
        }
        
        .process-steps {
            margin-top: 3rem;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 3px;
            height: calc(100% - 40px);
            background: linear-gradient(to bottom, var(--primary-light), var(--secondary));
            border-radius: 3px;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-right: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
            z-index: 1;
        }
        
        .step-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 700;
        }
        
        .step-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Right Column - Registration Form */
        .right-column {
            flex: 0 0 450px;
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(67, 97, 238, 0.1);
            position: sticky;
            top: 100px;
            transition: all 0.3s;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .right-column:hover {
            box-shadow: var(--shadow-hover);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .plan-badge {
            display: inline-block;
            background: var(--gradient-accent);
            color: white;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
            letter-spacing: 0.5px;
        }
        
        .form-title {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }
        
        .form-subtitle {
            color: var(--gray);
            font-size: 1rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }
        
        .form-control {
            width: 100%;
            padding: 16px;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            line-height: 1.5;
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234361EE' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px;
            padding-right: 2.5rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
            background: white;
        }
        
        /* Photo Upload Styles */
        .photo-upload-container {
            border: 2px dashed var(--primary-light);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            background: rgba(67, 97, 238, 0.03);
            margin-bottom: 1rem;
        }
        
        .photo-preview-container {
            display: none;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .photo-preview {
            width: 200px;
            height: 200px;
            border-radius: 12px;
            object-fit: cover;
            border: 3px solid var(--primary);
            box-shadow: var(--shadow);
            margin: 0 auto 1rem;
        }
        
        .crop-container {
            display: none;
            margin-bottom: 1rem;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            overflow: hidden;
            max-height: 400px;
        }
        
        .crop-controls {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .crop-btn {
            padding: 10px 20px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .crop-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: rgba(67, 97, 238, 0.1);
        }
        
        .upload-btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--gradient);
            color: white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .upload-btn i {
            margin-right: 8px;
        }
        
        #photoInput {
            display: none;
        }
        
        /* Terms and Conditions Checkbox */
        .terms-container {
            margin: 1.5rem 0;
            padding: 1.2rem;
            background: rgba(67, 97, 238, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(67, 97, 238, 0.1);
        }
        
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .terms-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            min-width: 20px;
            margin-top: 3px;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .terms-label {
            font-size: 0.9rem;
            color: var(--dark);
            line-height: 1.5;
        }
        
        .terms-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border-bottom: 1px dashed var(--primary);
            cursor: pointer;
        }
        
        .terms-link:hover {
            color: var(--primary-dark);
            border-bottom: 1px solid var(--primary-dark);
        }
        
        .terms-error {
            color: var(--accent);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            display: none;
            align-items: center;
            gap: 5px;
        }
        
        .terms-error.show {
            display: flex;
            animation: shake 0.3s ease-in-out;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .date-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .price-display {
            text-align: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(247, 37, 133, 0.05) 100%);
            border-radius: 16px;
            border: 2px dashed rgba(67, 97, 238, 0.2);
        }
        
        .price {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: normal;
            color: var(--gray);
        }
        
        .btn-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        .btn-submit.enabled {
            opacity: 1;
            cursor: pointer;
        }
        
        .btn-submit:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .btn-submit.enabled:hover:before {
            left: 100%;
        }
        
        .btn-submit.enabled:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .guarantee {
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #E5E7EB;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .guarantee i {
            color: var(--success);
            margin-right: 5px;
        }
        
        /* Student Success Stories Section */
        .success-stories {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(247, 37, 133, 0.03) 100%);
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .success-stories:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 800;
        }
        
        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .students-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }
        
        .students-wrapper {
            display: flex;
            gap: 2rem;
            padding: 1rem 0.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .students-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .student-card {
            flex: 0 0 350px;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(67, 97, 238, 0.1);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        .student-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .student-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        
        .student-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .student-photo {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            object-fit: cover;
            margin-right: 1.5rem;
            border: 3px solid var(--primary-light);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
        }
        
        .student-info {
            flex: 1;
        }
        
        .student-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }
        
        .student-course {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }
        
        .student-platform {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 3px 10px rgba(67, 97, 238, 0.2);
        }
        
        .student-review {
            flex: 1;
            font-style: italic;
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            position: relative;
            padding-left: 2rem;
            font-size: 1rem;
        }
        
        .student-review:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 4rem;
            color: rgba(67, 97, 238, 0.2);
            font-family: serif;
            line-height: 1;
        }
        
        .completion-badge {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 1px dashed #E5E7EB;
        }
        
        .badge {
            display: flex;
            align-items: center;
            background: var(--gradient-success);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 3px 10px rgba(46, 196, 182, 0.2);
        }
        
        .badge i {
            margin-right: 6px;
        }
        
        .stars {
            color: #FFD700;
            font-size: 1rem;
        }
        
        /* Scroll Controls */
        .scroll-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
            padding: 0 10px;
        }
        
        .scroll-btn {
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            pointer-events: auto;
        }
        
        .scroll-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-hover);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 0.5rem;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .footer-logo .logo-icon {
            background: var(--gradient);
            width: 50px;
            height: 50px;
        }
        
        .footer-links {
            display: flex;
            gap: 2.5rem;
        }
        
        .footer-links a {
            color: #CCCCCC;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
            position: relative;
        }
        
        .footer-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: width 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-links a:hover:after {
            width: 100%;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            width: 100%;
            /* padding-top: 3rem; */
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999999;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .students-scroll-container {
                padding: 0 40px;
            }
            
            .student-card {
                flex: 0 0 320px;
            }
        }
        
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .right-column {
                width: 100%;
                flex: none;
                position: static;
                max-height: none;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .students-scroll-container {
                padding: 0 20px;
            }
            
            .student-card {
                flex: 0 0 300px;
            }
            
            .date-group {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .header-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .success-stories-btn, .header-cta {
                width: 100%;
                justify-content: center;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .left-column, .right-column {
                padding: 2rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .students-scroll-container {
                padding: 0 10px;
            }
            
            .scroll-controls {
                display: none;
            }
            
            .student-card {
                flex: 0 0 280px;
            }
            
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            animation: fadeIn 0.8s ease-out;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3); }
            50% { box-shadow: 0 5px 25px rgba(67, 97, 238, 0.5); }
            100% { box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3); }
        }
        
        /* Other domain input */
        .other-domain-input {
            margin-top: 0.8rem;
            display: none;
        }
        
        .other-domain-input.show {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }
        
        /* Success animation */
        @keyframes successPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .success-pulse {
            animation: successPulse 2s infinite;
        }
        
        /* Character counter for additional details */
        .char-counter {
            text-align: right;
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 0.3rem;
        }
        
        .char-counter.warning {
            color: var(--warning);
        }
        
        .char-counter.error {
            color: var(--accent);
        }
        
        /* Modal for image cropping */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            color: var(--accent);
        }
        
        #cropModalImage {
            max-width: 100%;
            max-height: 60vh;
        }
        
        .modal-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        /* Terms and Conditions Modal */
        .terms-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        
        .terms-modal-content {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-hover);
        }
        
        .terms-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(67, 97, 238, 0.1);
            padding-bottom: 1rem;
        }
        
        .terms-modal-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
        }
        
        .terms-modal-body {
            max-height: 50vh;
            overflow-y: auto;
            padding-right: 10px;
            margin-bottom: 1.5rem;
        }
        
        .terms-modal-body::-webkit-scrollbar {
            width: 6px;
        }
        
        .terms-modal-body::-webkit-scrollbar-track {
            background: rgba(67, 97, 238, 0.05);
            border-radius: 10px;
        }
        
        .terms-modal-body::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        .terms-section {
            margin-bottom: 1.5rem;
        }
        
        .terms-section h3 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .terms-section p, .terms-section ul {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        
        .terms-section ul {
            padding-left: 1.5rem;
        }
        
        .terms-section li {
            margin-bottom: 0.5rem;
        }
        
        .terms-modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            border-top: 1px solid rgba(67, 97, 238, 0.1);
            padding-top: 1.5rem;
        }
  