* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 100px;
    height: 40px;
    border-radius: 8px;
}

.brand-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #00d4ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #a0a9b8;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    width: 100%;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a0a9b8;
    margin-bottom: 1rem;
}

.highlight {
    color: #00d4ff;
    font-weight: 600;
}

/* Exam Info Cards */
.exam-info {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.exam-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.exam-label {
    font-size: 0.8rem;
    color: #a0a9b8;
    font-weight: 500;
}

.exam-date {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
}

/* Journey Section */
.journey-section {
    margin: 2rem 0;
}

.journey-title {
    font-size: 1.3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.journey-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 0;
}

.journey-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 25%, rgba(0, 212, 255, 0.3) 100%);
    z-index: 1;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a9b8;
    transition: all 0.3s ease;
}

.journey-step.active .step-icon {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #0f1419;
}

.step-label {
    font-size: 0.9rem;
    color: #a0a9b8;
    font-weight: 500;
    text-align: center;
}

.journey-step.active .step-label {
    color: #00d4ff;
}

/* Action Grid */
.action-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.action-row {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.action-btn.secondary {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

.action-btn.tertiary {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid #8a2be2;
}

.action-btn.demo {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    border: 1px solid #ff4500;
}

.action-btn.expert {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.action-btn.webinar {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Instructor Card */
.instructor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.instructor-image {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
}

.instructor-image img {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #00d4ff;
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #00ff88;
    color: #0f1419;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.instructor-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Consultation Form */
.consultation-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-title {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #a0a9b8;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(135deg, #0066ff 0%, #004ccc 100%);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.circle-4 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* CAT Exam Structure & Coaching Section */
.exam-structure-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a9b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Exam Sections */
.exam-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.exam-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.exam-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.section-header-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.varc .section-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: #ffffff;
}

.dilr .section-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
}

.qa .section-icon {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    color: #ffffff;
}

.section-info {
    flex: 1;
}

.section-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.section-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a9b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-item i {
    color: #00d4ff;
}

.section-description {
    color: #a0a9b8;
    line-height: 1.6;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.topic-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.topic-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.topic-card i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.topic-card span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.section-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.varc-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.dilr-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.qa-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Success Journey */
.success-journey {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.journey-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.journey-subtitle {
    color: #a0a9b8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 25%, rgba(0, 212, 255, 0.3) 100%);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #a0a9b8;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-step.active .step-number {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #0f1419;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-step.active .step-content h4 {
    color: #00d4ff;
}

.step-content p {
    color: #a0a9b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.student-feedback {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.feedback-bubble {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    position: relative;
    max-width: 300px;
}

.feedback-bubble p {
    color: #ffffff;
    font-style: italic;
    margin: 0;
}

.feedback-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #00d4ff;
}

.journey-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.control-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
}

.journey-cta-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.journey-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Dashboard Section */
.dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mastery-tracker, .exam-overview, .course-features, .expert-insights {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.tracker-title, .overview-title, .features-title, .insights-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.tracker-subtitle {
    color: #a0a9b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.progress-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #a0a9b8;
}

.legend-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-item.mastered::before {
    background: #00d4ff;
}

.legend-item.learning::before {
    background: #ff6b35;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subject {
    color: #ffffff;
    font-weight: 600;
}

.percentage {
    color: #a0a9b8;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.progress-fill {
    background: #00d4ff;
    transition: width 0.3s ease;
}

.progress-remaining {
    background: #ff6b35;
    transition: width 0.3s ease;
}

.tracker-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.tracker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Dashboard Right */
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.overview-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-label {
    color: #a0a9b8;
    font-size: 0.9rem;
}

.overview-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.features-list, .insights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item, .insight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a9b8;
    font-size: 0.95rem;
}

.feature-item i, .insight-item i {
    color: #00d4ff;
    width: 20px;
    text-align: center;
}

.insights-cta-btn, .get-started-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.insights-cta-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: #ffffff;
}

.get-started-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.insights-cta-btn:hover, .get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CAT Exam FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 4rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #a0a9b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.1);
}

.faq-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    position: relative;
}

.question-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.question-icon.error {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    color: #ff6b35;
}

.question-icon.warning {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid #ffa500;
    color: #ffa500;
}

.question-icon.success {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
}

.question-icon.info {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #8a2be2;
    color: #8a2be2;
}

.question-icon.primary {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    color: #00d4ff;
}

.question-icon.secondary {
    background: rgba(255, 20, 147, 0.2);
    border: 1px solid #ff1493;
    color: #ff1493;
}

.question-icon.danger {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid #ff4500;
    color: #ff4500;
}

.question-text {
    flex: 1;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-item.active .question-text {
    color: #00d4ff;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a9b8;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 7rem;
    color: #a0a9b8;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 2rem;
}

/* FAQ CTA Section */
.faq-cta-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.faq-cta-subtitle {
    color: #a0a9b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.faq-cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
}

.faq-cta-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.faq-cta-btn.secondary {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
}

.faq-cta-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.faq-cta-btn.secondary:hover {
    background: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .dashboard-section {
        gap: 2rem;
    }
    
    .admission-content {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .exam-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .dashboard-section {
        grid-template-columns: 1fr;
    }
    
    .admission-content {
        grid-template-columns: 1fr;
    }
    
    .success-insights {
        margin-bottom: 2rem;
    }
    
    .factors-list {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-step-mba {
        gap: 1rem;
    }
    
    /* FAQ Responsive */
    .faq-answer {
        padding: 0 1rem 1.5rem 5rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 2rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        padding: 1rem;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .admission-title, .faq-title {
        font-size: 2rem;
    }
    
    .exam-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-row {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .journey-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .timeline-step {
        text-align: center;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .progress-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .question-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .toggle-icon {
        width: 25px;
        height: 25px;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 4.5rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 1.5rem;
    }
    
    .faq-cta-section {
        padding: 2rem 1rem;
    }
    
    .faq-cta-title {
        font-size: 1.5rem;
    }
    
    .faq-cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .admission-title, .faq-title {
        font-size: 1.8rem;
    }
    
    .instructor-card, .consultation-form {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .timeline-step-mba {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .step-number-mba {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-title-mba {
        font-size: 1rem;
    }
    
    /* FAQ Very Small Screens */
    .faq-question {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .question-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .question-text {
        font-size: 0.95rem;
    }
    
    .toggle-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 0.75rem 1rem 3.5rem;
        font-size: 0.85rem;
    }
    
    .faq-cta-title {
        font-size: 1.3rem;
    }
    
    .faq-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2332 50%, #0a0f14 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 120px;
    height: 50px;
    border-radius: 8px;
}

.brand-info {
    flex: 1;
}

.brand-name {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    color: #a0a9b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* App Download */
.app-download {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.download-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.download-btn img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.column-title {
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #00d4ff;
    padding-left: 10px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 6px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: #00d4ff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00d4ff;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border-color: #25d366;
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.2);
    color: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
    border-color: #e1306c;
}

.social-link.telegram {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
    border-color: #0088cc;
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border-color: #ff0000;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    border-color: #1da1f2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.5) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright-text {
    color: #a0a9b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tagline {
    color: #00d4ff;
    font-weight: 600;
}

.footer-badges {
    display: flex;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a9b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-item i {
    color: #00d4ff;
    font-size: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        gap: 3rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-links {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        gap: 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .app-download {
        padding: 1rem;
    }
    
    .download-buttons {
        gap: 0.5rem;
    }
    
    .social-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-badges {
        gap: 1rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .column-title {
        font-size: 1rem;
    }
    
    .social-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .copyright-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

/* MBA Admission Guide Section */
.mba-admission-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 4rem;
}

.admission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.admission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.admission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.admission-subtitle {
    font-size: 1.1rem;
    color: #a0a9b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.admission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Current Progress */
.current-progress {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-header h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-text {
    color: #a0a9b8;
    font-size: 0.9rem;
}

.progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.progress-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#00d4ff 100%, rgba(255, 255, 255, 0.1) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring::before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(15, 20, 25, 0.95);
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.current-phase {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.phase-label {
    color: #ff6b35;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.phase-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-description {
    color: #a0a9b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phase-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a9b8;
    font-size: 0.9rem;
}

.detail-item i {
    color: #00d4ff;
}

.key-actions h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.actions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.action-tag {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 15px;
    padding: 0.4rem 1rem;
    color: #00d4ff;
    font-size: 0.85rem;
    font-weight: 500;
}

.pro-tip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #ffa500;
    font-size: 0.9rem;
    font-weight: 500;
}

.pro-tip i {
    color: #ffa500;
}

/* MBA Statistics */
.mba-statistics {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stats-title {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0a9b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-rates h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.rates-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rate-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-label {
    color: #ffffff;
    font-weight: 500;
}

.rate-percentage {
    color: #00d4ff;
    font-weight: 600;
}

.rate-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Success Insights */
.success-insights {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

.insights-main-title {
    color: #00d4ff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.key-factors h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.factors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #a0a9b8;
    line-height: 1.6;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.factor-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.factor-item i {
    color: #00ff88;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* MBA Timeline */
.mba-timeline {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.timeline-main-title {
    color: #00d4ff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff 0%, rgba(0, 212, 255, 0.3) 100%);
}

.timeline-step-mba {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.timeline-step-mba:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.timeline-step-mba.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.step-number-mba {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #a0a9b8;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-step-mba.active .step-number-mba {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #0f1419;
}

.step-content-mba {
    flex: 1;
}

.step-header-mba {
    margin-bottom: 1rem;
}

.step-title-mba {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-step-mba.active .step-title-mba {
    color: #00d4ff;
}

.step-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.success-rate, .time-period, .duration {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.success-rate {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.time-period {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.duration {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

.step-description-mba {
    color: #a0a9b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-actions h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.actions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.action-tag-small {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #8a2be2;
    border-radius: 12px;
    padding: 0.3rem 0.75rem;
    color: #8a2be2;
    font-size: 0.8rem;
    font-weight: 500;
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffa500;
    font-size: 0.85rem;
    font-weight: 500;
}

.step-tip i {
    color: #ffa500;
}

/* Final CTA Section */
.final-cta-section {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.final-cta-title {
    color: #00d4ff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    color: #a0a9b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.final-cta-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.final-cta-btn.secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.final-cta-btn.tertiary {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.final-cta-btn.quaternary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .instructor-image img {
        width: 150px;
        height: 170px;
    }
    
    .dashboard-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .section-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factors-list {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .exam-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journey-path {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .journey-path::before {
        display: none;
    }
    
    .action-row {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .instructor-image img {
        width: 120px;
        height: 140px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-stats {
        justify-content: center;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .exam-structure-section {
        padding: 2rem 0;
    }
    
    .success-journey {
        padding: 2rem 1rem;
    }
    
    .admission-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .step-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .phase-details {
        align-items: center;
        text-align: center;
    }
    
    .actions-list, .actions-tags {
        justify-content: center;
    }
    
    .timeline-step-mba {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .final-cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .mba-admission-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .journey-main-title {
        font-size: 1.5rem;
    }
    
    .exam-section {
        padding: 1.5rem;
    }
    
    .mastery-tracker, .exam-overview, .course-features, .expert-insights {
        padding: 1.5rem;
    }
    
    .progress-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admission-title {
        font-size: 1.8rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .insights-main-title, .timeline-main-title {
        font-size: 1.5rem;
    }
    
    .current-progress, .mba-statistics, .success-insights, .mba-timeline, .final-cta-section {
        padding: 1.5rem;
    }
    
    .progress-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number-mba {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}
